前提・実現したい
findCounter関数を用い、複数の図形に対し重心計算を行いたいのですが、どこにfor文を入れて繰り返し処理を行えばよいかわかりません。
図形が複数存在する場合、複数の重心が計算されず、1つの重心が計算されます。
該当のソースコード
Python
1import cv2 2import numpy as np 3import csv 4 5threshold=0 6lower_S=np.array([0,0,20]) 7upper_S=np.array([180,83,255]) 8lower_V=np.array([0,0,94]) 9upper_V=np.array([180,255,255]) 10 11picture="026537.jpg" 12img= cv2.imread( picture) 13# hsv色空間に変換 14hsv = cv2.cvtColor(img,cv2.COLOR_BGR2HSV) 15#mask処理 16img_mask1=cv2.inRange(hsv,lower_S,upper_S) 17img_mask2=cv2.inRange(hsv,lower_V,upper_V) 18img_mask=cv2.bitwise_or(img_mask1,img_mask2) 19img_masked=cv2.bitwise_and(img,img,mask=img_mask) 20#grayscale変換 21dst = cv2.cvtColor(img_masked,cv2.COLOR_BGR2GRAY) 22#輪郭検出 23image,contours =cv2.findContours(dst,cv2.RETR_EXTERNAL,cv2.CHAIN_APPROX_SIMPLE) 24#面積計算 25areas = np.array(list(map(cv2.contourArea,contours))) 26max_idx = np.argmax(areas) 27max_area = areas[max_idx] 28result = cv2.moments(contours[max_idx]) 29x = int(result["m10"]/result["m00"]) 30y = int(result["m01"]/result["m00"]) 31coordination=([x],[y]) 32#CSVファイル作成 33with open('Cordinations.csv','a',newline="") as f: 34 writer=csv.writer(f) 35 writer.writerow([x,y]) 36 f.close()
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。