00001
00002
00003 #ifndef _TRANSLATION_PREDICTOR_HPP_
00004 #define _TRANSLATION_PREDICTOR_HPP_
00005
00006 #include <dseg/Predictor.hpp>
00007
00008 namespace jafar {
00009 namespace dseg {
00014 class TranslationPredictor : public Predictor {
00015 public:
00016 TranslationPredictor( double _xTranslation, double _yTranslation, double _translationError );
00017 virtual SegmentHypothesis* predictionFor( const SegmentHypothesis* ) const;
00018 private:
00019 double m_xTranslation, m_yTranslation, m_translationError;
00020 };
00021 }
00022 }
00023
00024 #endif