CameraTango.h
Go to the documentation of this file.
1 /*
2 Copyright (c) 2010-2016, Mathieu Labbe - IntRoLab - Universite de Sherbrooke
3 All rights reserved.
4 
5 Redistribution and use in source and binary forms, with or without
6 modification, 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 
16 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY
20 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23 ON 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
25 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27 
28 #ifndef CAMERATANGO_H_
29 #define CAMERATANGO_H_
30 
31 #include "CameraMobile.h"
32 #include <rtabmap/core/Camera.h>
34 #include <rtabmap/utilite/UMutex.h>
38 #include <rtabmap/utilite/UEvent.h>
39 #include <rtabmap/utilite/UTimer.h>
40 #include <boost/thread/mutex.hpp>
41 #include <tango_client_api.h>
42 #include <tango_support_api.h>
43 
44 namespace rtabmap {
45 
46 class CameraTango : public CameraMobile {
47 public:
48  CameraTango(bool colorCamera, int decimation, bool publishRawScan, bool smoothing);
49  virtual ~CameraTango();
50 
51  virtual bool init(const std::string & calibrationFolder = ".", const std::string & cameraName = "");
52  virtual void close(); // close Tango connection
53  virtual std::string getSerial() const;
54  rtabmap::Transform tangoPoseToTransform(const TangoPoseData * tangoPose) const;
55  void setDecimation(int value) {decimation_ = value;}
56  void setRawScanPublished(bool enabled) {rawScanPublished_ = enabled;}
57 
58  void cloudReceived(const cv::Mat & cloud, double timestamp);
59  void rgbReceived(const cv::Mat & tangoImage, int type, double timestamp);
60  void tangoEventReceived(int type, const char * key, const char * value);
61 
62 protected:
63  virtual SensorData updateDataOnRender(Transform & pose);
64 
65 private:
66  rtabmap::Transform getPoseAtTimestamp(double timestamp);
67 
68 private:
69  void * tango_config_;
74  cv::Mat tangoColor_;
77  boost::mutex tangoDataMutex_;
81 };
82 
83 } /* namespace rtabmap */
84 #endif /* CAMERATANGO_H_ */
rtabmap::SensorData
Definition: SensorData.h:51
rtabmap::CameraTango::CameraTango
CameraTango(bool colorCamera, int decimation, bool publishRawScan, bool smoothing)
Definition: CameraTango.cpp:117
rtabmap::CameraTango::setDecimation
void setDecimation(int value)
Definition: CameraTango.h:55
rtabmap::CameraTango::fisheyeRectifyMapX_
cv::Mat fisheyeRectifyMapX_
Definition: CameraTango.h:79
rtabmap::CameraTango::rawScanPublished_
bool rawScanPublished_
Definition: CameraTango.h:72
CameraMobile.h
rtabmap::CameraTango::getSerial
virtual std::string getSerial() const
Definition: CameraTango.cpp:725
rtabmap::CameraTango::tango_config_
void * tango_config_
Definition: CameraTango.h:69
GeodeticCoords.h
type
rtabmap::CameraTango::tangoDataMutex_
boost::mutex tangoDataMutex_
Definition: CameraTango.h:77
rtabmap::CameraTango::colorCamera_
bool colorCamera_
Definition: CameraTango.h:70
rtabmap::CameraTango::fisheyeRectifyMapY_
cv::Mat fisheyeRectifyMapY_
Definition: CameraTango.h:80
UTimer.h
rtabmap::CameraTango::tangoEventReceived
void tangoEventReceived(int type, const char *key, const char *value)
Definition: CameraTango.cpp:720
rtabmap::CameraTango::tangoColorType_
int tangoColorType_
Definition: CameraTango.h:75
UEvent.h
rtabmap::CameraTango::cloudReceived
void cloudReceived(const cv::Mat &cloud, double timestamp)
Definition: CameraTango.cpp:440
rtabmap::CameraTango::close
virtual void close()
Definition: CameraTango.cpp:424
rtabmap::CameraTango::setRawScanPublished
void setRawScanPublished(bool enabled)
Definition: CameraTango.h:56
UMutex.h
rtabmap::CameraTango::tangoDataReady_
USemaphore tangoDataReady_
Definition: CameraTango.h:78
rtabmap::CameraTango
Definition: CameraTango.h:46
rtabmap::CameraTango::getPoseAtTimestamp
rtabmap::Transform getPoseAtTimestamp(double timestamp)
Definition: CameraTango.cpp:747
rtabmap::CameraTango::tangoColor_
cv::Mat tangoColor_
Definition: CameraTango.h:74
rtabmap::CameraTango::rgbReceived
void rgbReceived(const cv::Mat &tangoImage, int type, double timestamp)
Definition: CameraTango.cpp:706
UEventsSender.h
rtabmap::Transform
Definition: Transform.h:41
rtabmap::CameraTango::tangoPoseToTransform
rtabmap::Transform tangoPoseToTransform(const TangoPoseData *tangoPose) const
Definition: CameraTango.cpp:730
rtabmap::CameraTango::tangoData_
SensorData tangoData_
Definition: CameraTango.h:73
rtabmap::CameraTango::updateDataOnRender
virtual SensorData updateDataOnRender(Transform &pose)
Definition: CameraTango.cpp:778
USemaphore
Definition: USemaphore.h:54
USemaphore.h
UThread.h
rtabmap::CameraMobile
Definition: CameraMobile.h:71
Camera.h
rtabmap::CameraTango::~CameraTango
virtual ~CameraTango()
Definition: CameraTango.cpp:129
rtabmap::CameraTango::init
virtual bool init(const std::string &calibrationFolder=".", const std::string &cameraName="")
Definition: CameraTango.cpp:193
rtabmap::CameraTango::decimation_
int decimation_
Definition: CameraTango.h:71
rtabmap::CameraTango::tangoColorStamp_
double tangoColorStamp_
Definition: CameraTango.h:76
rtabmap
Definition: CameraARCore.cpp:35
value
value


rtabmap
Author(s): Mathieu Labbe
autogenerated on Thu Jul 25 2024 02:50:07