hough_tracking_data.hh

00001 #ifndef __HOUGH_TRACKING_DATA_HH
00002 #define __HOUGH_TRACKING_DATA_HH
00003 
00004 #include "instance_data.hh"
00005 
00007 class hough_tracking_data: public instance_data
00008 {
00009  public:
00011   hough_tracking_data( int nb_thresh_failed ):
00012     nb_thresh_failed(nb_thresh_failed) {}
00014   int get_nb_thresh_failed(void) const { return nb_thresh_failed; }
00015  protected:
00017   int nb_thresh_failed;
00018 };
00019 
00021 typedef boost::shared_ptr< hough_tracking_data > hough_tracking_data_ptr;
00022 
00023 #endif

doxygen-1.4.5 documentation for micron-vision - Tue Jan 17 15:29:15 2006