rgbd
|
Client which subscribes to regular ROS image topics. More...
#include <client_ros.h>
Public Member Functions | |
ClientROS () | |
Constructor. More... | |
bool | initialize (const std::string &rgb_image_topic, const std::string &depth_image_topic, const std::string &cam_info_topic) |
Initialize the subscriber. More... | |
ImagePtr | nextImage () |
Get a new Image. If no new image has been received since the last call, The ImagePtr will be a nullptr. More... | |
bool | nextImage (Image &image) |
Get a new Image. If no new image has been received since the last call, no image will be written and false will be returned. More... | |
virtual | ~ClientROS () |
Destructor. More... | |
![]() | |
ClientROSBase (ros::NodeHandle nh) | |
Constructor. More... | |
bool | deinitialize () |
Clears the subscribers. initialized will now return false. More... | |
bool | initialize (const std::string &rgb_image_topic, const std::string &depth_image_topic, const std::string &cam_info_topic) |
Initialize the subscriber. More... | |
bool | initialized () |
Check if the client is initialized. nextImage will not return an image if client is not initialized. More... | |
virtual | ~ClientROSBase () |
Destructor. More... | |
Protected Attributes | |
ros::CallbackQueue | cb_queue_ |
![]() | |
image_geometry::PinholeCameraModel | cam_model_ |
Image * | image_ptr_ |
image_ptr_ Pointer to image. Image could be provided by reference or the pointer will be wrapped in a shared_ptr. Either this class will never take ownership. More... | |
bool | new_image_ |
new_image_ Track if image is updated in a callback. More... | |
ros::NodeHandle | nh_ |
ros::Subscriber | sub_cam_info_ |
std::unique_ptr< message_filters::Subscriber< sensor_msgs::Image > > | sub_depth_sync_ |
std::unique_ptr< message_filters::Subscriber< sensor_msgs::Image > > | sub_rgb_sync_ |
std::unique_ptr< message_filters::Synchronizer< RGBDApproxPolicy > > | sync_ |
Additional Inherited Members | |
![]() | |
void | camInfoCallback (const sensor_msgs::CameraInfoConstPtr &cam_info_msg) |
Callback for CameraInfo, will unsubscribe after succesfully receiving first message. More... | |
bool | imageCallback (const sensor_msgs::ImageConstPtr &rgb_image_msg, const sensor_msgs::ImageConstPtr &depth_image_msg) |
Callback for synched rgb and depth image. More... | |
Client which subscribes to regular ROS image topics.
Definition at line 31 of file client_ros.h.
rgbd::ClientROS::ClientROS | ( | ) |
Constructor.
Definition at line 17 of file client_ros.cpp.
|
virtual |
Destructor.
Definition at line 23 of file client_ros.cpp.
bool rgbd::ClientROS::initialize | ( | const std::string & | rgb_image_topic, |
const std::string & | depth_image_topic, | ||
const std::string & | cam_info_topic | ||
) |
Initialize the subscriber.
rgb_image_topic | topic name of the rgb image; topic will still be resolved. |
depth_image_topic | topic name of the depth image; topic will still be resolved. |
cam_info_topic | topic name of the camera info; topic will still be resolved. |
Definition at line 29 of file client_ros.cpp.
ImagePtr rgbd::ClientROS::nextImage | ( | ) |
Get a new Image. If no new image has been received since the last call, The ImagePtr will be a nullptr.
Definition at line 53 of file client_ros.cpp.
bool rgbd::ClientROS::nextImage | ( | Image & | image | ) |
Get a new Image. If no new image has been received since the last call, no image will be written and false will be returned.
image | Image reference which will be written. |
Definition at line 43 of file client_ros.cpp.
|
protected |
Definition at line 71 of file client_ros.h.