Tiện đây cho em hỏi luôn nhé. Một chương trình demo của opencv nó viết thế này
Code:
const int MAX_COUNT = 500;
CvPoint2D32f* points[2] = {0,0}
sau đó nó dùng thế này
Code:
points[0] = (CvPoint2D32f*)cvAlloc(MAX_COUNT*sizeof(points[0][0]));
points[1] = (CvPoint2D32f*)cvAlloc(MAX_COUNT*sizeof(points[0][0]));
hoặc
Code:
points[1][k++] = points[1][i];
CvPoint2D32f* points[2] ở đây khai báo mảng 1 chiều có 2 phần tử vậy thì points[1][i] nghĩa là gì ?
còn MAX_COUNT*sizeof(points[0][0]) ý nghia là gì nhỉ vì bình thường em chỉ hay thấy viết kiểu sizeof(int) thế này thôi ?
nhờ các bác giúp nhé