Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 893 Bytes

README.md

File metadata and controls

34 lines (25 loc) · 893 Bytes

Face Detection Camera Swift

Version License

Requirements

  • Xcode 13.0 or higher.
  • iOS 15.5 or higher.

Usage

  • Initialize viewcontroller in any class and use easy way.
let vc = FaceDetectionCameraViewController()
vc.delegate = self
self.navigationController?.pushViewController(vc, animated: true)
  • Implement delegate method and use the captured image.
extension ViewController: ImageCapturedDelegate {
    func didCaptureImage(image: UIImage?) {
        //show image
    }
}

Author

ProgrammerFaraz, [email protected]

License

Face-Detection is available under the MIT license. See the LICENSE file for more info.