├── CLFaceDetectionImagePicker.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── CLFaceDetectionImagePicker.xccheckout │ └── xcuserdata │ │ └── caesar.xcuserdatad │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── caesar.xcuserdatad │ └── xcschemes │ ├── CLFaceDetectionImagePicker.xcscheme │ └── xcschememanagement.plist ├── CLFaceDetectionImagePicker ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── CLFaceDetectionImagePickerSourceCode │ ├── CLFaceDetectionImagePickerViewController.h │ ├── CLFaceDetectionImagePickerViewController.m │ ├── LICENSE.txt │ ├── README.md │ ├── UIImage+CL.h │ ├── UIImage+CL.m │ └── assets │ │ ├── CLFaceDetectionImagePicker.storyboard │ │ ├── CameraSquare.png │ │ ├── CameraSquare@2x.png │ │ └── squarePNG.png ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── LICENSE.txt ├── ViewController.h ├── ViewController.m └── main.m ├── CLFaceDetectionImagePickerSourceCode ├── CLFaceDetectionImagePickerViewController.h ├── CLFaceDetectionImagePickerViewController.m ├── LICENSE.txt ├── README.md ├── UIImage+CL.h ├── UIImage+CL.m └── assets │ ├── CLFaceDetectionImagePicker.storyboard │ ├── CameraSquare.png │ ├── CameraSquare@2x.png │ └── squarePNG.png ├── CLFaceDetectionImagePickerTests ├── CLFaceDetectionImagePickerTests.m └── Info.plist ├── LICENSE.txt ├── README.md └── screenshot.png /CLFaceDetectionImagePicker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePicker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CLFaceDetectionImagePicker.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePicker.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CLFaceDetectionImagePicker.xcodeproj/project.xcworkspace/xcshareddata/CLFaceDetectionImagePicker.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePicker.xcodeproj/project.xcworkspace/xcshareddata/CLFaceDetectionImagePicker.xccheckout -------------------------------------------------------------------------------- /CLFaceDetectionImagePicker.xcodeproj/project.xcworkspace/xcuserdata/caesar.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePicker.xcodeproj/project.xcworkspace/xcuserdata/caesar.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /CLFaceDetectionImagePicker.xcodeproj/xcuserdata/caesar.xcuserdatad/xcschemes/CLFaceDetectionImagePicker.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePicker.xcodeproj/xcuserdata/caesar.xcuserdatad/xcschemes/CLFaceDetectionImagePicker.xcscheme -------------------------------------------------------------------------------- /CLFaceDetectionImagePicker.xcodeproj/xcuserdata/caesar.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePicker.xcodeproj/xcuserdata/caesar.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CLFaceDetectionImagePicker/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePicker/AppDelegate.h -------------------------------------------------------------------------------- /CLFaceDetectionImagePicker/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePicker/AppDelegate.m -------------------------------------------------------------------------------- /CLFaceDetectionImagePicker/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePicker/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /CLFaceDetectionImagePicker/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePicker/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CLFaceDetectionImagePicker/CLFaceDetectionImagePickerSourceCode/CLFaceDetectionImagePickerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePicker/CLFaceDetectionImagePickerSourceCode/CLFaceDetectionImagePickerViewController.h -------------------------------------------------------------------------------- /CLFaceDetectionImagePicker/CLFaceDetectionImagePickerSourceCode/CLFaceDetectionImagePickerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePicker/CLFaceDetectionImagePickerSourceCode/CLFaceDetectionImagePickerViewController.m -------------------------------------------------------------------------------- /CLFaceDetectionImagePicker/CLFaceDetectionImagePickerSourceCode/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePicker/CLFaceDetectionImagePickerSourceCode/LICENSE.txt -------------------------------------------------------------------------------- /CLFaceDetectionImagePicker/CLFaceDetectionImagePickerSourceCode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePicker/CLFaceDetectionImagePickerSourceCode/README.md -------------------------------------------------------------------------------- /CLFaceDetectionImagePicker/CLFaceDetectionImagePickerSourceCode/UIImage+CL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePicker/CLFaceDetectionImagePickerSourceCode/UIImage+CL.h -------------------------------------------------------------------------------- /CLFaceDetectionImagePicker/CLFaceDetectionImagePickerSourceCode/UIImage+CL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePicker/CLFaceDetectionImagePickerSourceCode/UIImage+CL.m -------------------------------------------------------------------------------- /CLFaceDetectionImagePicker/CLFaceDetectionImagePickerSourceCode/assets/CLFaceDetectionImagePicker.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePicker/CLFaceDetectionImagePickerSourceCode/assets/CLFaceDetectionImagePicker.storyboard -------------------------------------------------------------------------------- /CLFaceDetectionImagePicker/CLFaceDetectionImagePickerSourceCode/assets/CameraSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePicker/CLFaceDetectionImagePickerSourceCode/assets/CameraSquare.png -------------------------------------------------------------------------------- /CLFaceDetectionImagePicker/CLFaceDetectionImagePickerSourceCode/assets/CameraSquare@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePicker/CLFaceDetectionImagePickerSourceCode/assets/CameraSquare@2x.png -------------------------------------------------------------------------------- /CLFaceDetectionImagePicker/CLFaceDetectionImagePickerSourceCode/assets/squarePNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePicker/CLFaceDetectionImagePickerSourceCode/assets/squarePNG.png -------------------------------------------------------------------------------- /CLFaceDetectionImagePicker/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePicker/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CLFaceDetectionImagePicker/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePicker/Info.plist -------------------------------------------------------------------------------- /CLFaceDetectionImagePicker/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePicker/LICENSE.txt -------------------------------------------------------------------------------- /CLFaceDetectionImagePicker/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePicker/ViewController.h -------------------------------------------------------------------------------- /CLFaceDetectionImagePicker/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePicker/ViewController.m -------------------------------------------------------------------------------- /CLFaceDetectionImagePicker/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePicker/main.m -------------------------------------------------------------------------------- /CLFaceDetectionImagePickerSourceCode/CLFaceDetectionImagePickerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePickerSourceCode/CLFaceDetectionImagePickerViewController.h -------------------------------------------------------------------------------- /CLFaceDetectionImagePickerSourceCode/CLFaceDetectionImagePickerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePickerSourceCode/CLFaceDetectionImagePickerViewController.m -------------------------------------------------------------------------------- /CLFaceDetectionImagePickerSourceCode/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePickerSourceCode/LICENSE.txt -------------------------------------------------------------------------------- /CLFaceDetectionImagePickerSourceCode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePickerSourceCode/README.md -------------------------------------------------------------------------------- /CLFaceDetectionImagePickerSourceCode/UIImage+CL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePickerSourceCode/UIImage+CL.h -------------------------------------------------------------------------------- /CLFaceDetectionImagePickerSourceCode/UIImage+CL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePickerSourceCode/UIImage+CL.m -------------------------------------------------------------------------------- /CLFaceDetectionImagePickerSourceCode/assets/CLFaceDetectionImagePicker.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePickerSourceCode/assets/CLFaceDetectionImagePicker.storyboard -------------------------------------------------------------------------------- /CLFaceDetectionImagePickerSourceCode/assets/CameraSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePickerSourceCode/assets/CameraSquare.png -------------------------------------------------------------------------------- /CLFaceDetectionImagePickerSourceCode/assets/CameraSquare@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePickerSourceCode/assets/CameraSquare@2x.png -------------------------------------------------------------------------------- /CLFaceDetectionImagePickerSourceCode/assets/squarePNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePickerSourceCode/assets/squarePNG.png -------------------------------------------------------------------------------- /CLFaceDetectionImagePickerTests/CLFaceDetectionImagePickerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePickerTests/CLFaceDetectionImagePickerTests.m -------------------------------------------------------------------------------- /CLFaceDetectionImagePickerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/CLFaceDetectionImagePickerTests/Info.plist -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/README.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clisuper/CLFaceDetectionImagePicker/HEAD/screenshot.png --------------------------------------------------------------------------------