VisionFaceDetector
class VisionFaceDetector : NSObjectA face detector that detects faces in an image.
-
Unavailable. Use
Visionfactory methods. -
Processes the given image for face detection. The detection is performed asynchronously and calls back the completion handler with the detected face results or error on the main thread.
Declaration
Swift
func process(_ image: FIRVisionImage, completion: @escaping VisionFaceDetectionCallback)Parameters
imageThe vision image to use for detecting faces.
completionHandler to call back on the main thread with faces detected or error.
-
Returns detected face results in the given image or
nilif there was an error. The detection is performed synchronously on the calling thread.It is advised to call this method off the main thread to avoid blocking the UI. As a result, an
NSExceptionis raised if this method is called on the main thread.Declaration
Swift
func results(in image: FIRVisionImage) throws -> [FIRVisionFace]Parameters
imageThe vision image to use for detecting faces.
errorAn optional error parameter populated when there is an error during detection.
Return Value
Array of faces detected in the given image or
nilif there was an error.