Skip to content

Commit 00b33cb

Browse files
committed
Update edge_drawing.hpp
1 parent fcd5c7d commit 00b33cb

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

modules/ximgproc/include/opencv2/ximgproc/edge_drawing.hpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class CV_EXPORTS_W EdgeDrawing : public Algorithm
3737
CV_PROP_RW bool PFmode;
3838
/** @brief indicates the operator used for gradient calculation.
3939
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
4141
*/
4242
CV_PROP_RW int EdgeDetectionOperator;
4343
//! 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
4848
CV_PROP_RW int ScanInterval;
4949
/** @brief minimun connected pixels length processed to create an edge segment.
5050
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
5353
*/
5454
CV_PROP_RW int MinPathLength;
5555
//! sigma value for internal GaussianBlur() function. Default value is 1.0
@@ -59,11 +59,11 @@ class CV_EXPORTS_W EdgeDrawing : public Algorithm
5959
CV_PROP_RW bool NFAValidation;
6060
//! minimun line length to detect.
6161
CV_PROP_RW int MinLineLength;
62-
//! Default value is 6.0
62+
//! Default value is 6.0
6363
CV_PROP_RW double MaxDistanceBetweenTwoLines;
64-
//! Default value is 1.0
64+
//! Default value is 1.0
6565
CV_PROP_RW double LineFitErrorThreshold;
66-
//! Default value is 1.3
66+
//! Default value is 1.3
6767
CV_PROP_RW double MaxErrorThreshold;
6868

6969
void read(const FileNode& fn);
@@ -88,7 +88,7 @@ class CV_EXPORTS_W EdgeDrawing : public Algorithm
8888
*/
8989
CV_WRAP virtual void getGradientImage(OutputArray dst) = 0;
9090

91-
/** @brief returns Edge Segments prepared by detectEdges() function.
91+
/** @brief Returns std::vector<std::vector<Point>> of detected edge segments, see detectEdges()
9292
*/
9393
CV_WRAP virtual std::vector<std::vector<Point> > getSegments() = 0;
9494

@@ -111,7 +111,7 @@ class CV_EXPORTS_W EdgeDrawing : public Algorithm
111111
/** @brief sets parameters.
112112
113113
this function is meant to be used for parameter setting in other languages than c++ like python.
114-
@param parameters
114+
@param parameters
115115
*/
116116
CV_WRAP void setParams(const EdgeDrawing::Params& parameters);
117117
virtual ~EdgeDrawing() { }

0 commit comments

Comments
 (0)