我担心使用CIDetector
.
使用CIDetector
大图像(例如[rep fullScreenImage]
with )CIDetectorAccuracyHigh
应该会产生最佳结果和最长的执行时间。执行时间包括解码图像然后在位图图像上运行检测。这在旧设备上更为明显。
为了节省执行时间,我应该使用:
[rep aspectRatioThumbnail]
&CIDetectorAccuracyHigh
[rep fullScreenImage]
&CIDetectorAccuracyLow
- 其他想法?