일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 루돌프의반란
- 삼성기출
- Calibration
- ICER
- 3Dreconstruction
- 수영대회결승전
- 왕실의기사대결
- 백준
- 코드트리빵
- 시뮬레이션
- 마법의숲탐색
- ARM
- ISER
- 싸움땅
- 토끼와 경주
- 슈퍼컴퓨터클러스터
- 포탑부수기
- BFS
- 조합
- 코드트리
- 마이크로프로세서
- 이진탐색
- DP
- 나무박멸
- DenseDepth
- 소프티어
- 구현
- 순서대로방문하기
- ros
- dfs
Archives
- Today
- Total
목록correlation (1)
from palette import colorful_colors
[Computer Vision] opencv를 이용해 templete matching 구현하기
correlation을 이용해 템플릿매칭을 하는 python code입니다.import numpy as np import cv2 # 소스, 템플릿 이미지 가져오기 img_path = "picture4.jpg" templete_path = "./templete2/heart2.png" img = cv2.imread(img_path,0) template = cv2.imread(templete_path,0) # correlation을 이용해 결과 찾기 cor_result = cv2.matchTemplate(img, template, cv2.TM_CCORR_NORMED) # 위치 찾기 min_value, max_value, min_location, max_location = cv2.minMaxLoc(cor_res..
AI/Computer Vision
2023. 5. 6. 00:20