我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
在仪器中列出。
人脸检测器不会释放它的内存吗?