Added T265 support (stereo-only yet)

This commit is contained in:
matlabbe
2019-05-09 19:20:26 -04:00
parent e6f471d88e
commit d4b4379829
13 changed files with 802 additions and 137 deletions

View File

@@ -69,6 +69,7 @@ public:
// parameters are set during initialization
void setEmitterEnabled(bool enabled);
void setIRDepthFormat(bool enabled);
void setImagesRectified(bool enabled);
protected:
virtual SensorData captureImage(CameraInfo * info = 0);
@@ -86,9 +87,11 @@ private:
cv::Mat depthBuffer_;
cv::Mat rgbBuffer_;
CameraModel model_;
StereoCameraModel stereoModel_;
bool emitterEnabled_;
bool irDepth_;
bool rectifyImages_;
#endif
};