ellipses_parameters.cpp
Go to the documentation of this file.
00001 /***************************************************************************
00002  *   Copyright (C) 2014 by Markus Bader                                    *
00003  *   markus.bader@tuwien.ac.at                                             *
00004  *                                                                         *
00005  *   This program is free software; you can redistribute it and/or modify  *
00006  *   it under the terms of the GNU General Public License as published by  *
00007  *   the Free Software Foundation; either version 2 of the License, or     *
00008  *   (at your option) any later version.                                   *
00009  *                                                                         *
00010  *   This program is distributed in the hope that it will be useful,       *
00011  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
00012  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
00013  *   GNU General Public License for more details.                          *
00014  *                                                                         *
00015  *   You should have received a copy of the GNU General Public License     *
00016  *   along with this program; if not, write to the                         *
00017  *   Free Software Foundation, Inc.,                                       *
00018  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
00019  ***************************************************************************/
00020 
00021 
00022 #include <tuw_ellipses/ellipses.h>
00023 #include <tuw_ellipses/ellipses_defaults.h>
00024 
00025 using namespace tuw;
00026 
00027 EllipsesDetection::Parameters::Parameters()
00028 : debug(TUW_ELLIPSES_DEFAULT_DEBUG)
00029 , distorted_input(TUW_ELLIPSES_DEFAULT_DISTORTED_INPUT)
00030 , edge_detection( (EdgeDetection) TUW_ELLIPSES_DEFAULT_EDGE_DETECTION)
00031 , threshold_edge_detection1(TUW_ELLIPSES_DEFAULT_THRESHOLD_EDGE_DETECTION1)
00032 , threshold_edge_detection2(TUW_ELLIPSES_DEFAULT_THRESHOLD_EDGE_DETECTION2)
00033 , kernel_size_edge_detection(TUW_ELLIPSES_DEFAULT_KERNEL_SIZE_EDGE_DETECTION)
00034 , edge_linking((EdgeLinking) TUW_ELLIPSES_DEFAULT_EDGE_LINKING)
00035 , threshold_contour_min_points(TUW_ELLIPSES_DEFAULT_THRESHOLD_CONTROUR_MIN_POINTS)
00036 , threshold_polygon(TUW_ELLIPSES_DEFAULT_THRESHOLD_POLYGON)
00037 , filter_convex(TUW_ELLIPSES_DEFAULT_FILTER_CONVEX)
00038 , ellipse_redefinement(TUW_ELLIPSES_DEFAULT_ELLIPSE_REDEFINEMENT)
00039 , threshold_rotated_rect_ratio(TUW_ELLIPSES_DEFAULT_THRESHOLD_ROTATED_RECT_RATIO)
00040 , threshold_min_radius(TUW_ELLIPSES_DEFAULT_THRESHOLD_MIN_RADIUS)
00041 , threshold_max_radius(TUW_ELLIPSES_DEFAULT_THRESHOLD_MAX_RADIUS)
00042 , filter_rings(TUW_ELLIPSES_DEFAULT_FILTER_RING)
00043 , threshold_ring_center(TUW_ELLIPSES_DEFAULT_THRESHOLD_RING_CENTER)
00044 , threshold_ring_ratio(TUW_ELLIPSES_DEFAULT_THRESHOLD_RING_RATIO)
00045 , filter_contour_mean(TUW_ELLIPSES_DEFAULT_FILTER_CONTOUR_MEAN)
00046 , threshold_contour_mean(TUW_ELLIPSES_DEFAULT_THRESHOLD_CONTOUR_MEAN)
00047 , pose_estimation( (PoseEstimation) TUW_ELLIPSES_DEFAULT_ESTIMATE_POSE)
00048 , circle_diameter(TUW_ELLIPSES_DEFAULT_CIRCLE_DIAMETER){
00049 }


tuw_ellipses
Author(s):
autogenerated on Sun May 29 2016 02:50:24