Commit 4836a496 authored by Jinhan Lee's avatar Jinhan Lee

Add a group ximgproc_fast_line_detector

parent a7dada15
...@@ -64,6 +64,8 @@ i.e. algorithms which somehow takes into account pixel affinities in natural ima ...@@ -64,6 +64,8 @@ i.e. algorithms which somehow takes into account pixel affinities in natural ima
@defgroup ximgproc_superpixel Superpixels @defgroup ximgproc_superpixel Superpixels
@defgroup ximgproc_segmentation Image segmentation @defgroup ximgproc_segmentation Image segmentation
@defgroup ximgproc_fast_line_detector Fast line detector
@} @}
*/ */
......
...@@ -12,7 +12,7 @@ namespace cv ...@@ -12,7 +12,7 @@ namespace cv
namespace ximgproc namespace ximgproc
{ {
//! @addtogroup ximgproc_feature //! @addtogroup ximgproc_fast_line_detector
//! @{ //! @{
/** @brief Class implementing the FLD (Fast Line Detector) algorithm described /** @brief Class implementing the FLD (Fast Line Detector) algorithm described
...@@ -75,7 +75,7 @@ CV_EXPORTS_W Ptr<FastLineDetector> createFastLineDetector( ...@@ -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, double _canny_th1 = 50.0, double _canny_th2 = 50.0, int _canny_aperture_size = 3,
bool _do_merge = false); bool _do_merge = false);
//! @} ximgproc_feature //! @} ximgproc_fast_line_detector
} }
} }
#endif #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