Skip to content

Commit adde79d

Browse files
authored
Update edge_drawing.hpp
1 parent fcd5c7d commit adde79d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 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
@@ -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

0 commit comments

Comments
 (0)