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