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 )
Asked
Active
Viewed 2,018 times
2
-
2Hough 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 Bergot Oct 20 '11 at 08:56
-
1My 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. – mpenkov Oct 20 '11 at 09:50
-
thanx for the answer, yeah you kind of right! i will eork on my skills . thank you again. – Visuddha Karunaratne Oct 20 '11 at 20:28
1 Answers
7
Here is how I would do this in Mathematica:
Here you have a direct measurement, off by 1 Pixel.
Edit
Here you have it applied to your other question
Question: what are my research areas for image processing project?

Community
- 1
- 1

Dr. belisarius
- 60,527
- 15
- 115
- 190
-
@Ross Thanks! In fact this method works only for very homogeneous backgrounds. The general case is much more difficult. – Dr. belisarius Oct 23 '11 at 18:25