Im searching for radius and the center coordinates of circle in a image. have already tried 2D Hough transform. but my circle radius is also a unknown. Im still a beginner to Computer vision so need guild lines and help for implementing three dimensional hough space.
feedback
|
|
You implement it just like 2D Hough space, but with an additional parameter. Pseudo code would look like this:
| |||
|
feedback
|
|
Thiton gives you the correct approach to formalize the problem. But then, you will run in other problems inherent to the hough transform:
If you are looking for a circle detection algorithm, you may have better options than the hough transform (google "Fast Circle Detection Using Gradient Pair Vectors" looks good to me) | |||
feedback
|