OpenCV 4.5.3(日本語機械翻訳)
ridgefilter.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 /*
6 Ridge Detection Filter.
7 OpenCV port by : Kushal Vyas (@kushalvyas), Venkatesh Vijaykumar(@venkateshvijaykumar)
8 Adapted from Niki Estner's explanation of RidgeFilter.
9 */
10
11 #ifndef __OPENCV_XIMGPROC_RIDGEFILTER_HPP__
12 #define __OPENCV_XIMGPROC_RIDGEFILTER_HPP__
13
14 #include <opencv2/core.hpp>
15
16 namespace cv { namespace ximgproc {
17
20
27 class CV_EXPORTS_W RidgeDetectionFilter : public Algorithm
28{
29 public:
42 CV_WRAP static Ptr<RidgeDetectionFilter> create(int ddepth = CV_32FC1, int dx=1, int dy=1, int ksize = 3, int out_dtype=CV_8UC1, double scale = 1, double delta = 0, int borderType = BORDER_DEFAULT);
48 CV_WRAP virtual void getRidgeFilteredImage(InputArray _img, OutputArray out) = 0;
49};
50
52}} // namespace
53 #endif
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
Applies Ridge Detection Filter to an input image. Implements Ridge detection similar to the one in Ma...
Definition: ridgefilter.hpp:28
@ BORDER_DEFAULT
same as BORDER_REFLECT_101
Definition: base.hpp:277
cv
"black box" representation of the file storage associated with a file on disk.
Definition: aruco.hpp:75
Definition: cvstd_wrapper.hpp:74