Computer Vision/EmguCV

버전에 따른 변경 - Index (EmguCV 3.3)

kjun.kr 2018. 3. 9. 19:00
728x90

EmguCV 버전에 따라 코드가 너무 달라지는것들이 있다 ㅠ

하나씩 정리해봐야겠다.

EmguCV 3.3 버전 기준이다.

 

Index fln = new Index(supermatrix, 4);

아래 처럼 변경하면 된다. (EmguCV 3.3)

Index fln = new Index(supermatrix, new KdTreeIndexParams(4))’,

728x90