├── .gitignore ├── .travis.yml ├── FaceDetection.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── FaceDetection.xccheckout │ │ └── IDEWorkspaceChecks.plist ├── xcshareddata │ └── xcschemes │ │ └── FaceDetection.xcscheme └── xcuserdata │ └── Ryan.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── FaceDetection ├── AppDelegate.swift ├── Base.lproj │ └── Main.storyboard ├── CameraFeed.swift ├── CoreImageAdditions.swift ├── FaceObscurationFilter.swift ├── FeedView.swift ├── FeedViewController.swift ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Info.plist ├── Launch.storyboard └── PixellationFilter.swift ├── FaceDetectionTests ├── FaceDetectionTests.swift └── Info.plist ├── LICENSE ├── PixellateImage.playground ├── Contents.swift ├── Resources │ └── monalisa.jpg ├── contents.xcplayground └── timeline.xctimeline └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/.travis.yml -------------------------------------------------------------------------------- /FaceDetection.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/FaceDetection.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FaceDetection.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/FaceDetection.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FaceDetection.xcodeproj/project.xcworkspace/xcshareddata/FaceDetection.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/FaceDetection.xcodeproj/project.xcworkspace/xcshareddata/FaceDetection.xccheckout -------------------------------------------------------------------------------- /FaceDetection.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/FaceDetection.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FaceDetection.xcodeproj/xcshareddata/xcschemes/FaceDetection.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/FaceDetection.xcodeproj/xcshareddata/xcschemes/FaceDetection.xcscheme -------------------------------------------------------------------------------- /FaceDetection.xcodeproj/xcuserdata/Ryan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/FaceDetection.xcodeproj/xcuserdata/Ryan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /FaceDetection.xcodeproj/xcuserdata/Ryan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/FaceDetection.xcodeproj/xcuserdata/Ryan.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FaceDetection/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/FaceDetection/AppDelegate.swift -------------------------------------------------------------------------------- /FaceDetection/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/FaceDetection/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FaceDetection/CameraFeed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/FaceDetection/CameraFeed.swift -------------------------------------------------------------------------------- /FaceDetection/CoreImageAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/FaceDetection/CoreImageAdditions.swift -------------------------------------------------------------------------------- /FaceDetection/FaceObscurationFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/FaceDetection/FaceObscurationFilter.swift -------------------------------------------------------------------------------- /FaceDetection/FeedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/FaceDetection/FeedView.swift -------------------------------------------------------------------------------- /FaceDetection/FeedViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/FaceDetection/FeedViewController.swift -------------------------------------------------------------------------------- /FaceDetection/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/FaceDetection/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FaceDetection/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/FaceDetection/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /FaceDetection/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/FaceDetection/Info.plist -------------------------------------------------------------------------------- /FaceDetection/Launch.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/FaceDetection/Launch.storyboard -------------------------------------------------------------------------------- /FaceDetection/PixellationFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/FaceDetection/PixellationFilter.swift -------------------------------------------------------------------------------- /FaceDetectionTests/FaceDetectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/FaceDetectionTests/FaceDetectionTests.swift -------------------------------------------------------------------------------- /FaceDetectionTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/FaceDetectionTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/LICENSE -------------------------------------------------------------------------------- /PixellateImage.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/PixellateImage.playground/Contents.swift -------------------------------------------------------------------------------- /PixellateImage.playground/Resources/monalisa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/PixellateImage.playground/Resources/monalisa.jpg -------------------------------------------------------------------------------- /PixellateImage.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/PixellateImage.playground/contents.xcplayground -------------------------------------------------------------------------------- /PixellateImage.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/PixellateImage.playground/timeline.xctimeline -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmasondavies/FaceDetection/HEAD/README.md --------------------------------------------------------------------------------