Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- port forwarding
- PYTHON
- ssh
- nmap
- STF_PortForwarding
- Materials
- centos
- ftp
- nGrinder
- kitura
- postgresql
- 28015
- perfect
- openpyxl
- appium
- SWIFT
- rethinkdb
- sshpass
- Jupyter Notebook
- 실행권한
- create table
- nohup
- ubuntu
- appium server
- GoCD
- postgres
- insert
- Jupyter
- STF
- mysql
Archives
- Today
- Total
don't stop believing
Template Matching in OpenCV 본문
template 이미지를 원본 이미지와 매칭 시키는 sample 입니다.
6가지의 template matching method를 비교해 보는 예제입니다.
원본 이미지는 twice 입니다.
template 이미지는 누군지 모르겠습니다. 복스럽게 생겼네요.
아래와 같이 작성하고 OpenCV가 여러 matching method를 사용해 원본 이미지에서 template 이미지를 찾게해 보겠습니다.
import cv2 import numpy as np from matplotlib import pyplot as plt # 원본 이미지 img = cv2.imread('twice.jpg',0) img2 = img.copy() # 찾으려는 이미지 template = cv2.imread('who-are-you.png',0) w, h = template.shape[::-1] # All the 6 methods for comparison in a list methods = ['cv2.TM_CCOEFF', 'cv2.TM_CCOEFF_NORMED', 'cv2.TM_CCORR', 'cv2.TM_CCORR_NORMED', 'cv2.TM_SQDIFF', 'cv2.TM_SQDIFF_NORMED'] for meth in methods: img = img2.copy() method = eval(meth) # Apply template Matching res = cv2.matchTemplate(img, template, method) min_val, max_val, min_loc, max_loc = cv2.minMaxLoc(res) # If the method is TM_SQDIFF or TM_SQDIFF_NORMED, take minimum if method in [cv2.TM_SQDIFF, cv2.TM_SQDIFF_NORMED]: top_left = min_loc else: top_left = max_loc bottom_right = (top_left[0] + w, top_left[1] + h) center = (top_left[0] + int(w/2), top_left[1] + int(h/2)) print(top_left, bottom_right, center) cv2.rectangle(img, top_left, bottom_right, 255, 2) cv2.circle(img, center, 3, 0, -1) plt.subplot(121),plt.imshow(res,cmap = 'gray') plt.title('Matching Result'), plt.xticks([]), plt.yticks([]) plt.subplot(122),plt.imshow(img,cmap = 'gray') plt.title('Detected Point'), plt.xticks([]), plt.yticks([]) plt.suptitle(meth) plt.show()
실행하면 method별 이미지가 출력됩니다.
TM_CCORR method는 이미지를 찾지 못했네요.
'Python > OpenCV' 카테고리의 다른 글
template matching에서 size 문제 (1) | 2017.11.23 |
---|---|
auto canny function 만들어 사용하기 (1) | 2017.11.21 |
OpenCV Source설치와 Extra Modules (for Mac) (1) | 2017.11.21 |
Windows에 OpenCV 설치하기 (by wheel) (1) | 2017.11.08 |
Mac에 OpenCV 설치하고 가지고 놀기 (2) | 2017.11.02 |
Comments