Main MRPT website > C++ reference for MRPT 1.9.9
List of all members | Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | Private Types | Static Private Member Functions | Private Attributes
mrpt::hwdrivers::CSwissRanger3DCamera Class Referenceabstract

Detailed Description

A class for grabing "range images" from a MESA imaging SwissRanger 3D cameras (SR-2, SR-3000, SR-4k).

NOTES:

As with any other CGenericSensor class, the normal sequence of methods to be called is:

This sensor can be also used from within rawlog-grabber.

PARAMETERS IN THE ".INI"-LIKE CONFIGURATION STRINGS:
-------------------------------------------------------
[supplied_section_name]
sensorLabel = CAM3D // A text description
preview_window = true // Show a window with a preview of the
*grabbed data in real-time
open_USB = true // false means ethernet (default: true)
USB_serial = 0x4000002f // only for open_USB=true. If not set, the
*first camera will be open. Serial is the last part of S/N (e.g. for the
*camera SN: 00-00-40-00-00-2F).
IP_address = 192.168.2.14 // only for open_USB=false. The IP of the
*camera.
// Options for the data to save in each CObservation3DRangeScan
save_3d = true // Save the 3D point cloud (default:
*true)
save_range_img = true // Save the 2D range image (default:
*true)
save_intensity_img = true // Save the 2D intensity image
*(default:
*true)
save_confidence = true // Save the estimated confidence 2D
*(default: false)
enable_img_hist_equal = false // Enable intensity image histogram
*equalization (default: false)
enable_median_filter = true // Enable median filter in range
*(default: true)
enable_mediancross_filter = false // Enable median cross-filter
*(default:
*false)
enable_conv_gray = false // Enable intensity image scale with
*(default: false)
enable_denoise_anf = true // Enable this noise filter
*(default:
*true)
// Camera calibration parameters: See mrpt::img::TCamera
// If not provided, a set of default parameters for a SR4000 camera will
*be loaded.
resolution = [176 144]
cx = 87.99958
cy = 68.99957
fx = 262.9201
fy = 262.9218
dist = [-8.258543e-01 6.561022e-01 2.699818e-06 -3.263559e-05 0]
// For externaly stored images, the format of image files (default=jpg)
//external_images_format = jpg
// (Only when external_images_format=jpg): Optional parameter to set the
*JPEG compression quality:
//external_images_jpeg_quality = 95 // [1-100]. Default: 95
pose_x=0.21 // Camera position in the robot (meters)
pose_y=0
pose_z=0.34
pose_yaw=0 // Angles in degrees
pose_pitch=0
pose_roll=0

Definition at line 112 of file CSwissRanger3DCamera.h.

#include <mrpt/hwdrivers/CSwissRanger3DCamera.h>

Inheritance diagram for mrpt::hwdrivers::CSwissRanger3DCamera:
Inheritance graph

Public Types

enum  TSensorState { ssInitializing = 0, ssWorking, ssError }
 The current state of the sensor. More...
 
using Ptr = std::shared_ptr< CGenericSensor >
 
using TListObservations = std::multimap< mrpt::system::TTimeStamp, mrpt::serialization::CSerializable::Ptr >
 
using TListObsPair = std::pair< mrpt::system::TTimeStamp, mrpt::serialization::CSerializable::Ptr >
 

Public Member Functions

 CSwissRanger3DCamera ()
 Default ctor. More...
 
 ~CSwissRanger3DCamera ()
 Default ctor. More...
 
virtual void initialize ()
 Initializes the 3D camera - should be invoked after calling loadConfig() More...
 
virtual void doProcess ()
 To be called at a high rate (>XX Hz), this method populates the internal buffer of received observations. More...
 
void getNextObservation (mrpt::obs::CObservation3DRangeScan &out_obs, bool &there_is_obs, bool &hardware_error)
 The main data retrieving function, to be called after calling loadConfig() and initialize(). More...
 
bool open ()
 return false on error - Called automatically from initialize(), no need normally for the user to call this. More...
 
void close ()
 
bool isOpen () const
 whether the camera is open and comms work ok. More...
 
size_t rows () const
 Get the row count in the camera images, loaded automatically upon camera open(). More...
 
size_t cols () const
 Get the col count in the camera images, loaded automatically upon camera open(). More...
 
unsigned int getCameraSerialNumber () const
 Get the camera serial number, loaded automatically upon camera open(). More...
 
double getMaxRange () const
 Returns the maximum camera range, as deduced from its operating frequency. More...
 
virtual void setPathForExternalImages (const std::string &directory)
 Set the path where to save off-rawlog image files (this class DOES take into account this path). More...
 
bool getMesaLibVersion (std::string &out_version) const
 Get the version of the MESA library. More...
 
virtual const mrpt::hwdrivers::TSensorClassIdGetRuntimeClass () const =0
 
TSensorState getState () const
 The current state of the sensor
More...
 
double getProcessRate () const
 
std::string getSensorLabel () const
 
void setSensorLabel (const std::string &sensorLabel)
 
void enableVerbose (bool enabled=true)
 Enable or disable extra debug info dumped to std::cout during sensor operation. More...
 
bool isVerboseEnabled () const
 
void loadConfig (const mrpt::config::CConfigFileBase &configSource, const std::string &section)
 Loads the generic settings common to any sensor (See CGenericSensor), then call to "loadConfig_sensorSpecific". More...
 
void getObservations (TListObservations &lstObjects)
 Returns a list of enqueued objects, emptying it (thread-safe). More...
 
void setExternalImageFormat (const std::string &ext)
 Set the extension ("jpg","gif","png",...) that determines the format of images saved externally The default is "jpg". More...
 
void setExternalImageJPEGQuality (const unsigned int quality)
 The quality of JPEG compression, when external images is enabled and the format is "jpg". More...
 
unsigned int getExternalImageJPEGQuality () const
 
Capture configuration methods (apart from loadConfig)
void setOpenFromUSB (bool USB)
 true: open from USB, false: open from ethernet. More...
 
bool getOpenFromUSBMode () const
 
void setOpenIPAddress (const std::string &IP)
 
std::string getOpenIPAddress () const
 
void setSave3D (bool save)
 
void setSaveRangeImage (bool save)
 
void setSaveIntensityImage (bool save)
 
void setSaveConfidenceImage (bool save)
 
void enableImageHistEqualization (bool enable)
 
bool isEnabledImageHistEqualization () const
 
void enableMedianFilter (bool enable)
 
bool isEnabledMedianFilter () const
 
void enableMedianCrossFilter (bool enable)
 
bool isEnabledMedianCrossFilter () const
 
void enableConvGray (bool enable)
 
bool isEnabledConvGray () const
 
void enableDenoiseANF (bool enable)
 
bool isEnabledDenoiseANF () const
 
void enablePreviewWindow (bool enable=true)
 
bool isEnabledPreviewWindow () const
 

Static Public Member Functions

static void registerClass (const TSensorClassId *pNewClass)
 Register a class into the internal list of "CGenericSensor" descendents. More...
 
static CGenericSensorcreateSensor (const std::string &className)
 Creates a sensor by a name of the class. More...
 
static CGenericSensor::Ptr createSensorPtr (const std::string &className)
 Just like createSensor, but returning a smart pointer to the newly created sensor object. More...
 

Protected Member Functions

virtual void loadConfig_sensorSpecific (const mrpt::config::CConfigFileBase &configSource, const std::string &section)
 See the class documentation at the top for expected parameters. More...
 
void internal_resendParamsToCamera () const
 
void appendObservations (const std::vector< mrpt::serialization::CSerializable::Ptr > &obj)
 This method must be called by derived classes to enqueue a new observation in the list to be returned by getObservations. More...
 
void appendObservation (const mrpt::serialization::CSerializable::Ptr &obj)
 Like appendObservations() but for just one observation. More...
 

Protected Attributes

mrpt::poses::CPose3D m_sensorPoseOnRobot
 
bool m_save_3d
 Save the 3D point cloud (default: true) More...
 
bool m_save_range_img
 Save the 2D range image (default: true) More...
 
bool m_save_intensity_img
 Save the 2D intensity image (default: true) More...
 
bool m_save_confidence
 Save the estimated confidence 2D image (default: false) More...
 
bool m_enable_img_hist_equal
 
bool m_enable_median_filter
 
bool m_enable_mediancross_filter
 
bool m_enable_conv_gray
 
bool m_enable_denoise_anf
 
bool m_open_from_usb
 true: USB, false: ETH More...
 
size_t m_usb_serial
 
std::string m_ip_address
 
size_t m_rows
 Size of camera images, set on open() More...
 
size_t m_cols
 
unsigned int m_cam_serial_num
 Serial number of the camera, set on open() More...
 
double m_maxRange
 Max range, as deducted from the camera frequency. More...
 
bool m_preview_window
 Show preview window while grabbing. More...
 
mrpt::gui::CDisplayWindow::Ptr m_win_range
 
mrpt::gui::CDisplayWindow::Ptr m_win_int
 
voidm_cam
 opaque handler to SRCAM. More...
 
mrpt::img::TCamera m_cameraParams
 
size_t m_grab_decimation_counter
 Used when "m_grab_decimation" is enabled. More...
 
TSensorState m_state
 
bool m_verbose
 
std::string m_path_for_external_images
 The path where to save off-rawlog images: empty means save images embedded in the rawlog. More...
 
std::string m_external_images_format
 The extension ("jpg","gif","png",...) that determines the format of images saved externally. More...
 
unsigned int m_external_images_jpeg_quality
 For JPEG images, the quality (default=95%). More...
 

Private Types

using registered_sensor_classes_t = std::map< std::string, const TSensorClassId * >
 Used in registerClass. More...
 

Static Private Member Functions

static registered_sensor_classes_tget_registered_sensor_classes ()
 Access to singleton. More...
 

Private Attributes

std::mutex m_csObjList
 The critical section for m_objList. More...
 
TListObservations m_objList
 The queue of objects to be returned by getObservations. More...
 

Member Typedef Documentation

◆ Ptr

using mrpt::hwdrivers::CGenericSensor::Ptr = std::shared_ptr<CGenericSensor>
inherited

Definition at line 73 of file CGenericSensor.h.

◆ registered_sensor_classes_t

Used in registerClass.

Definition at line 124 of file CGenericSensor.h.

◆ TListObservations

Definition at line 77 of file CGenericSensor.h.

◆ TListObsPair

Definition at line 79 of file CGenericSensor.h.

Member Enumeration Documentation

◆ TSensorState

The current state of the sensor.

See also
CGenericSensor::getState
Enumerator
ssInitializing 
ssWorking 
ssError 

Definition at line 84 of file CGenericSensor.h.

Constructor & Destructor Documentation

◆ CSwissRanger3DCamera()

CSwissRanger3DCamera::CSwissRanger3DCamera ( )

◆ ~CSwissRanger3DCamera()

CSwissRanger3DCamera::~CSwissRanger3DCamera ( )

Default ctor.

Definition at line 93 of file CSwissRanger3DCamera.cpp.

References close().

Member Function Documentation

◆ appendObservation()

void mrpt::hwdrivers::CGenericSensor::appendObservation ( const mrpt::serialization::CSerializable::Ptr obj)
inlineprotectedinherited

◆ appendObservations()

void CGenericSensor::appendObservations ( const std::vector< mrpt::serialization::CSerializable::Ptr > &  obj)
protectedinherited

This method must be called by derived classes to enqueue a new observation in the list to be returned by getObservations.

Passed objects must be created in dynamic memory and a smart pointer passed. Example of creation:

mrpt::obs::CObservationGPS::Ptr o = CObservationGPS::Ptr( new
CObservationGPS() );
o-> .... // Set data

If several observations are passed at once in the vector, they'll be considered as a block regarding the grabbing decimation factor.

Definition at line 53 of file CGenericSensor.cpp.

References CLASS_ID, mrpt::hwdrivers::CGenericSensor::m_csObjList, mrpt::hwdrivers::CGenericSensor::m_grab_decimation, mrpt::hwdrivers::CGenericSensor::m_grab_decimation_counter, mrpt::hwdrivers::CGenericSensor::m_objList, and THROW_EXCEPTION.

Referenced by mrpt::hwdrivers::CGenericSensor::appendObservation(), mrpt::hwdrivers::CNationalInstrumentsDAQ::doProcess(), and mrpt::hwdrivers::CKinect::doProcess().

◆ close()

void CSwissRanger3DCamera::close ( )

Definition at line 329 of file CSwissRanger3DCamera.cpp.

References m_cam.

Referenced by open(), and ~CSwissRanger3DCamera().

◆ cols()

size_t mrpt::hwdrivers::CSwissRanger3DCamera::cols ( ) const
inline

Get the col count in the camera images, loaded automatically upon camera open().

Definition at line 166 of file CSwissRanger3DCamera.h.

References m_cols.

◆ createSensor()

CGenericSensor * CGenericSensor::createSensor ( const std::string className)
staticinherited

Creates a sensor by a name of the class.

Typically the user may want to create a smart pointer around the returned pointer, whis is made with:

Returns
A pointer to a new class, or nullptr if class name is unknown.

Definition at line 103 of file CGenericSensor.cpp.

References mrpt::hwdrivers::CGenericSensor::get_registered_sensor_classes().

Referenced by mrpt::hwdrivers::CGenericSensor::createSensorPtr().

◆ createSensorPtr()

static CGenericSensor::Ptr mrpt::hwdrivers::CGenericSensor::createSensorPtr ( const std::string className)
inlinestaticinherited

Just like createSensor, but returning a smart pointer to the newly created sensor object.

Definition at line 219 of file CGenericSensor.h.

References mrpt::hwdrivers::CGenericSensor::createSensor().

◆ doProcess()

void CSwissRanger3DCamera::doProcess ( )
virtual

To be called at a high rate (>XX Hz), this method populates the internal buffer of received observations.

This method will be invoked at a minimum rate of "process_rate" (Hz)

This method is mainly intended for usage within rawlog-grabber or similar programs. For an alternative, see getNextObservation()

Exceptions
Thismethod must throw an exception with a descriptive message if some critical error is found.
See also
getNextObservation
Exceptions
Thismethod must throw an exception with a descriptive message if some critical error is found.

Implements mrpt::hwdrivers::CGenericSensor.

Definition at line 144 of file CSwissRanger3DCamera.cpp.

References mrpt::hwdrivers::CGenericSensor::appendObservation(), getNextObservation(), mrpt::hwdrivers::CGenericSensor::m_state, mrpt::hwdrivers::CGenericSensor::ssError, mrpt::hwdrivers::CGenericSensor::ssWorking, and THROW_EXCEPTION.

◆ enableConvGray()

void mrpt::hwdrivers::CSwissRanger3DCamera::enableConvGray ( bool  enable)
inline

Definition at line 222 of file CSwissRanger3DCamera.h.

References internal_resendParamsToCamera(), and m_enable_conv_gray.

◆ enableDenoiseANF()

void mrpt::hwdrivers::CSwissRanger3DCamera::enableDenoiseANF ( bool  enable)
inline

◆ enableImageHistEqualization()

void mrpt::hwdrivers::CSwissRanger3DCamera::enableImageHistEqualization ( bool  enable)
inline

Definition at line 197 of file CSwissRanger3DCamera.h.

References m_enable_img_hist_equal.

◆ enableMedianCrossFilter()

void mrpt::hwdrivers::CSwissRanger3DCamera::enableMedianCrossFilter ( bool  enable)
inline

◆ enableMedianFilter()

void mrpt::hwdrivers::CSwissRanger3DCamera::enableMedianFilter ( bool  enable)
inline

◆ enablePreviewWindow()

void mrpt::hwdrivers::CSwissRanger3DCamera::enablePreviewWindow ( bool  enable = true)
inline

Definition at line 234 of file CSwissRanger3DCamera.h.

References m_preview_window.

◆ enableVerbose()

void mrpt::hwdrivers::CGenericSensor::enableVerbose ( bool  enabled = true)
inlineinherited

Enable or disable extra debug info dumped to std::cout during sensor operation.

Default: disabled unless the environment variable "MRPT_HWDRIVERS_VERBOSE" is set to "1" during object creation.

Definition at line 105 of file CGenericSensor.h.

References mrpt::hwdrivers::CGenericSensor::m_verbose.

◆ get_registered_sensor_classes()

CGenericSensor::registered_sensor_classes_t & CGenericSensor::get_registered_sensor_classes ( )
staticprivateinherited

◆ getCameraSerialNumber()

unsigned int mrpt::hwdrivers::CSwissRanger3DCamera::getCameraSerialNumber ( ) const
inline

Get the camera serial number, loaded automatically upon camera open().

Definition at line 169 of file CSwissRanger3DCamera.h.

References m_cam_serial_num.

◆ getExternalImageJPEGQuality()

unsigned int mrpt::hwdrivers::CGenericSensor::getExternalImageJPEGQuality ( ) const
inlineinherited

◆ getMaxRange()

double mrpt::hwdrivers::CSwissRanger3DCamera::getMaxRange ( ) const
inline

Returns the maximum camera range, as deduced from its operating frequency.

Definition at line 172 of file CSwissRanger3DCamera.h.

References m_maxRange.

◆ getMesaLibVersion()

bool CSwissRanger3DCamera::getMesaLibVersion ( std::string out_version) const

Get the version of the MESA library.

Returns
false on error

Definition at line 235 of file CSwissRanger3DCamera.cpp.

References mrpt::format(), and MRPT_UNUSED_PARAM.

◆ getNextObservation()

void CSwissRanger3DCamera::getNextObservation ( mrpt::obs::CObservation3DRangeScan _out_obs,
bool &  there_is_obs,
bool &  hardware_error 
)

The main data retrieving function, to be called after calling loadConfig() and initialize().

Parameters
out_obsThe output retrieved observation (only if there_is_obs=true).
there_is_obsIf set to false, there was no new observation.
hardware_errorTrue on hardware/comms error.
See also
doProcess

Definition at line 364 of file CSwissRanger3DCamera.cpp.

References ASSERT_, mrpt::obs::CObservation3DRangeScan::cameraParams, mrpt::obs::CObservation3DRangeScan::confidenceImage, do_init_table_16u_to_8u(), mrpt::img::CImage::equalizeHistInPlace(), mrpt::system::fileNameStripInvalidChars(), mrpt::format(), mrpt::img::CImage::get_unsafe(), mrpt::obs::CObservation3DRangeScan::hasConfidenceImage, mrpt::obs::CObservation3DRangeScan::hasIntensityImage, mrpt::obs::CObservation3DRangeScan::hasPoints3D, mrpt::obs::CObservation3DRangeScan::hasRangeImage, mrpt::obs::CObservation3DRangeScan::intensityImage, m_cam, m_cameraParams, m_enable_img_hist_equal, mrpt::hwdrivers::CGenericSensor::m_external_images_format, mrpt::hwdrivers::CGenericSensor::m_external_images_jpeg_quality, m_maxRange, mrpt::hwdrivers::CGenericSensor::m_path_for_external_images, m_preview_window, m_save_3d, m_save_confidence, m_save_intensity_img, m_save_range_img, mrpt::hwdrivers::CGenericSensor::m_sensorLabel, m_sensorPoseOnRobot, m_win_int, m_win_range, mrpt::obs::CObservation3DRangeScan::maxRange, MRPT_UNUSED_PARAM, mrpt::obs::CObservation3DRangeScan::points3D_x, mrpt::obs::CObservation3DRangeScan::points3D_y, mrpt::obs::CObservation3DRangeScan::points3D_z, mrpt::obs::CObservation3DRangeScan::range_is_depth, mrpt::obs::CObservation3DRangeScan::rangeImage, mrpt::img::CImage::resize(), mrpt::img::CImage::saveToFile(), mrpt::img::TCamera::scaleToResolution(), mrpt::obs::CObservation::sensorLabel, mrpt::obs::CObservation3DRangeScan::sensorPose, mrpt::img::CImage::setExternalStorage(), mrpt::obs::CObservation3DRangeScan::stdError, mrpt::obs::CObservation3DRangeScan::swap(), table_16u_to_8u, table_16u_to_8u_init, mrpt::obs::CObservation::timestamp, mrpt::system::timestampTotime_t(), and trim().

Referenced by doProcess().

◆ getObservations()

void CGenericSensor::getObservations ( TListObservations lstObjects)
inherited

Returns a list of enqueued objects, emptying it (thread-safe).

The objects must be freed by the invoker.

Definition at line 91 of file CGenericSensor.cpp.

References mrpt::hwdrivers::CGenericSensor::m_csObjList, and mrpt::hwdrivers::CGenericSensor::m_objList.

◆ getOpenFromUSBMode()

bool mrpt::hwdrivers::CSwissRanger3DCamera::getOpenFromUSBMode ( ) const
inline

Definition at line 187 of file CSwissRanger3DCamera.h.

References m_open_from_usb.

◆ getOpenIPAddress()

std::string mrpt::hwdrivers::CSwissRanger3DCamera::getOpenIPAddress ( ) const
inline

Definition at line 189 of file CSwissRanger3DCamera.h.

References m_ip_address.

◆ getProcessRate()

double mrpt::hwdrivers::CGenericSensor::getProcessRate ( ) const
inlineinherited

Definition at line 93 of file CGenericSensor.h.

References mrpt::hwdrivers::CGenericSensor::m_process_rate.

◆ GetRuntimeClass()

virtual const mrpt::hwdrivers::TSensorClassId* mrpt::hwdrivers::CGenericSensor::GetRuntimeClass ( ) const
pure virtualinherited

◆ getSensorLabel()

std::string mrpt::hwdrivers::CGenericSensor::getSensorLabel ( ) const
inlineinherited

Definition at line 94 of file CGenericSensor.h.

References mrpt::hwdrivers::CGenericSensor::m_sensorLabel.

◆ getState()

TSensorState mrpt::hwdrivers::CGenericSensor::getState ( ) const
inlineinherited

The current state of the sensor

Definition at line 92 of file CGenericSensor.h.

References mrpt::hwdrivers::CGenericSensor::m_state.

◆ initialize()

void CSwissRanger3DCamera::initialize ( )
virtual

Initializes the 3D camera - should be invoked after calling loadConfig()

This method can or cannot be implemented in the derived class, depending on the need for it.

Exceptions
Thismethod must throw an exception with a descriptive message if some critical error is found.

Reimplemented from mrpt::hwdrivers::CGenericSensor.

Definition at line 135 of file CSwissRanger3DCamera.cpp.

References open(), and THROW_EXCEPTION.

◆ internal_resendParamsToCamera()

void CSwissRanger3DCamera::internal_resendParamsToCamera ( ) const
protected

◆ isEnabledConvGray()

bool mrpt::hwdrivers::CSwissRanger3DCamera::isEnabledConvGray ( ) const
inline

Definition at line 227 of file CSwissRanger3DCamera.h.

References m_enable_conv_gray.

◆ isEnabledDenoiseANF()

bool mrpt::hwdrivers::CSwissRanger3DCamera::isEnabledDenoiseANF ( ) const
inline

Definition at line 233 of file CSwissRanger3DCamera.h.

References m_enable_denoise_anf.

◆ isEnabledImageHistEqualization()

bool mrpt::hwdrivers::CSwissRanger3DCamera::isEnabledImageHistEqualization ( ) const
inline

Definition at line 201 of file CSwissRanger3DCamera.h.

References m_enable_img_hist_equal.

◆ isEnabledMedianCrossFilter()

bool mrpt::hwdrivers::CSwissRanger3DCamera::isEnabledMedianCrossFilter ( ) const
inline

Definition at line 217 of file CSwissRanger3DCamera.h.

References m_enable_mediancross_filter.

◆ isEnabledMedianFilter()

bool mrpt::hwdrivers::CSwissRanger3DCamera::isEnabledMedianFilter ( ) const
inline

Definition at line 211 of file CSwissRanger3DCamera.h.

References m_enable_median_filter.

◆ isEnabledPreviewWindow()

bool mrpt::hwdrivers::CSwissRanger3DCamera::isEnabledPreviewWindow ( ) const
inline

Definition at line 238 of file CSwissRanger3DCamera.h.

References m_preview_window.

◆ isOpen()

bool CSwissRanger3DCamera::isOpen ( ) const

whether the camera is open and comms work ok.

To be called after initialize()

Definition at line 250 of file CSwissRanger3DCamera.cpp.

References m_cam.

Referenced by internal_resendParamsToCamera(), and open().

◆ isVerboseEnabled()

bool mrpt::hwdrivers::CGenericSensor::isVerboseEnabled ( ) const
inlineinherited

Definition at line 106 of file CGenericSensor.h.

References mrpt::hwdrivers::CGenericSensor::m_verbose.

◆ loadConfig()

void CGenericSensor::loadConfig ( const mrpt::config::CConfigFileBase cfg,
const std::string sect 
)
inherited

◆ loadConfig_sensorSpecific()

void CSwissRanger3DCamera::loadConfig_sensorSpecific ( const mrpt::config::CConfigFileBase configSource,
const std::string iniSection 
)
protectedvirtual

◆ open()

bool CSwissRanger3DCamera::open ( )

return false on error - Called automatically from initialize(), no need normally for the user to call this.

Definition at line 251 of file CSwissRanger3DCamera.cpp.

References close(), internal_resendParamsToCamera(), isOpen(), m_cam, m_cam_serial_num, m_cols, m_ip_address, m_maxRange, m_open_from_usb, m_rows, and m_usb_serial.

Referenced by initialize().

◆ registerClass()

void CGenericSensor::registerClass ( const TSensorClassId pNewClass)
staticinherited

Register a class into the internal list of "CGenericSensor" descendents.

Used internally in the macros DEFINE_GENERIC_SENSOR, etc...

Can be used as "CGenericSensor::registerClass( SENSOR_CLASS_ID(CMySensor) );" if building custom sensors outside mrpt libraries in user code.

Definition at line 121 of file CGenericSensor.cpp.

References mrpt::hwdrivers::TSensorClassId::className, and mrpt::hwdrivers::CGenericSensor::get_registered_sensor_classes().

Referenced by mrpt::hwdrivers::CGenericSensor::CLASSINIT_GENERIC_SENSOR::CLASSINIT_GENERIC_SENSOR().

◆ rows()

size_t mrpt::hwdrivers::CSwissRanger3DCamera::rows ( ) const
inline

Get the row count in the camera images, loaded automatically upon camera open().

Definition at line 163 of file CSwissRanger3DCamera.h.

References m_rows.

◆ setExternalImageFormat()

void mrpt::hwdrivers::CGenericSensor::setExternalImageFormat ( const std::string ext)
inlineinherited

Set the extension ("jpg","gif","png",...) that determines the format of images saved externally The default is "jpg".

See also
setPathForExternalImages, setExternalImageJPEGQuality

Definition at line 278 of file CGenericSensor.h.

References mrpt::hwdrivers::CGenericSensor::m_external_images_format.

◆ setExternalImageJPEGQuality()

void mrpt::hwdrivers::CGenericSensor::setExternalImageJPEGQuality ( const unsigned int  quality)
inlineinherited

The quality of JPEG compression, when external images is enabled and the format is "jpg".

See also
setExternalImageFormat

Definition at line 285 of file CGenericSensor.h.

References mrpt::hwdrivers::CGenericSensor::m_external_images_jpeg_quality.

◆ setOpenFromUSB()

void mrpt::hwdrivers::CSwissRanger3DCamera::setOpenFromUSB ( bool  USB)
inline

true: open from USB, false: open from ethernet.

Definition at line 186 of file CSwissRanger3DCamera.h.

References m_open_from_usb.

◆ setOpenIPAddress()

void mrpt::hwdrivers::CSwissRanger3DCamera::setOpenIPAddress ( const std::string IP)
inline

Definition at line 188 of file CSwissRanger3DCamera.h.

References m_ip_address.

◆ setPathForExternalImages()

void CSwissRanger3DCamera::setPathForExternalImages ( const std::string directory)
virtual

Set the path where to save off-rawlog image files (this class DOES take into account this path).

An empty string (the default value at construction) means to save images embedded in the rawlog, instead of on separate files.

Exceptions
std::exceptionIf the directory doesn't exists and cannot be created.

Reimplemented from mrpt::hwdrivers::CGenericSensor.

Definition at line 612 of file CSwissRanger3DCamera.cpp.

References mrpt::system::createDirectory(), mrpt::hwdrivers::CGenericSensor::m_path_for_external_images, and THROW_EXCEPTION_FMT.

◆ setSave3D()

void mrpt::hwdrivers::CSwissRanger3DCamera::setSave3D ( bool  save)
inline

Definition at line 190 of file CSwissRanger3DCamera.h.

References m_save_3d.

◆ setSaveConfidenceImage()

void mrpt::hwdrivers::CSwissRanger3DCamera::setSaveConfidenceImage ( bool  save)
inline

Definition at line 196 of file CSwissRanger3DCamera.h.

References m_save_confidence.

◆ setSaveIntensityImage()

void mrpt::hwdrivers::CSwissRanger3DCamera::setSaveIntensityImage ( bool  save)
inline

Definition at line 192 of file CSwissRanger3DCamera.h.

References m_save_intensity_img.

◆ setSaveRangeImage()

void mrpt::hwdrivers::CSwissRanger3DCamera::setSaveRangeImage ( bool  save)
inline

Definition at line 191 of file CSwissRanger3DCamera.h.

References m_save_range_img.

◆ setSensorLabel()

void mrpt::hwdrivers::CGenericSensor::setSensorLabel ( const std::string sensorLabel)
inlineinherited

Definition at line 95 of file CGenericSensor.h.

References mrpt::hwdrivers::CGenericSensor::m_sensorLabel.

Member Data Documentation

◆ m_cam

void* mrpt::hwdrivers::CSwissRanger3DCamera::m_cam
protected

opaque handler to SRCAM.

nullptr means it's not open yet.

Definition at line 290 of file CSwissRanger3DCamera.h.

Referenced by close(), getNextObservation(), internal_resendParamsToCamera(), isOpen(), and open().

◆ m_cam_serial_num

unsigned int mrpt::hwdrivers::CSwissRanger3DCamera::m_cam_serial_num
protected

Serial number of the camera, set on open()

Definition at line 281 of file CSwissRanger3DCamera.h.

Referenced by getCameraSerialNumber(), and open().

◆ m_cameraParams

mrpt::img::TCamera mrpt::hwdrivers::CSwissRanger3DCamera::m_cameraParams
protected

◆ m_cols

size_t mrpt::hwdrivers::CSwissRanger3DCamera::m_cols
protected

Definition at line 279 of file CSwissRanger3DCamera.h.

Referenced by cols(), and open().

◆ m_csObjList

std::mutex mrpt::hwdrivers::CGenericSensor::m_csObjList
privateinherited

The critical section for m_objList.

Definition at line 118 of file CGenericSensor.h.

Referenced by mrpt::hwdrivers::CGenericSensor::appendObservations(), and mrpt::hwdrivers::CGenericSensor::getObservations().

◆ m_enable_conv_gray

bool mrpt::hwdrivers::CSwissRanger3DCamera::m_enable_conv_gray
protected

◆ m_enable_denoise_anf

bool mrpt::hwdrivers::CSwissRanger3DCamera::m_enable_denoise_anf
protected

◆ m_enable_img_hist_equal

bool mrpt::hwdrivers::CSwissRanger3DCamera::m_enable_img_hist_equal
protected

◆ m_enable_median_filter

bool mrpt::hwdrivers::CSwissRanger3DCamera::m_enable_median_filter
protected

◆ m_enable_mediancross_filter

bool mrpt::hwdrivers::CSwissRanger3DCamera::m_enable_mediancross_filter
protected

◆ m_external_images_format

std::string mrpt::hwdrivers::CGenericSensor::m_external_images_format
protectedinherited

The extension ("jpg","gif","png",...) that determines the format of images saved externally.

See also
setPathForExternalImages

Definition at line 157 of file CGenericSensor.h.

Referenced by getNextObservation(), loadConfig_sensorSpecific(), and mrpt::hwdrivers::CGenericSensor::setExternalImageFormat().

◆ m_external_images_jpeg_quality

unsigned int mrpt::hwdrivers::CGenericSensor::m_external_images_jpeg_quality
protectedinherited

◆ m_grab_decimation

size_t mrpt::hwdrivers::CGenericSensor::m_grab_decimation
protectedinherited

If set to N>=2, only 1 out of N observations will be saved to m_objList.

Definition at line 138 of file CGenericSensor.h.

Referenced by mrpt::hwdrivers::CGenericSensor::appendObservations(), and mrpt::hwdrivers::CGenericSensor::loadConfig().

◆ m_grab_decimation_counter

size_t mrpt::hwdrivers::CGenericSensor::m_grab_decimation_counter
protectedinherited

Used when "m_grab_decimation" is enabled.

Definition at line 145 of file CGenericSensor.h.

Referenced by mrpt::hwdrivers::CGenericSensor::appendObservations(), and mrpt::hwdrivers::CGenericSensor::loadConfig().

◆ m_ip_address

std::string mrpt::hwdrivers::CSwissRanger3DCamera::m_ip_address
protected

◆ m_max_queue_len

size_t mrpt::hwdrivers::CGenericSensor::m_max_queue_len
protectedinherited

See CGenericSensor.

Definition at line 135 of file CGenericSensor.h.

Referenced by mrpt::hwdrivers::CGenericSensor::loadConfig().

◆ m_maxRange

double mrpt::hwdrivers::CSwissRanger3DCamera::m_maxRange
protected

Max range, as deducted from the camera frequency.

Definition at line 283 of file CSwissRanger3DCamera.h.

Referenced by getMaxRange(), getNextObservation(), and open().

◆ m_objList

TListObservations mrpt::hwdrivers::CGenericSensor::m_objList
privateinherited

◆ m_open_from_usb

bool mrpt::hwdrivers::CSwissRanger3DCamera::m_open_from_usb
protected

true: USB, false: ETH

Definition at line 274 of file CSwissRanger3DCamera.h.

Referenced by getOpenFromUSBMode(), loadConfig_sensorSpecific(), open(), and setOpenFromUSB().

◆ m_path_for_external_images

std::string mrpt::hwdrivers::CGenericSensor::m_path_for_external_images
protectedinherited

The path where to save off-rawlog images: empty means save images embedded in the rawlog.

Definition at line 154 of file CGenericSensor.h.

Referenced by getNextObservation(), and setPathForExternalImages().

◆ m_preview_window

bool mrpt::hwdrivers::CSwissRanger3DCamera::m_preview_window
protected

Show preview window while grabbing.

Definition at line 286 of file CSwissRanger3DCamera.h.

Referenced by enablePreviewWindow(), getNextObservation(), isEnabledPreviewWindow(), and loadConfig_sensorSpecific().

◆ m_process_rate

double mrpt::hwdrivers::CGenericSensor::m_process_rate
protectedinherited

◆ m_rows

size_t mrpt::hwdrivers::CSwissRanger3DCamera::m_rows
protected

Size of camera images, set on open()

Definition at line 279 of file CSwissRanger3DCamera.h.

Referenced by open(), and rows().

◆ m_save_3d

bool mrpt::hwdrivers::CSwissRanger3DCamera::m_save_3d
protected

Save the 3D point cloud (default: true)

Definition at line 259 of file CSwissRanger3DCamera.h.

Referenced by getNextObservation(), loadConfig_sensorSpecific(), and setSave3D().

◆ m_save_confidence

bool mrpt::hwdrivers::CSwissRanger3DCamera::m_save_confidence
protected

Save the estimated confidence 2D image (default: false)

Definition at line 265 of file CSwissRanger3DCamera.h.

Referenced by getNextObservation(), internal_resendParamsToCamera(), loadConfig_sensorSpecific(), and setSaveConfidenceImage().

◆ m_save_intensity_img

bool mrpt::hwdrivers::CSwissRanger3DCamera::m_save_intensity_img
protected

Save the 2D intensity image (default: true)

Definition at line 263 of file CSwissRanger3DCamera.h.

Referenced by getNextObservation(), loadConfig_sensorSpecific(), and setSaveIntensityImage().

◆ m_save_range_img

bool mrpt::hwdrivers::CSwissRanger3DCamera::m_save_range_img
protected

Save the 2D range image (default: true)

Definition at line 261 of file CSwissRanger3DCamera.h.

Referenced by getNextObservation(), loadConfig_sensorSpecific(), and setSaveRangeImage().

◆ m_sensorLabel

std::string mrpt::hwdrivers::CGenericSensor::m_sensorLabel
protectedinherited

See CGenericSensor.

Definition at line 140 of file CGenericSensor.h.

Referenced by mrpt::hwdrivers::CCANBusReader::CCANBusReader(), mrpt::hwdrivers::CGPSInterface::CGPSInterface(), mrpt::hwdrivers::CGyroKVHDSP3000::CGyroKVHDSP3000(), mrpt::hwdrivers::CHokuyoURG::CHokuyoURG(), mrpt::hwdrivers::CIMUIntersense::CIMUIntersense(), mrpt::hwdrivers::CIMUXSens::CIMUXSens(), mrpt::hwdrivers::CIMUXSens_MT4::CIMUXSens_MT4(), mrpt::hwdrivers::CKinect::CKinect(), mrpt::hwdrivers::CNationalInstrumentsDAQ::CNationalInstrumentsDAQ(), mrpt::hwdrivers::CRoboPeakLidar::CRoboPeakLidar(), mrpt::hwdrivers::CSickLaserSerial::CSickLaserSerial(), mrpt::hwdrivers::CSickLaserUSB::CSickLaserUSB(), mrpt::hwdrivers::CSkeletonTracker::CSkeletonTracker(), CSwissRanger3DCamera(), mrpt::hwdrivers::CVelodyneScanner::CVelodyneScanner(), mrpt::hwdrivers::CIMUXSens_MT4::doProcess(), mrpt::hwdrivers::CIMUXSens::doProcess(), mrpt::hwdrivers::CGyroKVHDSP3000::doProcess(), mrpt::hwdrivers::CIMUIntersense::doProcess(), mrpt::hwdrivers::CSkeletonTracker::doProcess(), mrpt::hwdrivers::CRoboPeakLidar::doProcessSimple(), mrpt::hwdrivers::CSickLaserUSB::doProcessSimple(), mrpt::hwdrivers::CCANBusReader::doProcessSimple(), mrpt::hwdrivers::CSickLaserSerial::doProcessSimple(), mrpt::hwdrivers::CHokuyoURG::doProcessSimple(), mrpt::hwdrivers::CGPSInterface::flushParsedMessagesNow(), getNextObservation(), mrpt::hwdrivers::CKinect::getNextObservation(), mrpt::hwdrivers::CVelodyneScanner::getNextObservation(), mrpt::hwdrivers::CGenericSensor::getSensorLabel(), mrpt::hwdrivers::CNationalInstrumentsDAQ::grabbing_thread(), mrpt::hwdrivers::CGenericSensor::loadConfig(), mrpt::hwdrivers::CSkeletonTracker::processPreview(), mrpt::hwdrivers::C2DRangeFinderAbstract::processPreview(), mrpt::hwdrivers::CSkeletonTracker::processPreviewNone(), and mrpt::hwdrivers::CGenericSensor::setSensorLabel().

◆ m_sensorPoseOnRobot

mrpt::poses::CPose3D mrpt::hwdrivers::CSwissRanger3DCamera::m_sensorPoseOnRobot
protected

Definition at line 256 of file CSwissRanger3DCamera.h.

Referenced by getNextObservation(), and loadConfig_sensorSpecific().

◆ m_state

TSensorState mrpt::hwdrivers::CGenericSensor::m_state
protectedinherited

◆ m_usb_serial

size_t mrpt::hwdrivers::CSwissRanger3DCamera::m_usb_serial
protected

Definition at line 275 of file CSwissRanger3DCamera.h.

Referenced by loadConfig_sensorSpecific(), and open().

◆ m_verbose

bool mrpt::hwdrivers::CGenericSensor::m_verbose
protectedinherited

◆ m_win_int

mrpt::gui::CDisplayWindow::Ptr mrpt::hwdrivers::CSwissRanger3DCamera::m_win_int
protected

Definition at line 287 of file CSwissRanger3DCamera.h.

Referenced by getNextObservation().

◆ m_win_range

mrpt::gui::CDisplayWindow::Ptr mrpt::hwdrivers::CSwissRanger3DCamera::m_win_range
protected

Definition at line 287 of file CSwissRanger3DCamera.h.

Referenced by getNextObservation().

mrpt::hwdrivers::CGenericSensor::Ptr
std::shared_ptr< CGenericSensor > Ptr
Definition: CGenericSensor.h:73
mrpt::hwdrivers::CGenericSensor::createSensor
static CGenericSensor * createSensor(const std::string &className)
Creates a sensor by a name of the class.
Definition: CGenericSensor.cpp:103
data
GLsizei GLsizei GLenum GLenum const GLvoid * data
Definition: glext.h:3547
mrpt::obs::CObservationGPS::Ptr
std::shared_ptr< CObservationGPS > Ptr
Definition: CObservationGPS.h:72
mrpt::hwdrivers::CGenericSensor::appendObservation
void appendObservation(const mrpt::serialization::CSerializable::Ptr &obj)
Like appendObservations() but for just one observation.
Definition: CGenericSensor.h:179
image
GLenum GLsizei GLenum GLenum const GLvoid * image
Definition: glext.h:3552
mrpt::hwdrivers::CSwissRanger3DCamera::open
bool open()
return false on error - Called automatically from initialize(), no need normally for the user to call...
Definition: CSwissRanger3DCamera.cpp:251
in
GLuint in
Definition: glext.h:7274
range
GLsizei range
Definition: glext.h:5907
first
GLint * first
Definition: glext.h:3827



Page generated by Doxygen 1.8.17 for MRPT 1.9.9 Git: ad3a9d8ae Tue May 1 23:10:22 2018 -0700 at miƩ 12 jul 2023 10:03:34 CEST