├── FaceDetect.playground ├── Contents.swift ├── contents.xcplayground ├── playground.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── WeiJay.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── timeline.xctimeline ├── README.md ├── VisionDetection.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ ├── WeiJay.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── willjay.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── WeiJay.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ └── xcschememanagement.plist │ └── willjay.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── VisionDetection ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Extensions.swift ├── Info.plist ├── PreviewView.swift └── ViewController.swift └── resources ├── Camera.PNG ├── Landmarks.png ├── Retangle.png ├── VNDetectFaceLandmarksRequest.png ├── VNDetectFaceRectanglesRequest.png ├── Vision.png └── faceRecognition.gif /FaceDetect.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/FaceDetect.playground/Contents.swift -------------------------------------------------------------------------------- /FaceDetect.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/FaceDetect.playground/contents.xcplayground -------------------------------------------------------------------------------- /FaceDetect.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/FaceDetect.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FaceDetect.playground/playground.xcworkspace/xcuserdata/WeiJay.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/FaceDetect.playground/playground.xcworkspace/xcuserdata/WeiJay.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /FaceDetect.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/FaceDetect.playground/timeline.xctimeline -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/README.md -------------------------------------------------------------------------------- /VisionDetection.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/VisionDetection.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VisionDetection.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/VisionDetection.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VisionDetection.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/VisionDetection.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /VisionDetection.xcodeproj/project.xcworkspace/xcuserdata/WeiJay.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/VisionDetection.xcodeproj/project.xcworkspace/xcuserdata/WeiJay.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /VisionDetection.xcodeproj/project.xcworkspace/xcuserdata/willjay.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/VisionDetection.xcodeproj/project.xcworkspace/xcuserdata/willjay.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /VisionDetection.xcodeproj/xcuserdata/WeiJay.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/VisionDetection.xcodeproj/xcuserdata/WeiJay.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /VisionDetection.xcodeproj/xcuserdata/WeiJay.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/VisionDetection.xcodeproj/xcuserdata/WeiJay.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /VisionDetection.xcodeproj/xcuserdata/willjay.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/VisionDetection.xcodeproj/xcuserdata/willjay.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /VisionDetection/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/VisionDetection/AppDelegate.swift -------------------------------------------------------------------------------- /VisionDetection/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/VisionDetection/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /VisionDetection/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/VisionDetection/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /VisionDetection/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/VisionDetection/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /VisionDetection/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/VisionDetection/Extensions.swift -------------------------------------------------------------------------------- /VisionDetection/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/VisionDetection/Info.plist -------------------------------------------------------------------------------- /VisionDetection/PreviewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/VisionDetection/PreviewView.swift -------------------------------------------------------------------------------- /VisionDetection/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/VisionDetection/ViewController.swift -------------------------------------------------------------------------------- /resources/Camera.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/resources/Camera.PNG -------------------------------------------------------------------------------- /resources/Landmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/resources/Landmarks.png -------------------------------------------------------------------------------- /resources/Retangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/resources/Retangle.png -------------------------------------------------------------------------------- /resources/VNDetectFaceLandmarksRequest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/resources/VNDetectFaceLandmarksRequest.png -------------------------------------------------------------------------------- /resources/VNDetectFaceRectanglesRequest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/resources/VNDetectFaceRectanglesRequest.png -------------------------------------------------------------------------------- /resources/Vision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/resources/Vision.png -------------------------------------------------------------------------------- /resources/faceRecognition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willjay90/AppleFaceDetection/HEAD/resources/faceRecognition.gif --------------------------------------------------------------------------------