Multi Vision Camera
www.hontek.co.kr
http://cafe.naver.com/hontek
34
3. Software Architecture
3.5 OpenCV Control Dialog
OpenCV 라이브러리를 이용한 예.
Fig 33. OpenCV Control Dialog
– Template Matching
3.5.9 Template Matching
영상에서 특정영상을 찾는다.
CVAPI(void) cvMatchTemplate(
const CvArr* image,
const CvArr* templ,
CvArr* result,
int method );
Image : 영상 데이터
Templ : 검색할 영상
Result : 결과 영상
Method : 검출방법
CV_TM_SQDIFF
0
CV_TM_SQDIFF_NORMED 1
CV_TM_CCORR
2
CV_TM_CCORR_NORMED 3
CV_TM_CCOEFF
4
CV_TM_CCOEFF_NORMED 5