17 #include <mrpt/otherlibs/do_opencv_includes.h> 32 #if MRPT_HAS_KINECT_FREENECT 33 #if defined(__APPLE__) 34 #include <libfreenect/libfreenect.h> 36 #include <libfreenect.h> 43 #if MRPT_HAS_KINECT_FREENECT 45 #define f_ctx reinterpret_cast<freenect_context*>(m_f_ctx) 46 #define f_ctx_ptr reinterpret_cast<freenect_context**>(&m_f_ctx) 47 #define f_dev reinterpret_cast<freenect_device*>(m_f_dev) 48 #define f_dev_ptr reinterpret_cast<freenect_device**>(&m_f_dev) 49 #endif // MRPT_HAS_KINECT_FREENECT 51 #ifdef KINECT_PROFILE_MEM_ALLOC 58 #ifdef MRPT_KINECT_DEPTH_10BIT 59 const float k1 = 1.1863f;
60 const float k2 = 2842.5f;
61 const float k3 = 0.1236f;
64 m_range2meters[i] = k3 * tanf(i / k2 + k1);
68 m_range2meters[i] = 1.0f / (i * (-0.0030711016) + 3.3309495161);
72 m_range2meters[0] = 0;
80 : m_sensorPoseOnRobot(),
81 m_preview_window(false),
82 m_preview_window_decimation(1),
83 m_preview_decim_counter_range(0),
84 m_preview_decim_counter_rgb(0),
86 #if MRPT_HAS_KINECT_FREENECT
89 m_tim_latest_depth(0),
92 m_relativePoseIntensityWRTDepth(
94 m_initial_tilt_angle(360),
95 m_user_device_number(0),
98 m_grab_3D_points(true),
136 "MRPT was compiled without support for Kinect. Please, rebuild it.")
156 bool thereIs, hwError;
159 mrpt::make_aligned_shared<CObservation3DRangeScan>();
161 mrpt::make_aligned_shared<CObservationIMU>();
175 vector<CSerializable::Ptr> objs;
177 objs.push_back(newObs);
195 configSource.
read_float(iniSection,
"pose_x", 0),
196 configSource.
read_float(iniSection,
"pose_y", 0),
197 configSource.
read_float(iniSection,
"pose_z", 0),
228 catch (std::exception& e)
230 std::cout <<
"[CKinect::loadConfig_sensorSpecific] Warning: Ignoring " 231 "error loading calibration parameters:\n" 256 iniSection,
"relativePoseIntensityWRTDepth",
"");
266 #if MRPT_HAS_KINECT_FREENECT 267 return f_dev !=
nullptr;
275 #if MRPT_HAS_KINECT_FREENECT 277 void depth_cb(freenect_device* dev,
void* v_depth,
uint32_t timestamp)
279 const freenect_frame_mode frMode = freenect_get_current_video_mode(dev);
286 std::lock_guard<std::mutex> lock(
obj->internal_latest_obs_cs());
290 obs.range_is_depth =
true;
292 #ifdef KINECT_PROFILE_MEM_ALLOC 293 alloc_tim.
enter(
"depth_cb alloc");
297 obs.rangeImage_setSize(frMode.height, frMode.width);
299 #ifdef KINECT_PROFILE_MEM_ALLOC 300 alloc_tim.
leave(
"depth_cb alloc");
304 for (
int r = 0;
r < frMode.height;
r++)
305 for (
int c = 0;
c < frMode.width;
c++)
313 obj->internal_tim_latest_depth() = timestamp;
316 void rgb_cb(freenect_device* dev,
void* img_data,
uint32_t timestamp)
319 const freenect_frame_mode frMode = freenect_get_current_video_mode(dev);
322 std::lock_guard<std::mutex> lock(
obj->internal_latest_obs_cs());
325 #ifdef KINECT_PROFILE_MEM_ALLOC 326 alloc_tim.
enter(
"depth_rgb loadFromMemoryBuffer");
329 obs.hasIntensityImage =
true;
337 obs.intensityImageChannel =
339 obs.intensityImage.resize(
340 frMode.width, frMode.height,
CH_RGB,
true );
343 #if MRPT_OPENCV_VERSION_NUM < 0x200 345 IplImage* src_img_bayer =
346 cvCreateImageHeader(cvSize(frMode.width, frMode.height), 8, 1);
347 src_img_bayer->imageDataOrigin =
reinterpret_cast<char*
>(img_data);
348 src_img_bayer->imageData = src_img_bayer->imageDataOrigin;
349 src_img_bayer->widthStep = frMode.width;
351 IplImage* dst_img_RGB = obs.intensityImage.getAs<IplImage>();
354 cvCvtColor(src_img_bayer, dst_img_RGB, CV_BayerGB2BGR);
358 const cv::Mat src_img_bayer(
359 frMode.height, frMode.width, CV_8UC1, img_data, frMode.width);
361 cv::Mat dst_img_RGB = cv::cvarrToMat(
362 obs.intensityImage.getAs<IplImage>(),
366 cv::cvtColor(src_img_bayer, dst_img_RGB, CV_BayerGB2BGR);
376 obs.intensityImage.loadFromMemoryBuffer(
377 frMode.width, frMode.height,
379 reinterpret_cast<unsigned char*>(img_data));
384 #ifdef KINECT_PROFILE_MEM_ALLOC 385 alloc_tim.
leave(
"depth_rgb loadFromMemoryBuffer");
388 obj->internal_tim_latest_rgb() = timestamp;
391 #endif // MRPT_HAS_KINECT_FREENECT 401 #if MRPT_HAS_KINECT_FREENECT // ----> libfreenect 403 if (freenect_init(f_ctx_ptr,
nullptr) < 0)
406 freenect_set_log_level(
415 int nr_devices = freenect_num_devices(f_ctx);
428 freenect_set_led(f_dev, LED_RED);
429 freenect_set_depth_callback(f_dev, depth_cb);
430 freenect_set_video_callback(f_dev, rgb_cb);
433 const freenect_frame_mode desiredFrMode = freenect_find_video_mode(
434 FREENECT_RESOLUTION_MEDIUM,
436 ? FREENECT_VIDEO_IR_8BIT
437 : FREENECT_VIDEO_BAYER
442 if (freenect_set_video_mode(f_dev, desiredFrMode) < 0)
446 const freenect_frame_mode frMode = freenect_get_current_video_mode(f_dev);
449 m_buf_depth.resize(frMode.width * frMode.height * 3);
450 m_buf_rgb.resize(frMode.width * frMode.height * 3);
459 freenect_set_video_buffer(f_dev, &
m_buf_rgb[0]);
462 freenect_set_depth_mode(
463 f_dev, freenect_find_depth_mode(
464 FREENECT_RESOLUTION_MEDIUM, FREENECT_DEPTH_10BIT));
467 freenect_set_user(f_dev,
this);
469 if (freenect_start_depth(f_dev) < 0)
472 if (freenect_start_video(f_dev) < 0)
475 #endif // MRPT_HAS_KINECT_FREENECT 480 #if MRPT_HAS_KINECT_FREENECT 483 freenect_stop_depth(f_dev);
484 freenect_stop_video(f_dev);
485 freenect_close_device(f_dev);
489 if (f_ctx) freenect_shutdown(f_ctx);
491 #endif // MRPT_HAS_KINECT_FREENECT 501 #if MRPT_HAS_KINECT_FREENECT 506 freenect_stop_video(f_dev);
509 const freenect_frame_mode desiredFrMode = freenect_find_video_mode(
510 FREENECT_RESOLUTION_MEDIUM,
512 ? FREENECT_VIDEO_IR_8BIT
513 : FREENECT_VIDEO_BAYER
518 if (freenect_set_video_mode(f_dev, desiredFrMode) < 0)
521 freenect_start_video(f_dev);
525 #endif // MRPT_HAS_KINECT_FREENECT 539 bool& hardware_error)
541 there_is_obs =
false;
542 hardware_error =
false;
544 #if MRPT_HAS_KINECT_FREENECT 546 static const double max_wait_seconds = 1. / 25.;
551 m_latest_obs.hasPoints3D =
false;
552 m_latest_obs.hasRangeImage =
false;
553 m_latest_obs.hasIntensityImage =
false;
554 m_latest_obs.hasConfidenceImage =
false;
560 m_latest_obs_cs.lock();
561 m_tim_latest_rgb = 0;
562 m_tim_latest_depth = 0;
563 m_latest_obs_cs.unlock();
565 while (freenect_process_events(f_ctx) >= 0 &&
570 m_tim_latest_rgb != 0) &&
573 m_tim_latest_depth != 0)
592 m_latest_obs.hasRangeImage =
true;
593 m_latest_obs.range_is_depth =
true;
595 m_latest_obs_cs.lock();
598 m_latest_obs.rangeImage.setSize(
600 m_latest_obs.rangeImage.setConstant(0);
601 m_latest_obs_cs.unlock();
605 if (!there_is_obs)
return;
610 m_latest_obs_cs.lock();
611 _out_obs.
swap(m_latest_obs);
612 m_latest_obs_cs.unlock();
648 mrpt::make_aligned_shared<mrpt::gui::CDisplayWindow>(
669 mrpt::make_aligned_shared<mrpt::gui::CDisplayWindow>(
670 "Preview INTENSITY");
690 bool& hardware_error)
698 double acc_x = 0, acc_y = 0, acc_z = 0;
699 bool has_good_acc =
false;
701 #if MRPT_HAS_KINECT_FREENECT 703 freenect_update_tilt_state(f_dev);
704 freenect_raw_tilt_state* state = freenect_get_tilt_state(f_dev);
709 freenect_get_mks_accel(state, &lx, &ly, &lz);
729 for (
size_t i = 0; i < out_obs_imu.
dataIsPresent.size(); i++)
768 #if MRPT_HAS_KINECT_FREENECT 769 freenect_set_tilt_degs(f_dev, angle);
779 #if MRPT_KINECT_WITH_FREENECT 780 freenect_update_tilt_state(f_dev);
781 freenect_raw_tilt_state* ts = freenect_get_tilt_state(f_dev);
782 return freenect_get_tilt_degs(ts);
std::shared_ptr< CObservationIMU > Ptr
uint64_t TTimeStamp
A system independent time type, it holds the the number of 100-nanosecond intervals since January 1...
bool read_bool(const std::string §ion, const std::string &name, bool defaultValue, bool failIfNotFound=false) const
Classes for serialization, sockets, ini-file manipulation, streams, list of properties-values, timewatch, extensions to STL.
unsigned __int16 uint16_t
std::vector< double > rawMeasurements
The accelerometer and/or gyroscope measurements taken by the IMU at the given timestamp.
This namespace provides a OS-independent interface to many useful functions: filenames manipulation...
TVideoChannel m_video_channel
The video channel to open: RGB or IR.
float read_float(const std::string §ion, const std::string &name, float defaultValue, bool failIfNotFound=false) const
mrpt::utils::TCamera cameraParamsIntensity
Projection parameters of the intensity (graylevel or RGB) camera.
A class for storing images as grayscale or RGB bitmaps.
virtual void doProcess()
To be called at a high rate (>XX Hz), this method populates the internal buffer of received observati...
double getTiltAngleDegrees()
std::string m_sensorLabel
See CGenericSensor.
mrpt::gui::CDisplayWindow::Ptr m_win_int
size_t m_preview_window_decimation
If preview is enabled, only show 1 out of N images.
#define THROW_EXCEPTION(msg)
void project3DPointsFromDepthImage(const bool PROJ3D_USE_LUT=true)
This method is equivalent to project3DPointsFromDepthImageInto() storing the projected 3D points (wit...
#define THROW_EXCEPTION_FMT(_FORMAT_STRING,...)
double cy() const
Get the value of the principal point y-coordinate (in pixels).
void setTiltAngleDegrees(double angle)
Change tilt angle.
double m_maxRange
Sensor max range (meters)
Declares a class derived from "CObservation" that encapsules a 3D range scan measurement, as from a time-of-flight range camera or any other RGBD sensor.
std::shared_ptr< CObservation3DRangeScan > Ptr
mrpt::system::TTimeStamp now()
A shortcut for system::getCurrentTime.
Contains classes for various device interfaces.
std::string read_string(const std::string §ion, const std::string &name, const std::string &defaultValue, bool failIfNotFound=false) const
GLint GLint GLsizei GLsizei GLsizei depth
y-axis acceleration (local/vehicle frame) (m/sec2)
This class stores measurements from an Inertial Measurement Unit (IMU) (attitude estimation, raw gyroscope and accelerometer values), altimeters or magnetometers.
z-axis acceleration (local/vehicle frame) (m/sec2)
virtual void loadConfig_sensorSpecific(const mrpt::utils::CConfigFileBase &configSource, const std::string §ion)
See the class documentation at the top for expected parameters.
GLsizei GLsizei GLuint * obj
#define KINECT_RANGES_TABLE_LEN
void close()
Close the Connection to the sensor (not need to call it manually unless desired for some reason...
std::vector< uint8_t > m_buf_rgb
#define KINECT_RANGES_TABLE_MASK
Structure to hold the parameters of a pinhole stereo camera model.
This class allows loading and storing values and vectors of different types from a configuration text...
mrpt::math::CMatrix rangeImage
If hasRangeImage=true, a matrix of floats with the range data as captured by the camera (in meters) ...
mrpt::utils::TCamera cameraParams
Projection parameters of the depth camera.
void calculate_range2meters()
Compute m_range2meters at construction.
double fx() const
Get the value of the focal length x-value (in pixels).
int read_int(const std::string §ion, const std::string &name, int defaultValue, bool failIfNotFound=false) const
void fromString(const std::string &s)
Set the current object value from a string generated by 'asString' (eg: "[x y z yaw pitch roll]"...
double fy() const
Get the value of the focal length y-value (in pixels).
A class for grabing "range images", intensity images (either RGB or IR) and other information from an...
This base provides a set of functions for maths stuff.
mrpt::poses::CPose3D relativePoseIntensityWRTDepth
Relative pose of the intensity camera wrt the depth camera (which is the coordinates origin for this ...
#define MRPT_UNUSED_PARAM(a)
Can be used to avoid "not used parameters" warnings from the compiler.
int m_initial_tilt_angle
Set Kinect tilt to an initial deegre (it should be take in account in the sensor pose by the user) ...
void swap(CObservation3DRangeScan &o)
Very efficient method to swap the contents of two observations.
TDepth2RangeArray m_range2meters
The table raw depth -> range in meters.
virtual void setPathForExternalImages(const std::string &directory)
Set the path where to save off-rawlog image files (this class DOES take into account this path)...
This namespace contains representation of robot actions and observations.
uint32_t ncols
Camera resolution.
bool hasRangeImage
true means the field rangeImage contains valid data
A class used to store a 3D pose as a translation (x,y,z) and a quaternion (qr,qx,qy,qz).
float TDepth2RangeArray[KINECT_RANGES_TABLE_LEN]
A typedef for an array that converts raw depth to ranges in meters.
GLsizei const GLchar ** string
double cx() const
Get the value of the principal point x-coordinate (in pixels).
#define IMPLEMENTS_GENERIC_SENSOR(class_name, NameSpace)
This must be inserted in all CGenericSensor classes implementation files:
Classes for 2D/3D geometry representation, both of single values and probability density distribution...
ENUMTYPE read_enum(const std::string §ion, const std::string &name, const ENUMTYPE &defaultValue, bool failIfNotFound=false) const
Reads an "enum" value, where the value in the config file can be either a numerical value or the symb...
int m_user_device_number
Number of device to open (0:first,...)
void setVideoChannel(const TVideoChannel vch)
Changes the video channel to open (RGB or IR) - you can call this method before start grabbing or in ...
void getNextObservation(mrpt::obs::CObservation3DRangeScan &out_obs, bool &there_is_obs, bool &hardware_error)
The main data retrieving function, to be called after calling loadConfig() and initialize().
mrpt::utils::TCamera m_cameraParamsRGB
Params for the RGB camera.
virtual void initialize()
Initializes the 3D camera - should be invoked after calling loadConfig() or setting the different par...
mrpt::utils::TCamera m_cameraParamsDepth
Params for the Depth camera.
std::string sensorLabel
An arbitrary label that can be used to identify the sensor.
mrpt::system::TTimeStamp timestamp
The associated UTC time-stamp.
void loadFromConfigFile(const std::string §ion, const mrpt::utils::CConfigFileBase &cfg)
Load all the params from a config source, in the same format that used in saveToConfigFile().
GLdouble GLdouble GLdouble r
mrpt::poses::CPose3D sensorPose
The 6D pose of the sensor on the robot.
size_t m_preview_decim_counter_range
mrpt::math::CArrayDouble< 5 > dist
[k1 k2 t1 t2 k3] -> k_i: parameters of radial distortion, t_i: parameters of tangential distortion (d...
mrpt::poses::CPose3D sensorPose
The pose of the sensor on the robot.
A class used to store a 3D pose (a 3D translation + a rotation in 3D).
TCamera leftCamera
Intrinsic and distortion parameters of the left and right cameras.
mrpt::poses::CPose3D m_relativePoseIntensityWRTDepth
See mrpt::obs::CObservation3DRangeScan for a diagram of this pose.
bool hasIntensityImage
true means the field intensityImage contains valid data
void setFromValues(const double x0, const double y0, const double z0, const double yaw=0, const double pitch=0, const double roll=0)
Set the pose from a 3D position (meters) and yaw/pitch/roll angles (radians) - This method recomputes...
bool isOpen() const
Whether there is a working connection to the sensor.
A versatile "profiler" that logs the time spent within each pair of calls to enter(X)-leave(X), among other stats.
double leave(const char *func_name)
End of a named section.
A matrix of dynamic size.
bool m_preview_window
Show preview window while grabbing.
std::vector< uint8_t > m_buf_depth
Temporary buffers for image grabbing.
mrpt::system::TTimeStamp secondsToTimestamp(const double nSeconds)
Transform a time interval (in seconds) into TTimeStamp (e.g.
mrpt::utils::CImage intensityImage
If hasIntensityImage=true, a color or gray-level intensity image of the same size than "rangeImage"...
unsigned __int32 uint32_t
void enter(const char *func_name)
Start of a named section.
#define ASSERTMSG_(f, __ERROR_MSG)
x-axis acceleration (local/vehicle frame) (m/sec2)
mrpt::gui::CDisplayWindow::Ptr m_win_range
bool m_grab_image
Default: all true.
size_t m_preview_decim_counter_rgb
mrpt::poses::CPose3D m_sensorPoseOnRobot
Grayscale or RGB visible channel of the camera sensor.
vector_bool dataIsPresent
Each entry in this vector is true if the corresponding data index contains valid data (the IMU unit s...
mrpt::poses::CPose3DQuat rightCameraPose
Pose of the right camera with respect to the coordinate origin of the left camera.
void appendObservations(const std::vector< mrpt::utils::CSerializable::Ptr > &obj)
This method must be called by derived classes to enqueue a new observation in the list to be returned...
TVideoChannel
RGB or IR video channel identifiers.
void open()
Try to open the camera (set all the parameters before calling this) - users may also call initialize(...