CvSeq* objects = cvHaarDetectObjects(
&image,
this->cascade,
this->storage,
scale, // scale : Scale 1.3 means the next round scan will scale 30% bigger.
2, // neigbors : If objects less than 2-1, then the whole detection is invalid.
0, // flags : The only valid flag is 0 for now, means don't check the edges.
cvSize(20, 20) // min_size : The minium size of object.
);
我正在使用 OpenCV 进行对象检测,但我找不到任何接口来释放对象的内存。