Jafar
|
00001 #ifndef COPYPREDICTOR_HPP 00002 #define COPYPREDICTOR_HPP 00003 00004 /* $Id$ */ 00005 00006 #include <dseg/Predictor.hpp> 00007 00008 namespace jafar { 00009 namespace dseg { 00014 class CopyPredictor : public Predictor { 00015 public: 00016 CopyPredictor( double _posError, double _angleError ); 00017 virtual SegmentHypothesis* predictionFor( const SegmentHypothesis* ) const; 00018 private: 00019 double m_posError, m_angleError; 00020 }; 00021 } 00022 } 00023 00024 #endif //COPYPREDICTOR_HPP
Generated on Wed Oct 15 2014 00:37:18 for Jafar by doxygen 1.7.6.1 |