テンプレートマッチングにより検出した領域を切り取って保存したいです。
下記のコードでresult = fname_img1[top_left,bottom_right]
という箇所がありますがこのままでは
TypeError: string indices must be integers
というエラーが出てしまいます。
調べるとインデックスは数値でアクセスしなければならないのに文字を記入したために生じたエラーということが分かりました。
しかし、[top_left,bottom_right]の箇所をどのように数値に書き換えればよいかわかりません。
ご教示よろしくお願いいたします。
from
1drive.mount('/content/drive') 2import cv2 3import numpy as np 4 5#画像をグレースケールで読み込む 6 7fname_img1='/content/drive/My Drive/template/A/(1).jpg' 8fname_img2='/content/drive/My Drive/template/ave/result.jpg' 9 10img = cv2.imread(fname_img1, 0) 11temp = cv2.imread(fname_img2, 0) 12 13#マッチングテンプレートを実行 14match_result = cv2.matchTemplate(img, temp, cv2.TM_CCOEFF_NORMED) 15 16#類似度の設定(0~1) 17threshold = 0.1 18 19#検出結果から検出領域の位置を取得 20loc=np.where(match_result >= threshold) 21 22#検出領域を四角で囲んで保存 23w, h = temp.shape[::-1] 24for top_left in zip(*loc[::-1]): 25 bottom_right = (top_left[0] + w, top_left[1] + h) 26 result = fname_img1[top_left,bottom_right] 27#保存 28#result = cv2.imread(fname_img1) 29#height = img.shape[0] 30#width = img.shape[1] 31#result = cv2.resize(img , (int(width*1.0), int(height*1.0))) 32#cv2.rectangle(result,top_left, bottom_right, (255, 0, 0), 10) 33 34 35cv2.imwrite('/content/drive/My Drive/template/'+"(21).jpg", result) 36
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/09 05:45