Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Implementation of the ridge detection filter

I am using the ridge detection filter from opencv contrib. This filter uses the eigen values from the Hessian Matrix of the input image using Sobel Derivative. But in the the implementation of the filter, i see:

Mat rootex;
rootex = (sb2xx +  (sb2xy + sb2xy + sb2xy + sb2xy)  - (sbxxyy + sbxxyy) + sb2xy );

But as i compute, it musts be:

Mat rootex;
rootex = (sb2xx +  (sb2xy + sb2xy + sb2xy + sb2xy)  - (sbxxyy + sbxxyy) + sb2yy );

Please check it.