IRI ROS Specific Driver Class. More...
#include <hole_detection_alg.h>
Public Types | |
typedef iri_hole_detection::HoleDetectionConfig | Config |
define config type | |
Public Member Functions | |
void | cloud_all (int hole_min_p, float box_y_end, float box_z_ini, float box_x, float box_y_ini, float box_z_end, float Xl, float Xc, float Xr, float Y, pcl::PointCloud< pcl::PointXYZRGB > &cloud_in, pcl::PointCloud< pcl::PointXYZ >::Ptr &cloud_out) |
void | config_update (Config &new_cfg, uint32_t level=0) |
config update | |
HoleDetectionAlgorithm (void) | |
constructor | |
void | lock (void) |
Lock Algorithm. | |
bool | try_enter (void) |
Tries Access to Algorithm. | |
void | unlock (void) |
Unlock Algorithm. | |
~HoleDetectionAlgorithm (void) | |
Destructor. | |
Public Attributes | |
Config | config_ |
config variable | |
Protected Attributes | |
CMutex | alg_mutex_ |
define config type | |
float | box_x |
float | box_y_end |
float | box_y_ini |
float | box_z_end |
float | box_z_ini |
pcl::PointCloud< pcl::PointXYZ > ::Ptr | cloud_for |
pcl::PointCloud< pcl::PointXYZRGB > | cloud_in |
int | hole_min_p |
float | Xc |
float | Xl |
float | Xr |
float | Y |
IRI ROS Specific Driver Class.
Definition at line 46 of file hole_detection_alg.h.
typedef iri_hole_detection::HoleDetectionConfig HoleDetectionAlgorithm::Config |
define config type
Define a Config type with the HoleDetectionConfig. All driver implementations will then use the same variable type Config.
Definition at line 69 of file hole_detection_alg.h.
constructor
In this constructor parameters related to the specific driver can be initalized. Those parameters can be also set in the openDriver() function. Attributes from the main node driver class IriBaseDriver such as loop_rate, may be also overload here.
Definition at line 4 of file hole_detection_alg.cpp.
Destructor.
This destructor is called when the object is about to be destroyed.
Definition at line 8 of file hole_detection_alg.cpp.
void HoleDetectionAlgorithm::cloud_all | ( | int | hole_min_p, |
float | box_y_end, | ||
float | box_z_ini, | ||
float | box_x, | ||
float | box_y_ini, | ||
float | box_z_end, | ||
float | Xl, | ||
float | Xc, | ||
float | Xr, | ||
float | Y, | ||
pcl::PointCloud< pcl::PointXYZRGB > & | cloud_in, | ||
pcl::PointCloud< pcl::PointXYZ >::Ptr & | cloud_out | ||
) |
Definition at line 24 of file hole_detection_alg.cpp.
void HoleDetectionAlgorithm::config_update | ( | Config & | new_cfg, |
uint32_t | level = 0 |
||
) |
config update
In this function the driver parameters must be updated with the input config variable. Then the new configuration state will be stored in the Config attribute.
new_cfg | the new driver configuration state |
level | level in which the update is taken place |
Definition at line 12 of file hole_detection_alg.cpp.
void HoleDetectionAlgorithm::lock | ( | void | ) | [inline] |
Lock Algorithm.
Locks access to the Algorithm class
Definition at line 94 of file hole_detection_alg.h.
bool HoleDetectionAlgorithm::try_enter | ( | void | ) | [inline] |
Tries Access to Algorithm.
Tries access to Algorithm
Definition at line 110 of file hole_detection_alg.h.
void HoleDetectionAlgorithm::unlock | ( | void | ) | [inline] |
Unlock Algorithm.
Unlocks access to the Algorithm class
Definition at line 101 of file hole_detection_alg.h.
CMutex HoleDetectionAlgorithm::alg_mutex_ [protected] |
define config type
Define a Config type with the HoleDetectionConfig. All driver implementations will then use the same variable type Config.
Definition at line 55 of file hole_detection_alg.h.
float HoleDetectionAlgorithm::box_x [protected] |
Definition at line 59 of file hole_detection_alg.h.
float HoleDetectionAlgorithm::box_y_end [protected] |
Definition at line 59 of file hole_detection_alg.h.
float HoleDetectionAlgorithm::box_y_ini [protected] |
Definition at line 59 of file hole_detection_alg.h.
float HoleDetectionAlgorithm::box_z_end [protected] |
Definition at line 59 of file hole_detection_alg.h.
float HoleDetectionAlgorithm::box_z_ini [protected] |
Definition at line 59 of file hole_detection_alg.h.
pcl::PointCloud<pcl::PointXYZ>::Ptr HoleDetectionAlgorithm::cloud_for [protected] |
Definition at line 61 of file hole_detection_alg.h.
pcl::PointCloud<pcl::PointXYZRGB> HoleDetectionAlgorithm::cloud_in [protected] |
Definition at line 60 of file hole_detection_alg.h.
config variable
This variable has all the driver parameters defined in the cfg config file. Is updated everytime function config_update() is called.
Definition at line 77 of file hole_detection_alg.h.
int HoleDetectionAlgorithm::hole_min_p [protected] |
Definition at line 58 of file hole_detection_alg.h.
float HoleDetectionAlgorithm::Xc [protected] |
Definition at line 59 of file hole_detection_alg.h.
float HoleDetectionAlgorithm::Xl [protected] |
Definition at line 59 of file hole_detection_alg.h.
float HoleDetectionAlgorithm::Xr [protected] |
Definition at line 59 of file hole_detection_alg.h.
float HoleDetectionAlgorithm::Y [protected] |
Definition at line 59 of file hole_detection_alg.h.