Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   File Members   Related Pages  

recognizer.h

Go to the documentation of this file.
00001 #ifndef RECOGNIZER_H
00002 #define RECOGNIZER_H
00003 
00004 
00005 #include "csu_recognizer.h"
00006 #include "common.h" 
00007 
00008 class recognizer_filter: public Filter
00009 {
00010 public:
00011   recognizer_filter(string fileName);
00012   
00013   recognizer_filter();
00014 
00015   
00016   virtual bool filter_frame(FrameClass & frame);
00017   virtual void property_changed();
00018   
00019 private:
00020   string filename;
00021   csu_recognizer * rec;
00022   bool is_set;
00023   string box_name;
00024 };
00025 
00026 
00027 
00028 
00029 #ifdef DYNAMIC_LINK
00030 
00031 extern "C"{
00032   Filter * create_instance();
00033 #ifndef NO_GUI
00034   GdkPixmap *create_icon(GtkWidget *drawing_area);
00035 #endif
00036 }
00037 
00038 #endif
00039 
00040 #endif

Generated on Wed Apr 23 10:42:34 2003 for BioFilter by doxygen1.2.14 written by Dimitri van Heesch, © 1997-2002