├── GoogleFaceDetection.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── WeiJay.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── WeiJay.xcuserdatad │ └── xcschemes │ ├── GoogleFaceDetection.xcscheme │ └── xcschememanagement.plist ├── GoogleFaceDetection ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Camera.imageset │ │ ├── Contents.json │ │ ├── ic_camera_alt_black_1x_ios_36dp.png │ │ ├── ic_camera_alt_black_2x_ios_36dp.png │ │ └── ic_camera_alt_black_3x_ios_36dp.png │ └── Image.imageset │ │ ├── Contents.json │ │ ├── ic_image_black_1x_ios_36dp.png │ │ ├── ic_image_black_2x_ios_36dp.png │ │ └── ic_image_black_3x_ios_36dp.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CameraViewController.swift ├── DrawingUtility.swift ├── Info.plist ├── PhotoViewController.swift └── multi-face.png ├── Podfile ├── README.md └── resources ├── CameraMode.png └── PhotoMode.PNG /GoogleFaceDetection.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/GoogleFaceDetection/HEAD/GoogleFaceDetection.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GoogleFaceDetection.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/GoogleFaceDetection/HEAD/GoogleFaceDetection.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GoogleFaceDetection.xcodeproj/project.xcworkspace/xcuserdata/WeiJay.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/GoogleFaceDetection/HEAD/GoogleFaceDetection.xcodeproj/project.xcworkspace/xcuserdata/WeiJay.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /GoogleFaceDetection.xcodeproj/xcuserdata/WeiJay.xcuserdatad/xcschemes/GoogleFaceDetection.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/GoogleFaceDetection/HEAD/GoogleFaceDetection.xcodeproj/xcuserdata/WeiJay.xcuserdatad/xcschemes/GoogleFaceDetection.xcscheme -------------------------------------------------------------------------------- /GoogleFaceDetection.xcodeproj/xcuserdata/WeiJay.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/GoogleFaceDetection/HEAD/GoogleFaceDetection.xcodeproj/xcuserdata/WeiJay.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /GoogleFaceDetection/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/GoogleFaceDetection/HEAD/GoogleFaceDetection/AppDelegate.swift -------------------------------------------------------------------------------- /GoogleFaceDetection/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/GoogleFaceDetection/HEAD/GoogleFaceDetection/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /GoogleFaceDetection/Assets.xcassets/Camera.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/GoogleFaceDetection/HEAD/GoogleFaceDetection/Assets.xcassets/Camera.imageset/Contents.json -------------------------------------------------------------------------------- /GoogleFaceDetection/Assets.xcassets/Camera.imageset/ic_camera_alt_black_1x_ios_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/GoogleFaceDetection/HEAD/GoogleFaceDetection/Assets.xcassets/Camera.imageset/ic_camera_alt_black_1x_ios_36dp.png -------------------------------------------------------------------------------- /GoogleFaceDetection/Assets.xcassets/Camera.imageset/ic_camera_alt_black_2x_ios_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/GoogleFaceDetection/HEAD/GoogleFaceDetection/Assets.xcassets/Camera.imageset/ic_camera_alt_black_2x_ios_36dp.png -------------------------------------------------------------------------------- /GoogleFaceDetection/Assets.xcassets/Camera.imageset/ic_camera_alt_black_3x_ios_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/GoogleFaceDetection/HEAD/GoogleFaceDetection/Assets.xcassets/Camera.imageset/ic_camera_alt_black_3x_ios_36dp.png -------------------------------------------------------------------------------- /GoogleFaceDetection/Assets.xcassets/Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/GoogleFaceDetection/HEAD/GoogleFaceDetection/Assets.xcassets/Image.imageset/Contents.json -------------------------------------------------------------------------------- /GoogleFaceDetection/Assets.xcassets/Image.imageset/ic_image_black_1x_ios_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/GoogleFaceDetection/HEAD/GoogleFaceDetection/Assets.xcassets/Image.imageset/ic_image_black_1x_ios_36dp.png -------------------------------------------------------------------------------- /GoogleFaceDetection/Assets.xcassets/Image.imageset/ic_image_black_2x_ios_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/GoogleFaceDetection/HEAD/GoogleFaceDetection/Assets.xcassets/Image.imageset/ic_image_black_2x_ios_36dp.png -------------------------------------------------------------------------------- /GoogleFaceDetection/Assets.xcassets/Image.imageset/ic_image_black_3x_ios_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/GoogleFaceDetection/HEAD/GoogleFaceDetection/Assets.xcassets/Image.imageset/ic_image_black_3x_ios_36dp.png -------------------------------------------------------------------------------- /GoogleFaceDetection/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/GoogleFaceDetection/HEAD/GoogleFaceDetection/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /GoogleFaceDetection/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/GoogleFaceDetection/HEAD/GoogleFaceDetection/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /GoogleFaceDetection/CameraViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/GoogleFaceDetection/HEAD/GoogleFaceDetection/CameraViewController.swift -------------------------------------------------------------------------------- /GoogleFaceDetection/DrawingUtility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/GoogleFaceDetection/HEAD/GoogleFaceDetection/DrawingUtility.swift -------------------------------------------------------------------------------- /GoogleFaceDetection/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/GoogleFaceDetection/HEAD/GoogleFaceDetection/Info.plist -------------------------------------------------------------------------------- /GoogleFaceDetection/PhotoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/GoogleFaceDetection/HEAD/GoogleFaceDetection/PhotoViewController.swift -------------------------------------------------------------------------------- /GoogleFaceDetection/multi-face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/GoogleFaceDetection/HEAD/GoogleFaceDetection/multi-face.png -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/GoogleFaceDetection/HEAD/Podfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/GoogleFaceDetection/HEAD/README.md -------------------------------------------------------------------------------- /resources/CameraMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/GoogleFaceDetection/HEAD/resources/CameraMode.png -------------------------------------------------------------------------------- /resources/PhotoMode.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/GoogleFaceDetection/HEAD/resources/PhotoMode.PNG --------------------------------------------------------------------------------