Lens distortion correction division model 1p
 All Classes Files Functions Variables
line_extraction.h
1 /*
2  Copyright (c) 2010-2013, AMI RESEARCH GROUP <lalvarez@dis.ulpgc.es>
3  License : CC Creative Commons "Attribution-NonCommercial-ShareAlike"
4  see http://creativecommons.org/licenses/by-nc-sa/3.0/es/deed.en
5  */
6 
7 #ifndef AMI_DLL_H
8  #define AMI_DLL_H
9 #endif
10 
11 #ifndef LINE_EXTRACTION_H
12 #define LINE_EXTRACTION_H
14 #include "image_primitives.h"
15 
16 double line_equation_distortion_extraction_improved_hough_quotient(
17  const subpixel_image_contours &subpixel_contours,
18  image_primitives &image_primitive,
19  float distance_point_line_max,
20  int nlineas = 30,
21  float angle_resolution = 0.1,
22  float distance_resolution = 1.,
23  float initial_distortion_parameter=0.0,
24  float final_distortion_parameter=1.,
25  float distortion_parameter_resolution=0.1,
26  float angle_point_orientation_max_difference=2.0,
27  bool lens_distortion_estimation=true,
29 
30 #endif
class to store image primitives (points,lines,ellipses and distortion model)
Class to store subpixel contours.
Definition: subpixel_image_contours.h:39
Class to store distortion model and basic methods.
Definition: lens_distortion_model.h:38
Subpixel image contour class AMI_DLL_H definition.
class to store the image primitives (points, lines, ellipses and ditortion model) ...
Definition: image_primitives.h:35