python,Opencvを用いてHough変換により円の中心座標を取得しました。
その中心の色を調べたいのですが、
color = img[centers]
IndexError: arrays used as indices must be of integer (or boolean) type
というエラーが出てしまいます。
どうすれば良いですか?
python
1import cv2 2 3img = cv2.imread("c:/temp/test.jpg") 4 5# グレースケールに変換する。 6gray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY) 7grey_canny = cv2.Canny(img, 500.0, 300.0) 8 9# ハフ変換で円検出する。 10circles = cv2.HoughCircles( 11 grey_canny, cv2.HOUGH_GRADIENT, dp=1.0, minDist=28, param1=100, param2=9, minRadius=11,maxRadius=15 12) 13 14# 検出結果を描画する。 15if circles is not None: 16 circles = circles.squeeze(axis=0) # (1, NumCircles, 3) -> (NumCircles, 3) 17 18 19 20 21 for cx, cy, r in circles: 22 # 円の円周を描画する。 23 cv2.circle(img, (cx, cy), r, (0, 255, 0), 2) 24 # 円の中心を描画する。 25 cv2.circle(img, (cx, cy), 2, (0, 255, 0), 2) 26 27 28#円の中心座標を表示 29centers = circles[:, :2] 30print(centers) 31 32#円の中心の色を表示 33color = img[centers] 34print(f"Image[{centers}] = BGRA{color}") 35 36 37 38 39 40# 結果を保存する。 41cv2.imwrite("c:/temp/test1.jpg", img) 42cv2.imshow('img', img) 43cv2.waitKey(0) 44cv2.destroyAllWindows()
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/04 04:11
2020/11/04 04:18
2020/11/04 04:24