user966890
user966890

Reputation: 205

Circle Detection

I need help developing a circle detection algorithm to detect snooker balls. Does anyone know any algorithms that can be implemented in C and open cv? I'm having trouble getting this done

Upvotes: 0

Views: 1309

Answers (1)

Daniel Trebbien
Daniel Trebbien

Reputation: 39208

OpenCV 2.3 comes with HoughCircles. The C++ API for OpenCV 2.1 also implements the function: http://opencv.willowgarage.com/documentation/cpp/imgproc_feature_detection.html#HoughCircles

Upvotes: 3

Related Questions