Hello!
I try to get the center of circles using Hough Circle algoritm from https://github.com/Itseez/opencv/blob/master/samples/cpp/houghcircles.cpp
but i need exactly coordinates .When i get those coordinates like
this
for( size_t i = 0; i < circles.size(); i++ )
{
Vec3i c = circles[i];
cout<
↧