contrib/brl/bseg/vpro/vpro_ihs_process.h
Go to the documentation of this file.
00001 // This is brl/bseg/vpro/vpro_ihs_process.h
00002 #ifndef vpro_ihs_process_h_
00003 #define vpro_ihs_process_h_
00004 //----------------------------------------------------------------------------
00005 //:
00006 // \file
00007 // \brief Displays color information derived from IHS encoding as a video stream.
00008 // \author
00009 //   J.L. Mundy
00010 //
00011 // \verbatim
00012 //  Modifications:
00013 //   J.L. Mundy January, 8, 2004    Initial version.
00014 // \endverbatim
00015 //---------------------------------------------------------------------------
00016 #include <vpro/vpro_video_process.h>
00017 
00018 class vpro_ihs_process : public vpro_video_process
00019 {
00020  public:
00021   vpro_ihs_process();
00022   ~vpro_ihs_process();
00023   virtual process_data_type get_output_type() const { return IMAGE; }
00024 
00025   //: track to next frame
00026   virtual bool execute();
00027   virtual bool finish() { return true; }
00028  private:
00029   //members
00030   bool failure_;
00031 };
00032 
00033 #endif // vpro_ihs_process_h_