enter image description here

In this image I need to detect the vehicle rims and measure the pixel length of the rims via image processing. I think I should follow the circular Hough Transform for circles. can you guys please advice me which steps to follow to acquire the width of the rims? ex(gray scale->edge detection, or any other comment on this )

link|improve this question

64% accept rate
2  
Hough transform is a good option for this task. Before that, you need to tranform your image in gray levels and perform a edge detection. But what is your question? How to do those operations? – Simon Oct 20 '11 at 8:56
My advice on which steps you should follow: 1) Google/Wikipedia color to grayscale conversion. 2) Google/Wikipedia edge detection. 3) Google/Wikipedia Hough Circle Transform. 4) Actually try to perform steps 1-3 in code, by yourself. 5) Come back here and ask a concrete question -- currently, it sounds like you just want someone to do your hard work for you. – misha Oct 20 '11 at 9:50
thanx for the answer, yeah you kind of right! i will eork on my skills . thank you again. – visuddha Oct 20 '11 at 20:28
feedback

1 Answer

Here is how I would do this in Mathematica:

enter image description here

Here you have a direct measurement, off by 1 Pixel.

enter image description here

Edit

Here you have it applied to your other question

Question: what are my research areas for image processing project?

enter image description here

link|improve this answer
As always nice answer. – Ross Oct 23 '11 at 16:39
@Ross Thanks! In fact this method works only for very homogeneous backgrounds. The general case is much more difficult. – belisarius Oct 23 '11 at 18:25
feedback

Your Answer

 
or
required, but never shown

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