contrib/oxl/osl/osl_canny_ox_params.cxx
Go to the documentation of this file.
00001 // This is oxl/osl/osl_canny_ox_params.cxx
00002 #ifdef VCL_NEEDS_PRAGMA_INTERFACE
00003 #pragma implementation
00004 #endif
00005 //:
00006 // \file
00007 // \author fsm
00008 
00009 #include "osl_canny_ox_params.h"
00010 
00011 osl_canny_ox_params::osl_canny_ox_params() 
00012   : sigma(1.0f)
00013   , max_width(50)
00014   , gauss_tail(0.0001f)
00015   , low(2.0f)
00016   , high(12.0f)
00017   , edge_min(60)
00018   , min_length(10)
00019   , border_size(2)
00020   , border_value(0.0f)
00021   , scale(5.0f)
00022   , follow_strategy(2)
00023   , join_flag(true)
00024   , junction_option(0)
00025   , verbose(true)
00026 {
00027 }
00028 
00029 
00030 osl_canny_ox_params::~osl_canny_ox_params() {
00031 }