Skip to content

Commit 8014fda

Browse files
committed
Merge pull request #1727 from kushalvyas:rdf_refactor1
2 parents 39120af + 1612d99 commit 8014fda

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

modules/ximgproc/doc/ximgproc.bib

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,3 +288,16 @@ @article{PersoonFu1977
288288
year={1977},
289289
publisher={IEEE Computer Society}
290290
}
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+
}

modules/ximgproc/include/opencv2/ximgproc/ridgefilter.hpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
/*
66
Ridge Detection Filter.
77
OpenCV port by : Kushal Vyas (@kushalvyas), Venkatesh Vijaykumar(@venkateshvijaykumar)
8+
Adapted from Niki Estner's explaination of RidgeFilter.
89
*/
910

1011
#ifndef __OPENCV_XIMGPROC_RIDGEFILTER_HPP__
@@ -20,7 +21,8 @@ namespace cv { namespace ximgproc {
2021
/** @brief Applies Ridge Detection Filter to an input image.
2122
Implements Ridge detection similar to the one in [Mathematica](http://reference.wolfram.com/language/ref/RidgeFilter.html)
2223
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+
2426
*/
2527
class CV_EXPORTS_W RidgeDetectionFilter : public Algorithm
2628
{

0 commit comments

Comments
 (0)