File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -288,3 +288,16 @@ @article{PersoonFu1977
288
288
year ={ 1977} ,
289
289
publisher ={ IEEE Computer Society}
290
290
}
291
+
292
+ @misc {Segleafvein ,
293
+ title = { Best Way of Segmenting Veins in Leaves.} ,
294
+ author = { Niki Estner} ,
295
+ url = { https://dsp.stackexchange.com/a/1735}
296
+ }
297
+
298
+ @misc {M_RF ,
299
+ title = { Ridge Filter Mathematica} ,
300
+ author = { Wolfram Mathematica} ,
301
+ url = { http://reference.wolfram.com/language/ref/RidgeFilter.html}
302
+
303
+ }
Original file line number Diff line number Diff line change 5
5
/*
6
6
Ridge Detection Filter.
7
7
OpenCV port by : Kushal Vyas (@kushalvyas), Venkatesh Vijaykumar(@venkateshvijaykumar)
8
+ Adapted from Niki Estner's explaination of RidgeFilter.
8
9
*/
9
10
10
11
#ifndef __OPENCV_XIMGPROC_RIDGEFILTER_HPP__
@@ -20,7 +21,8 @@ namespace cv { namespace ximgproc {
20
21
/* * @brief Applies Ridge Detection Filter to an input image.
21
22
Implements Ridge detection similar to the one in [Mathematica](http://reference.wolfram.com/language/ref/RidgeFilter.html)
22
23
using the eigen values from the Hessian Matrix of the input image using Sobel Derivatives.
23
- Additional refinement can be done using Skeletonization and Binarization.
24
+ Additional refinement can be done using Skeletonization and Binarization. Adapted from @cite segleafvein and @cite M_RF
25
+
24
26
*/
25
27
class CV_EXPORTS_W RidgeDetectionFilter : public Algorithm
26
28
{
You can’t perform that action at this time.
0 commit comments