How to recognize elips like a circle
how can i detect black shape in the mid?
which way i follow ?
how can i detect black shape in the mid?
which way i follow ?
Asked: 2015-03-25 00:49:39 -0600
Seen: 155 times
Last updated: Mar 26 '15
Recognizing 3d scanned objects
Fish detection. Is haartraining a good approach ?
Object detection Rectangles Haartrained
Improve Object Detection Quality
cvApproxPoly alternative for OOP C++ (CV2)
Recognize an object from a flat background?
How to recognize face by geometric feature such as eyes,nose,mouth?
Not quite sure what you mean by this question, are you wanting to detect that black shape in the middle? And do you mean detecting shapes that aren't quite circular?
i want to need detect black shape in the middle which way to follow ?
if it is all the time black as it appears in the picture, then colour segmentation is the simplest way to go.
Look at this tutorial.
I think in this case
cv::threshold
,cv::findContours
andcv::fitEllipse
is your friend.For choosing right contours use
cv::areaContour
andcv::arcLength
to get circularity for example.