|
|
| CameraStereoImages (const std::string &pathLeftImages, const std::string &pathRightImages, bool rectifyImages=false, float imageRate=0.0f, const Transform &localTransform=Transform::getIdentity()) |
| |
|
| CameraStereoImages (const std::string &pathLeftRightImages, bool rectifyImages=false, float imageRate=0.0f, const Transform &localTransform=Transform::getIdentity()) |
| |
| void | setRightGrayScale (bool enabled=true) |
| |
| void | setMultiCameraCalibration (bool enabled) |
| |
| virtual bool | init (const std::string &calibrationFolder=".", const std::string &cameraName="") |
| | Initializes the sensor.
|
| |
| virtual bool | isCalibrated () const |
| |
| virtual std::string | getSerial () const |
| | Returns the sensor's serial number or unique identifier.
|
| |
| virtual void | setStartIndex (int index) |
| |
| virtual void | setMaxFrames (int value) |
| |
|
| CameraImages (const std::string &path, float imageRate=0, const Transform &localTransform=Transform::getIdentity()) |
| |
| virtual bool | odomProvided () const |
| | Checks if the sensor provides odometry poses.
|
| |
| std::string | getPath () const |
| |
|
unsigned int | imagesCount () const |
| |
|
std::vector< std::string > | filenames () const |
| |
| bool | isImagesRectified () const |
| |
| int | getBayerMode () const |
| |
| const CameraModel & | cameraModel () const |
| |
| void | setPath (const std::string &dir) |
| |
| void | setDirRefreshed (bool enabled) |
| |
| void | setImagesRectified (bool enabled) |
| |
| void | setBayerMode (int mode) |
| |
| void | setTimestamps (bool fileNamesAreStamps, const std::string &filePath="", bool syncImageRateWithStamps=true) |
| |
| void | setConfigForEachFrame (bool value) |
| |
| bool | isConfigForEachFrame () const |
| |
| void | setMultiCameraCalibration (bool enabled) |
| |
| void | setScanPath (const std::string &dir, int maxScanPts=0, const Transform &localTransform=Transform::getIdentity()) |
| |
| void | setDepthFromScan (bool enabled, int fillHoles=1, bool fillHolesFromBorder=false) |
| |
| void | setOdometryPath (const std::string &filePath, int format=0) |
| |
| void | setGroundTruthPath (const std::string &filePath, int format=0, const Transform &localTransform=Transform::getIdentity()) |
| |
| void | setMaxPoseTimeDiff (double diff) |
| |
| double | getMaxPoseTimeDiff () const |
| |
| void | setDepth (bool isDepth, float depthScaleFactor=1.0f) |
| |
| SensorData | takeImage (SensorCaptureInfo *info=0) |
| |
| float | getImageRate () const |
| |
| void | setImageRate (float imageRate) |
| |
|
void | setInterIMUPublishing (bool enabled, IMUFilter *filter=0, bool baseFrameConversion=false) |
| |
| bool | isInterIMUPublishing () const |
| |
|
bool | initFromFile (const std::string &calibrationPath) |
| |
|
virtual | ~SensorCapture () |
| | Virtual destructor.
|
| |
| SensorData | takeData (SensorCaptureInfo *info=0) |
| | Captures sensor data with frame rate control.
|
| |
| virtual bool | getPose (double stamp, Transform &pose, cv::Mat &covariance, double maxWaitTime=0.06) |
| | Gets the sensor's pose estimate at a specific timestamp.
|
| |
| float | getFrameRate () const |
| | Returns the target frame rate.
|
| |
| const Transform & | getLocalTransform () const |
| | Returns the local transform from base frame to sensor frame.
|
| |
| void | setFrameRate (float frameRate) |
| | Sets the target frame rate.
|
| |
| void | setLocalTransform (const Transform &localTransform) |
| | Sets the local transform from base frame to sensor frame.
|
| |
| void | resetTimer () |
| | Resets the frame rate timer.
|
| |
Definition at line 39 of file CameraStereoImages.h.
| virtual std::string rtabmap::CameraStereoImages::getSerial |
( |
| ) |
const |
|
virtual |
Returns the sensor's serial number or unique identifier.
Pure virtual method that must be implemented by derived classes to return a unique identifier for the sensor (e.g., device serial number, file path, or other identifier).
- Returns
- String identifier for the sensor
Reimplemented from rtabmap::CameraImages.