gpt4 book ai didi

c++ - 如何释放 cvHaarDetectObjects 的内存?

转载 作者:行者123 更新时间:2023-11-28 07:36:50 25 4
gpt4 key购买 nike

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 进行对象检测,但我找不到任何接口(interface)来释放对象的内存。

最佳答案

释放级联:

cvReleaseHaarClassifierCascade( &cascade );

释放内存:

cvReleaseMemStorage( &storage );

(所有这些都是使用 c++ api 的充分理由,不是吗?)

关于c++ - 如何释放 cvHaarDetectObjects 的内存?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16631062/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com