#include <stereo_processor.hpp>
Protected Member Functions | |
virtual void | imageCallback (const sensor_msgs::ImageConstPtr &l_image_msg, const sensor_msgs::ImageConstPtr &r_image_msg, const sensor_msgs::CameraInfoConstPtr &l_info_msg, const sensor_msgs::CameraInfoConstPtr &r_info_msg)=0 |
StereoProcessor (const std::string &transport) | |
Private Types | |
typedef message_filters::sync_policies::ApproximateTime < sensor_msgs::Image, sensor_msgs::Image, sensor_msgs::CameraInfo, sensor_msgs::CameraInfo > | ApproximatePolicy |
typedef message_filters::Synchronizer < ApproximatePolicy > | ApproximateSync |
typedef message_filters::sync_policies::ExactTime < sensor_msgs::Image, sensor_msgs::Image, sensor_msgs::CameraInfo, sensor_msgs::CameraInfo > | ExactPolicy |
typedef message_filters::Synchronizer < ExactPolicy > | ExactSync |
Private Member Functions | |
void | checkInputsSynchronized () |
void | dataCb (const sensor_msgs::ImageConstPtr &l_image_msg, const sensor_msgs::ImageConstPtr &r_image_msg, const sensor_msgs::CameraInfoConstPtr &l_info_msg, const sensor_msgs::CameraInfoConstPtr &r_info_msg) |
Static Private Member Functions | |
static void | increment (int *value) |
Private Attributes | |
int | all_received_ |
boost::shared_ptr < ApproximateSync > | approximate_sync_ |
ros::WallTimer | check_synced_timer_ |
boost::shared_ptr< ExactSync > | exact_sync_ |
int | left_info_received_ |
message_filters::Subscriber < sensor_msgs::CameraInfo > | left_info_sub_ |
int | left_received_ |
image_transport::SubscriberFilter | left_sub_ |
int | queue_size_ |
int | right_info_received_ |
message_filters::Subscriber < sensor_msgs::CameraInfo > | right_info_sub_ |
int | right_received_ |
image_transport::SubscriberFilter | right_sub_ |
This is an abstract base class for stereo image processing nodes. It handles synchronization of input topics (approximate or exact) and checks for sync errors. To use this class, subclass it and implement the imageCallback() method.
Definition at line 23 of file stereo_processor.hpp.
typedef message_filters::sync_policies::ApproximateTime<sensor_msgs::Image, sensor_msgs::Image, sensor_msgs::CameraInfo, sensor_msgs::CameraInfo> fovis_ros::StereoProcessor::ApproximatePolicy [private] |
Definition at line 32 of file stereo_processor.hpp.
typedef message_filters::Synchronizer<ApproximatePolicy> fovis_ros::StereoProcessor::ApproximateSync [private] |
Definition at line 34 of file stereo_processor.hpp.
typedef message_filters::sync_policies::ExactTime<sensor_msgs::Image, sensor_msgs::Image, sensor_msgs::CameraInfo, sensor_msgs::CameraInfo> fovis_ros::StereoProcessor::ExactPolicy [private] |
Definition at line 31 of file stereo_processor.hpp.
typedef message_filters::Synchronizer<ExactPolicy> fovis_ros::StereoProcessor::ExactSync [private] |
Definition at line 33 of file stereo_processor.hpp.
fovis_ros::StereoProcessor::StereoProcessor | ( | const std::string & | transport | ) | [inline, protected] |
Constructor, subscribes to input topics using image transport and registers callbacks.
transport | The image transport to use |
Definition at line 96 of file stereo_processor.hpp.
void fovis_ros::StereoProcessor::checkInputsSynchronized | ( | ) | [inline, private] |
Definition at line 62 of file stereo_processor.hpp.
void fovis_ros::StereoProcessor::dataCb | ( | const sensor_msgs::ImageConstPtr & | l_image_msg, |
const sensor_msgs::ImageConstPtr & | r_image_msg, | ||
const sensor_msgs::CameraInfoConstPtr & | l_info_msg, | ||
const sensor_msgs::CameraInfoConstPtr & | r_info_msg | ||
) | [inline, private] |
Definition at line 49 of file stereo_processor.hpp.
virtual void fovis_ros::StereoProcessor::imageCallback | ( | const sensor_msgs::ImageConstPtr & | l_image_msg, |
const sensor_msgs::ImageConstPtr & | r_image_msg, | ||
const sensor_msgs::CameraInfoConstPtr & | l_info_msg, | ||
const sensor_msgs::CameraInfoConstPtr & | r_info_msg | ||
) | [protected, pure virtual] |
Implement this method in sub-classes
Implemented in fovis_ros::StereoOdometer.
static void fovis_ros::StereoProcessor::increment | ( | int * | value | ) | [inline, static, private] |
Definition at line 44 of file stereo_processor.hpp.
int fovis_ros::StereoProcessor::all_received_ [private] |
Definition at line 41 of file stereo_processor.hpp.
boost::shared_ptr<ApproximateSync> fovis_ros::StereoProcessor::approximate_sync_ [private] |
Definition at line 36 of file stereo_processor.hpp.
Definition at line 40 of file stereo_processor.hpp.
boost::shared_ptr<ExactSync> fovis_ros::StereoProcessor::exact_sync_ [private] |
Definition at line 35 of file stereo_processor.hpp.
int fovis_ros::StereoProcessor::left_info_received_ [private] |
Definition at line 41 of file stereo_processor.hpp.
message_filters::Subscriber<sensor_msgs::CameraInfo> fovis_ros::StereoProcessor::left_info_sub_ [private] |
Definition at line 30 of file stereo_processor.hpp.
int fovis_ros::StereoProcessor::left_received_ [private] |
Definition at line 41 of file stereo_processor.hpp.
Definition at line 29 of file stereo_processor.hpp.
int fovis_ros::StereoProcessor::queue_size_ [private] |
Definition at line 37 of file stereo_processor.hpp.
int fovis_ros::StereoProcessor::right_info_received_ [private] |
Definition at line 41 of file stereo_processor.hpp.
message_filters::Subscriber<sensor_msgs::CameraInfo> fovis_ros::StereoProcessor::right_info_sub_ [private] |
Definition at line 30 of file stereo_processor.hpp.
int fovis_ros::StereoProcessor::right_received_ [private] |
Definition at line 41 of file stereo_processor.hpp.
Definition at line 29 of file stereo_processor.hpp.