0

I am working on C++ openCv, were I want to detect the contours and defects and hull of human hand. I get something wrong when I convert from CvSeq to CvPoint, it always prints out the address's not the value of the sequence itself, and it doesn't accept *(Defects[2].x). So, I want to print the values to know if am right or wrong and how to access them later ? please, thanks in advance.

4

1 回答 1

0
int *point = &seq;
cout << *point;
于 2013-01-18T15:42:26.983 回答