Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 1.04 KB

README.md

File metadata and controls

28 lines (19 loc) · 1.04 KB

GoogleFaceDetection

ios10+ swift4+

In iOS, to detect faces in a picture, you can use either CIDetector (Apple) or Mobile Vision (Google)

In my point of view, Google Mobile Vision provide better performance.

Getting GoogleMobileVision with CocoaPods

# platform :ios, ’10.0’
use_frameworks!

target 'GoogleFaceDetection' do
  pod 'GoogleMobileVision/FaceDetector'
end

In Terminal, get to the project directory and run pod install


In this project, there are two modes.

Single Image Detection && Real Time Camera Image Detection