OpenCV 4.5.3(日本語機械翻訳)
fast_line_detector.hpp
1 // This file is part of OpenCV project.
2 // It is subject to the license terms in the LICENSE file found in the top-level directory
3 // of this distribution and at http://opencv.org/license.html.
4
5 #ifndef __OPENCV_FAST_LINE_DETECTOR_HPP__
6 #define __OPENCV_FAST_LINE_DETECTOR_HPP__
7
8 #include <opencv2/core.hpp>
9
10 namespace cv
11{
12 namespace ximgproc
13{
14
17
23
24 class CV_EXPORTS_W FastLineDetector : public Algorithm
25{
26 public:
44 CV_WRAP virtual void detect(InputArray image, OutputArray lines) = 0;
45
54 CV_WRAP virtual void drawSegments(InputOutputArray image, InputArray lines,
55 bool draw_arrow = false, Scalar linecolor = Scalar(0, 0, 255), int linethickness = 1) = 0;
56
57 virtual ~FastLineDetector() { }
58};
59
72 int length_threshold = 10, float distance_threshold = 1.414213562f,
73 double canny_th1 = 50.0, double canny_th2 = 50.0, int canny_aperture_size = 3,
74 bool do_merge = false);
75
77}
78}
79 #endif
Definition: mat.hpp:386
This type is very similar to InputArray except that it is used for input/output and output function p...
Definition: mat.hpp:295
This is a base class for all more or less complex algorithms in OpenCV
Definition: core.hpp:3091
Class implementing the FLD (Fast Line Detector) algorithm described in .
Definition: fast_line_detector.hpp:25
CV_EXPORTS_W Ptr< FastLineDetector > createFastLineDetector(int length_threshold=10, float distance_threshold=1.414213562f, double canny_th1=50.0, double canny_th2=50.0, int canny_aperture_size=3, bool do_merge=false)
Creates a smart pointer to a FastLineDetector object and initializes it
cv
"black box" representation of the file storage associated with a file on disk.
Definition: aruco.hpp:75
Definition: cvstd_wrapper.hpp:74