Commit 92e59c72 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #897 from spacetrain:fast_line_detector

parents a2582d43 4836a496
......@@ -64,6 +64,8 @@ i.e. algorithms which somehow takes into account pixel affinities in natural ima
@defgroup ximgproc_superpixel Superpixels
@defgroup ximgproc_segmentation Image segmentation
@defgroup ximgproc_fast_line_detector Fast line detector
@}
*/
......
......@@ -12,7 +12,7 @@ namespace cv
namespace ximgproc
{
//! @addtogroup ximgproc_feature
//! @addtogroup ximgproc_fast_line_detector
//! @{
/** @brief Class implementing the FLD (Fast Line Detector) algorithm described
......@@ -75,7 +75,7 @@ CV_EXPORTS_W Ptr<FastLineDetector> createFastLineDetector(
double _canny_th1 = 50.0, double _canny_th2 = 50.0, int _canny_aperture_size = 3,
bool _do_merge = false);
//! @} ximgproc_feature
//! @} ximgproc_fast_line_detector
}
}
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment