Implementing ridge detection - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T18:10:21Zhttp://stackoverflow.com/feeds/question/585160http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/585160/implementing-ridge-detection2Implementing ridge detectionJesse Beder2009-02-25T08:29:58Z2009-02-28T07:18:00Z
<p>I'm trying to write a ridge detection algorithm, and all of the sources I've found seem to conflate edge detection with ridge detection. Right now, I've implemented the Canny edge detection algorithm, but it's not what I want: for example, given a single line in the image, it will effectively translate it to a double line of edges (since it will record <em>both</em> sides of the line) - I just want it to read the one line.</p>
<p>The <a href="http://en.wikipedia.org/wiki/Ridge_detection" rel="nofollow">wikipedia article</a> about ridge detection has a bunch of math, but this kind of this doesn't help me as a programmer (not that I'm averse to math, but it's not my field, and I don't understand how to translate their differential equations into code). Is there a good source for actually implementing this? Or, for that matter, is there a good open source implementation?</p>
<p>Edit: here's the simple example. We start with a simple line:</p>
<p><a href="http://img24.imageshack.us/my.php?image=linez.png" rel="nofollow"><img src="http://img24.imageshack.us/img24/8112/linez.th.png"></a><br><br></p>
<p>and run the Canny Algorithm to get:</p>
<p><a href="http://img12.imageshack.us/my.php?image=canny.png" rel="nofollow"><img src="http://img12.imageshack.us/img12/1317/canny.th.png"></a><br><br></p>
<p>(you can see that it's thicker here - if you click on the image, you'll see that it really is two adjacent lines with a blank in between)</p>
<p>Also, I'm writing in C++, but that shouldn't really matter. But I want to code the <em>algorithm</em>, not just write <code>SomePackage::findRidges()</code> and be done with it.</p>
http://stackoverflow.com/questions/585160/implementing-ridge-detection/585983#5859832Answer by Ian Hopkinson for Implementing ridge detectionIan Hopkinson2009-02-25T13:24:52Z2009-02-28T07:18:00Z<p>Maybe you need to think in terms of cleaning up the line you already have, rather than a Canny-like edge detection. It feels like you should be able to do something with <a href="http://en.wikipedia.org/wiki/Morphological%5Fimage%5Fprocessing" rel="nofollow"><strong>image morphology</strong></a>, in particular I'm thinking of the skeletonize and ultimate eroded points type operations. Used appropriately these should remove from your image any features which are not 'lines' - I believe they're implemented in Intel's OpenCV library. </p>
<p>You can recover a single line from your double line generated using the Canny filter using one dilate operation followed by 3 erodes (I tried it out in ImageJ) - this should also remove any edges.</p>
http://stackoverflow.com/questions/585160/implementing-ridge-detection/589749#5897491Answer by Mark for Implementing ridge detectionMark2009-02-26T09:13:34Z2009-02-26T09:13:34Z<p>I was going to suggest cleaning up your lines like Ian said, but if you don't want to do that, you might also look into doing some variant of a hough transform.</p>
<p><a href="http://en.wikipedia.org/wiki/Hough_transform" rel="nofollow">http://en.wikipedia.org/wiki/Hough_transform</a></p>
<p>You should be able to get the actual equation for the line from this, so you can make it as thin or as thick as you like. The only tricky part is figuring out where the line ends.</p>
<p>Here's the code I wrote for a hough transform a few years ago, written in MATLAB. I'm not sure how well it works anymore, but it should give you a general idea. It will find all the lines (not segments) in an image</p>
<pre><code>im = imread('cube.tif');
[bin1,bin2,bin3] = canny(im);
%% define constants
binary = bin1;
distStep = 10; % in pixels
angStep = 6; % in degrees
thresh = 50;
%% vote
maxDist = sqrt((size(binary,1))^2+(size(binary,2))^2);
angLoop = 0:angStep*pi/180:pi;
origin = size(binary)/2;
accum = zeros(ceil(maxDist/distStep)+1,ceil(360/angStep)+1);
for y=1:size(binary,2)
for x=1:size(binary,1)
if binary(x,y)
for t = angLoop
dx = x-origin(1);
dy = y-origin(2);
r = x*cos(t)+y*sin(t);
if r < 0
r = -r;
t = t + pi;
end
ri = round(r/distStep)+1;
ti = round(t*180/pi/angStep)+1;
accum(ri,ti) = accum(ri,ti)+1;
end
end
end
end
imagesc(accum);
%% find local maxima in accumulator
accumThresh = accum - thresh;
accumThresh(logical(accumThresh<0)) = 0;
accumMax = imregionalmax(accumThresh);
imagesc(accumMax);
%% calculate radius & angle of lines
dist = [];
ang = [];
for t=1:size(accumMax,2)
for r=1:size(accumMax,1)
if accumMax(r,t)
ang = [ang;(t-1)*angStep/180*pi];
dist = [dist;(r-1)*distStep];
end
end
end
scatter(ang,dist);
</code></pre>