import aircv
import cv2
class image_util:
# 判斷img_target是否在img_source內出現(xiàn),若存在則提供在圖片img_source中的位置
def match_pic(self,img_source, img_target):
"""
進行圖片的匹配
"""
imsrc = aircv.imread(img_source)
imobj = aircv.imread(img_target)
pos = aircv.find_template(imsrc, imobj, rgb=True, bgremove=True)
if not pos:
return None, None, None, None
left_top = pos['rectangle'][0] # 左上
right_bottom = pos['rectangle'][3] # 右下
circle_center_pos = pos['result'] # 中心點坐標
circle_center_pos = tuple(map(int, circle_center_pos))
confidence = pos['confidence'] # 準確率
print('準確率:', confidence)
#print(circle_center_pos) # 坐標位置
return circle_center_pos, left_top, right_bottom, confidence
# 在圖片img_source內標記出 中心點為pos 左上點為left_top 右下點為right_bottom 的空心圖形
def draw_box(self,img_source, pos, left_top, right_bottom, circle_radius, color, line_width):
"""
將小圖在大圖中圈出來
"""
if not pos:
print('pos is null')
return
# 框出圓形
cv2.circle(img_source, pos, circle_radius, color, line_width)
# 框出矩形
cv2.rectangle(img_source, left_top, right_bottom, color, line_width) # 左上缺脉,右下
# 創(chuàng)建窗口時候可以鼠標隨意拖動窗口改變大小
cv2.namedWindow("objDetect", 0)
# 設置長寬大小為640*480
cv2.resizeWindow("objDetect", 640, 480)
# 移動窗口到(200,200)坐標
cv2.moveWindow("objDetect", 200, 200)
cv2.imshow('objDetect', imsrc)
cv2.waitKey(0)
cv2.destroyAllWindows()
if __name__ == "__main__":
dir="D:/Program/Python/wg/yaomo"
iu = image_util()
img_source = dir+"/base.png"
img_target = dir+"/gj.png"
circle_center_pos, left_top, right_bottom, pos = iu.match_pic(img_source, img_target)
print(circle_center_pos[0],circle_center_pos[1])
# 畫線的屬性
circle_radius = 40
color = (255, 0, 0)
line_width = 5
imsrc = aircv.imread(img_source)
iu.draw_box(imsrc, circle_center_pos, left_top, right_bottom, circle_radius, color, line_width)
Python 圖片對比及標記
最后編輯于 :
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
- 文/潘曉璐 我一進店門蟹肘,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人俯树,你說我怎么就攤上這事帘腹。” “怎么了许饿?”我有些...
- 正文 為了忘掉前任,我火速辦了婚禮筒愚,結果婚禮上赴蝇,老公的妹妹穿的比我還像新娘。我一直安慰自己巢掺,他們只是感情好句伶,可當我...
- 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著陆淀,像睡著了一般考余。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上轧苫,一...
- 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼重罪!你這毒婦竟也來了樱哼?” 一聲冷哼從身側響起,我...
- 正文 年R本政府宣布相嵌,位于F島的核電站腿时,受9級特大地震影響,放射性物質發(fā)生泄漏饭宾。R本人自食惡果不足惜批糟,卻給世界環(huán)境...
- 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望捏雌。 院中可真熱鬧,春花似錦笆搓、人聲如沸性湿。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽肤频。三九已至,卻和暖如春算墨,著一層夾襖步出監(jiān)牢的瞬間宵荒,已是汗流浹背。 一陣腳步聲響...