How to detect larger corners in an image?

4 views (last 30 days)
Hi,
I am having trouble understanding how to use "corner". An image of my problem can be found here:
Basically, I'm picking up lots of speckles in my photo, but not a lot of what I'd consider to be corners. Based on my understanding of how corner detection algorithms work, I think I'd like the area used to compare the pixel to it's neighbors to be larger (but I could be wrong). How is this accomplished? Thanks in advance!
-Jen

Accepted Answer

Anand
Anand on 20 Jun 2013
I'd suggest trying to play around with the 'FilterCoefficients' and 'QualityLevel' parameters.
Increasing the kernel width and smoothing on the kernel has the effect of blurring out corners at smaller scales.
Increasing 'QualityLevel' would mean the minimum corner strength increases.
Post the actual image if that doesn't work.
  5 Comments
John
John on 20 Jun 2013
Actually, after scaling down, finding corners, and scaling back up, I can then zoom in around that point to do a more refined search for the corner (ie using hough at that point, since the lines are nearly linear when zoomed in)
Anand
Anand on 21 Jun 2013
Great. That's sounds like a neat approach.

Sign in to comment.

More Answers (1)

Image Analyst
Image Analyst on 20 Jun 2013
Try adjusting some of the optional input parameters of corner(). If that doesn't work, filter out the bad ones with bwarea(), or prefilter the image by thresholding it.
Second option is to use hough() or houghlines() and look for where lines intersect.
Third option is to use bwboundaries() and find the kinks in the boundary using the FAQ: http://matlab.wikia.com/wiki/FAQ#How_do_I_find_.22kinks.22_in_a_curve.3F
  3 Comments
Image Analyst
Image Analyst on 20 Jun 2013
Your first statement is not true. You get the lines then you have to figure out where lines that are perpendicular to each other intersect. The hough is just the first step and the intersection-finding is the second step.
I'm not sure why you want to use grayscale images and edge() (which I did not recommend), rather than binary images, bwboundaries(), and the FAQ code for finding kinks like I recommended.
John
John on 20 Jun 2013
No, hough doesn't work because it's not an intersection of lines, but an intersection of arcs and splines.
As for greyscale, the problem is that I'm trying to auto process a number of photos in variable light conditions. It's not been easy so far to find the right threshold to go to a BW image; if it could work off a greyscale then it would be looking for relative changes, which would be easier. It sounds like my original question might be answered, though, in that you can't increase the size of the "window" used for comparisons in corner()

Sign in to comment.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!