|
|
| CameraDepthAI (const std::string &mxidOrName="", int imageWidth=1280, float imageRate=0.0f, const Transform &localTransform=Transform::getIdentity()) |
| |
|
void | setOutputMode (int outputMode=0) |
| |
|
void | setDepthProfile (int confThreshold=200, int lrcThreshold=5) |
| |
|
void | setExtendedDisparity (bool extendedDisparity=false, bool enableCompanding=false) |
| |
|
void | setSubpixelMode (bool enabled=false, int fractionalBits=3) |
| |
|
void | setDisparityWidthAndFilter (int disparityWidth=96, int medianFilter=5) |
| |
|
void | setRectification (bool useSpecTranslation=false, float alphaScaling=0.0f, bool enabled=true) |
| |
|
void | setIMU (bool imuPublished, bool publishInterIMU) |
| |
|
void | setIrIntensity (float dotIntensity=0.0f, float floodIntensity=0.0f) |
| |
|
void | setDetectFeatures (int detectFeatures=0, const std::string &blobPath="") |
| |
|
void | setGFTTDetector (bool useHarrisDetector=false, float minDistance=7.0f, int numTargetFeatures=1000) |
| |
|
void | setSuperPointDetector (float threshold=0.01f, bool nms=true, int nmsRadius=4) |
| |
| 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.
|
| |
| 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 | odomProvided () const |
| | Checks if the sensor provides odometry poses.
|
| |
| 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 44 of file CameraDepthAI.h.
| virtual std::string rtabmap::CameraDepthAI::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
Implements rtabmap::SensorCapture.