유사도

    템플릿 이미지 / 매칭 이미지 유사도 찾기

    이미지 유사도 public IplImage Templit(IplImage tempsrc, IplImage temp) { match = tempsrc; IplImage templit = temp; // 매칭이미지 - temp // 템플릿 이미지 - templit IplImage tm = new IplImage(new CvSize(match.Size.Width - templit.Size.Width + 1, match.Size.Height - templit.Size.Height + 1), BitDepth.F32, 1); // 비교결과 - tm CvPoint minloc, maxloc; // 검출된 위치의 최대, 최소 지점 Double minval, maxval; // 검출된 위치의 최대, 최소 포인터 Cv.M..