3

CIDetector多次使用,并且使用 ARC 的项目中的每个图像的内存使用量都在增长。

NSArray* features = [self.detector featuresInImage:ciimage options:detectorOptions];
...
// some code dealing with features
features = nil

我在 Instruments 中看到 ref 计数features始终为 +1。我注意到如果添加

self.detector = nil;

然后内存大幅下降,并且没有FaceCore在仪器中列出。

在此处输入图像描述

人脸检测器不会释放它的内存吗?

4

0 回答 0