@@ -37,7 +37,7 @@ class CV_EXPORTS_W EdgeDrawing : public Algorithm
37
37
CV_PROP_RW bool PFmode;
38
38
/* * @brief indicates the operator used for gradient calculation.
39
39
40
- one of the flags cv::ximgproc::EdgeDrawing::GradientOperator. Default value is PREWITT
40
+ one of the flags cv::ximgproc::EdgeDrawing::GradientOperator. Default value is PREWITT
41
41
*/
42
42
CV_PROP_RW int EdgeDetectionOperator;
43
43
// ! threshold value of gradiential difference between pixels. Used to create gradient image. Default value is 20
@@ -48,8 +48,8 @@ class CV_EXPORTS_W EdgeDrawing : public Algorithm
48
48
CV_PROP_RW int ScanInterval;
49
49
/* * @brief minimun connected pixels length processed to create an edge segment.
50
50
51
- in gradient image, minimum connected pixels length processed to create an edge segment. pixels having upper value than GradientThresholdValue
52
- will be processed. Default value is 10
51
+ in gradient image, minimum connected pixels length processed to create an edge segment. pixels having upper value than GradientThresholdValue
52
+ will be processed. Default value is 10
53
53
*/
54
54
CV_PROP_RW int MinPathLength;
55
55
// ! sigma value for internal GaussianBlur() function. Default value is 1.0
@@ -59,11 +59,11 @@ class CV_EXPORTS_W EdgeDrawing : public Algorithm
59
59
CV_PROP_RW bool NFAValidation;
60
60
// ! minimun line length to detect.
61
61
CV_PROP_RW int MinLineLength;
62
- // ! Default value is 6.0
62
+ // ! Default value is 6.0
63
63
CV_PROP_RW double MaxDistanceBetweenTwoLines;
64
- // ! Default value is 1.0
64
+ // ! Default value is 1.0
65
65
CV_PROP_RW double LineFitErrorThreshold;
66
- // ! Default value is 1.3
66
+ // ! Default value is 1.3
67
67
CV_PROP_RW double MaxErrorThreshold;
68
68
69
69
void read (const FileNode& fn);
@@ -88,7 +88,7 @@ class CV_EXPORTS_W EdgeDrawing : public Algorithm
88
88
*/
89
89
CV_WRAP virtual void getGradientImage (OutputArray dst) = 0;
90
90
91
- /* * @brief returns Edge Segments prepared by detectEdges() function.
91
+ /* * @brief Returns std::vector<std::vector<Point>> of detected edge segments, see detectEdges()
92
92
*/
93
93
CV_WRAP virtual std::vector<std::vector<Point> > getSegments () = 0;
94
94
@@ -111,7 +111,7 @@ class CV_EXPORTS_W EdgeDrawing : public Algorithm
111
111
/* * @brief sets parameters.
112
112
113
113
this function is meant to be used for parameter setting in other languages than c++ like python.
114
- @param parameters
114
+ @param parameters
115
115
*/
116
116
CV_WRAP void setParams (const EdgeDrawing::Params& parameters);
117
117
virtual ~EdgeDrawing () { }
0 commit comments