contrib/brl/bseg/vpro/vpro_region_process.h
Go to the documentation of this file.
00001 // This is brl/bseg/vpro/vpro_region_process.h
00002 #ifndef vpro_region_process_h_
00003 #define vpro_region_process_h_
00004 //--------------------------------------------------------------------------------
00005 //:
00006 // \file
00007 // \brief Computes edges on each video frame
00008 // \author J.L. Mundy
00009 //
00010 // \verbatim
00011 //  Modifications
00012 //   J.L. Mundy - October 11, 2002 - Initial version.
00013 // \endverbatim
00014 //--------------------------------------------------------------------------------
00015 #include <sdet/sdet_detector_params.h>
00016 #include <vpro/vpro_video_process.h>
00017 
00018 class vpro_region_process : public vpro_video_process, public sdet_detector_params
00019 {
00020  public:
00021   vpro_region_process(sdet_detector_params & dp);
00022   ~vpro_region_process();
00023   virtual process_data_type get_output_type() const { return TOPOLOGY; }
00024   //: compute edges on the input image
00025   virtual bool execute();
00026   virtual bool finish() { return true; }
00027 };
00028 
00029 #endif // vpro_region_process_h_