i want to measure the circularity of circles (difference of the "circles" height and width or ellipse parameters). The circles are given in pictures as shown here:
After doing usual stuff like color2gray, thresholding and border detection, I get the following picture as shown:
With this, I already tried a lot of different things:
- List item Watershed with findContour (similar to this question) -> openCV detects the space between the circles as a closed contour and not the circles since they stick together not forming a closed contour
- same problem with fitEllipse. I get ellipses fitted on the black background contour and not in between.
- just trying to apply hough transforamtion (as in the code and the third picture shown) as well leads to strange results:
See the code here:
import sys
import cv2
import numpy
from scipy.ndimage import label
# Application entry point
#img = cv2.imread("02_adj_grey.jpg")
img = cv2.imread("fuss02.jpg")
# Pre-processing.
img_gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
cv2.imwrite("SO_0_gray.png", img_gray)
#_, img_bin = cv2.threshold(img_gray, 0, 255, cv2.THRESH_OTSU | cv2.THRESH_BINARY)
_, img_bin = cv2.threshold(img_gray, 170, 255, cv2.THRESH_BINARY)
cv2.imwrite("SO_1_threshold.png", img_bin)
#blur = cv2.GaussianBlur(img,(5,5),0)
img_bin = cv2.morphologyEx(img_bin, cv2.MORPH_CLOSE, numpy.ones((3, 3), dtype=int))
cv2.imwrite("SO_2_img_bin_morphoEx.png", img_bin)
border = img_bin - cv2.erode(img_bin, None)
cv2.imwrite("SO_3_border.png", border)
circles = cv2.HoughCircles(border,cv2.cv.CV_HOUGH_GRADIENT,50,80, param1=80,param2=40,minRadius=10,maxRadius=150)
print circles
cimg = img
for i in circles[0,:]:
# draw the outer circle
cv2.circle(cimg,(i[0],i[1]),i[2],(0,255,0),2)
# draw the center of the circle
cv2.circle(cimg,(i[0],i[1]),2,(0,0,255),3)
cv2.putText(cimg,str(i[0])+str(',')+str(i[1]), (i[0],i[1]), cv2.FONT_HERSHEY_SIMPLEX, 0.4, 255)
cv2.imwrite("SO_8_cimg.png", cimg)
Does anyone have an idea to improve my algorhitm or a complete different approach? I have been trying many different approaches but without luck so far. Thanks everyone for your help.
Here's my attempt at detecting the circles. In summary
V channel:
dist image:
temp image:
dist * temp image:
Thresholding template matched image:
Detecting circles as local maxima:
I did this in C++ as I'm most comfortable with it. I think you can easily convert this to python if you find this useful. Note that the above images are not to scale. Hope this helps.
EDIT: Added the Python version
C++:
Python: