2011/06/07

외곽선 정보를 담고있는 Sequence 에서 포인트 정보 가져오기

cvFindContours 함수를 수행 한 뒤 얻어지는 Sequence 정보에서 다각형의 포인트를 가져오기 위해서는 cvGetSeqElem 함수를 이용하면 된다.



    
for ( int i = 0; i < cvSeq->total; ++i )
{
CvPoint* p = (CvPoint*)cvGetSeqElem( cvSeq, i );

TRACE( "Point : %d x %d \n", p->x, p->y );
}
<

Original Post : http://neodreamer-dev.tistory.com/545

No comments :

Post a Comment