contrib/oxl/osl/osl_canny_rothwell_params.h
Go to the documentation of this file.
00001 // This is oxl/osl/osl_canny_rothwell_params.h
00002 #ifndef osl_canny_rothwell_params_h_
00003 #define osl_canny_rothwell_params_h_
00004 //:
00005 // \file
00006 // \author fsm
00007 //
00008 // \verbatim
00009 //  Modifications
00010 //   10 Sep. 2004 Peter Vanroose  Inlined all 1-line methods in class decl
00011 // \endverbatim
00012 
00013 class osl_canny_rothwell_params
00014 {
00015  public:
00016   osl_canny_rothwell_params() : sigma(1.0), low(2.0), high(12.0), range(2.0), verbose(true) {}
00017   ~osl_canny_rothwell_params() {}
00018 
00019   float sigma;
00020   float low;
00021   float high;
00022   float range;
00023   bool verbose;
00024 };
00025 
00026 #endif // osl_canny_rothwell_params_h_