RTAB-Map 0.23.10
Real-Time Appearance-Based Mapping
Loading...
Searching...
No Matches
CameraMyntEye.h
1/*
2Copyright (c) 2010-2016, Mathieu Labbe - IntRoLab - Universite de Sherbrooke
3All rights reserved.
4
5Redistribution and use in source and binary forms, with or without
6modification, are permitted provided that the following conditions are met:
7 * Redistributions of source code must retain the above copyright
8 notice, this list of conditions and the following disclaimer.
9 * Redistributions in binary form must reproduce the above copyright
10 notice, this list of conditions and the following disclaimer in the
11 documentation and/or other materials provided with the distribution.
12 * Neither the name of the Universite de Sherbrooke nor the
13 names of its contributors may be used to endorse or promote products
14 derived from this software without specific prior written permission.
15
16THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY
20DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26*/
27
28#pragma once
29
30#include "rtabmap/core/Camera.h"
31#include "rtabmap/core/Version.h"
32#include "rtabmap/utilite/USemaphore.h"
33#include <memory>
34
35namespace mynteye {
36class Device;
37class API;
38}
39
40namespace rtabmap
41{
42
47class RTABMAP_CORE_EXPORT CameraMyntEye : public Camera
48{
49public:
50 static bool available();
51
52public:
53 CameraMyntEye(const std::string & device = "", bool apiRectification = false, bool apiDepth = false, float imageRate = 0, const Transform & localTransform = Transform::getIdentity());
54 virtual ~CameraMyntEye();
55
56 virtual bool init(const std::string & calibrationFolder = ".", const std::string & cameraName = "");
57 virtual bool isCalibrated() const;
58 virtual std::string getSerial() const;
59 virtual bool odomProvided() const { return false; }
60
61 void publishInterIMU(bool enabled);
62 void setAutoExposure();
63 void setManualExposure(int gain=24, int brightness=120, int constrast=116);
64 void setIrControl(int value);
65
66protected:
71
72private:
73#ifdef RTABMAP_MYNTEYE
74 double hardTimeToSoftTime(std::uint64_t hardTime);
75 void getPoseAndIMU(const double & stamp, IMU & imu, int maxWaitTimeMs = 35) const;
76 double checkUpTimeStamp(std::uint64_t _hard_time, std::uint8_t stream);
77
78 std::shared_ptr<mynteye::Device> device_;
79 std::shared_ptr<mynteye::API> api_;
80 StereoCameraModel stereoModel_;
81 std::string deviceName_;
82 bool apiRectification_;
83 bool apiDepth_;
84 bool autoExposure_;
85 int gain_;
86 int brightness_;
87 int contrast_;
88 int irControl_;
89 USemaphore dataReady_;
90 UMutex dataMutex_;
91 cv::Mat leftFrameBuffer_;
92 cv::Mat rightFrameBuffer_;
93 std::pair<cv::Mat, cv::Mat> lastFrames_;
94 double lastFramesStamp_;
95 std::uint64_t stamp_;
96 bool publishInterIMU_;
97 Transform imuLocalTransform_;
98 std::map<double, std::pair<cv::Vec3f, cv::Vec3f> > imuBuffer_;
99 UMutex imuMutex_;
100
101 double softTimeBegin_;
102 std::uint64_t hardTimeBegin_;
103 std::uint64_t unitHardTime_;
104 std::vector<std::uint64_t> lastHardTimes_;
105 std::vector<std::uint64_t> acc_;
106#endif
107};
108
109
110} // namespace rtabmap
virtual bool init(const std::string &calibrationFolder=".", const std::string &cameraName="")
Initializes the sensor.
virtual bool odomProvided() const
Checks if the sensor provides odometry poses.
virtual std::string getSerial() const
Returns the sensor's serial number or unique identifier.
virtual SensorData captureImage(SensorCaptureInfo *info=0)
Inertial measurement sample (ROS sensor_msgs/Imu-like fields).
Definition IMU.h:57
Metadata structure for sensor data capture and processing.
Container class for all sensor data captured at a specific time.
Definition SensorData.h:97
A class representing a calibrated stereo camera system.
Represents a 3D rigid body transformation (rotation + translation).
Definition Transform.h:53