Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a matrix (here's the plot: http://i.imgur.com/GNIWp.png) and I'd like find out, where the edges are.

Here's a picture of the same plot with lines which indicate the edges: http://i.imgur.com/yffGh.png

Is there any algorithm to detect these edges?

share|improve this question

1 Answer

There are plenty of fairly simple edge detection algorithms that aren't too hard to implement, such as the Canny edge detector. Bear in mind that a lot of these algorithms have different strengths and weaknesses, so I'd suggest you read up on the different approaches and decide based on what you're trying to do.

Alternatively, if you only want the functionality and aren't interested in actually implementing it, you can use the Pixtastic image processing library.

Also, possible duplicate question here (though that question is more to do with background removal).

share|improve this answer
Thank you for your post. But I don't need a library that does image processing. I think this is more a mathematical problem as i have x-y coordinates than a image problem – sebslomski Sep 30 '11 at 9:05
An image is a matrix. Your problem is very well solved using the techniques Alex pointed out. – kigurai Sep 30 '11 at 9:15
@user972654 as kigurai said, edge detection algorithms work because images are represented as matrices of integers (e.g., 0 and 1s for pure black and white, 4 values 0-255 for RGB + alpha images). You'll want to find where edges cross each other (i.e., where there's a change in direction/gradient) – Alex Sep 30 '11 at 9:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.