python中circle函数圆心位置,python opencv-finding circle(Sun),图片中心的圆心坐标...

I am new here and a little bit newbie in programming.

I have one question. I have picture of Sun in bmp file and 16 bit. The picture look as white circle with black backround.

3eaccf54f0833c3f10d5ed012c0bfeb5.png

I want to find a circle and identify its center in x,y coordinates.

I have this script

import cv

import numpy as np

orig = cv.LoadImage('sun0016.bmp')

grey_scale = cv.CreateImage(cv.GetSize(orig), 8, 1)

processed = cv.CreateImage(cv.GetSize(orig), 8, 1)

cv.Smooth(orig, orig, cv.CV_GAUSSIAN, 5, 5)

cv.CvtColor(orig, grey_scale, cv.CV_RGB2GRAY)

cv.Erode(grey_scale, processed, None, 10)

cv.Dilate(processed, processed, None, 10)

cv.Canny(processed, processed, 5, 70, 3)

cv.Smooth(processed, processed, cv.CV_GAUSSIAN, 15, 15)

storage = cv.CreateMat(orig.width, 1, cv.CV_32FC3)

cv.HoughCircles(processed, storage, cv.CV_HOUGH_GRADIENT, 1, 16.0, 10, 140)

for i in range(0, len(np.asarray(storage))):

print "circle #%d" %i

Radius = int(np.asarray(storage)[i][0][2])

x = int(np.asarray(storage)[i][0][0])

y = int(np.asarray(storage)[i][0][1])

center = (x, y)

print x,y

cv.Circle(orig, center, 1, cv.CV_RGB(0, 255, 0), 1, 8, 0)

cv.Circle(orig, center, Radius, cv.CV_RGB(255, 0, 0), 1, 8, 0)

cv.Circle(processed, center, 1, cv.CV_RGB(0, 0, 0), -1, 8, 0)

cv.Circle(processed, center, Radius, cv.CV_RGB(255, 0, 0), 3, 8, 0)

cv.ShowImage("sun0016", orig)

cv.ShowImage("processed", processed)

cv_key = cv.WaitKey(0)

And when I run this I find edge of Sun which is circle with center but very inaccurately.

Pls know you setting of parameters HoughCircles module for precise search circles.

Thanks

解决方案

here is solution of my problem

import numpy as np

import cv2

im = cv2.imread('sun0016.bmp')

height, width, depth = im.shape

print height, width, depth

thresh = 132

imgray = cv2.cvtColor(im,cv2.COLOR_BGR2GRAY)

blur = cv2.GaussianBlur(imgray,(5,5),0)

edges = cv2.Canny(blur,thresh,thresh*2)

contours, hierarchy = cv2.findContours(edges,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)

cnt = contours[0]

cv2.drawContours(im,contours,-1,(0,255,0),-1)

#centroid_x = M10/M00 and centroid_y = M01/M00

M = cv2.moments(cnt)

x = int(M['m10']/M['m00'])

y = int(M['m01']/M['m00'])

print x,y

print width/2.0,height/2.0

print width/2-x,height/2-y

cv2.circle(im,(x,y),1,(0,0,255),2)

cv2.putText(im,"center of Sun contour", (x,y), cv2.FONT_HERSHEY_SIMPLEX, 1, (0,0,255))

cv2.circle(im,(width/2,height/2),1,(255,0,0),2)

cv2.putText(im,"center of image", (width/2,height/2), cv2.FONT_HERSHEY_SIMPLEX, 1, (255,0,0))

cv2.imshow('contour',im)

cv2.waitKey(0)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值