objective c - iOS face detection CIDetectorAccuracyHigh vs CIDetectorAccuracyLow -


i'm concerned time takes detect faces using cidetector.

using cidetector large image such [rep fullscreenimage] cidetectoraccuracyhigh should produce best results , longest execution time. execution time consists of decoding image , running detection on bitmap image. more noticeable on older devices.

to save execution time, should use:

  1. [rep aspectratiothumbnail] & cidetectoraccuracyhigh
  2. [rep fullscreenimage] & cidetectoraccuracylow
  3. other ideas?


Comments

Popular posts from this blog

C# random value from dictionary and tuple -

cgi - How do I interpret URLs without extension as files rather than missing directories in nginx? -

.htaccess - htaccess convert request to clean url and add slash at the end of the url -