├── .gitignore ├── FaceRecognitionSystem.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── FaceRecognitionSystem ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── faceapp@120.png │ │ └── faceapp@180.png │ ├── Contents.json │ ├── face_detect.imageset │ │ ├── Contents.json │ │ ├── face_detect.png │ │ ├── face_detect@2.png │ │ └── face_detect@3.png │ ├── face_detect_un.imageset │ │ ├── Contents.json │ │ ├── face_detect_un.png │ │ ├── face_detect_un@2.png │ │ └── face_detect_un@3.png │ ├── faceholder.imageset │ │ ├── Contents.json │ │ └── faceholder.png │ ├── mine-setting-icon.imageset │ │ ├── Contents.json │ │ ├── mine-setting-icon.png │ │ ├── mine-setting-icon@2x.png │ │ └── mine-setting-icon@3x.png │ ├── navigationButtonReturn.imageset │ │ ├── Contents.json │ │ ├── navigationButtonReturn.png │ │ ├── navigationButtonReturn@2x.png │ │ └── navigationButtonReturn@3x.png │ ├── navigationbarBackgroundWhite.imageset │ │ ├── Contents.json │ │ └── navigationbarBackgroundWhite.png │ ├── settings.imageset │ │ ├── Contents.json │ │ ├── settings.png │ │ ├── settings@2.png │ │ └── settings@3.png │ ├── settings_un.imageset │ │ ├── Contents.json │ │ ├── settings_un.png │ │ ├── settings_un@2.png │ │ └── settings_un@3.png │ └── tabbar-light.imageset │ │ ├── Contents.json │ │ ├── tabbar-light.png │ │ └── tabbar-light@2x.png ├── Base.lproj │ └── LaunchScreen.storyboard ├── Classes │ ├── Setting │ │ ├── Controller │ │ │ ├── ZCAddressViewController.h │ │ │ └── ZCAddressViewController.m │ │ └── View │ │ │ ├── ZCKeyboardToolBar.h │ │ │ ├── ZCKeyboardToolBar.m │ │ │ └── ZCKeyboardToolBar.xib │ ├── Tool │ │ ├── ZCCvImage.h │ │ ├── ZCCvImage.mm │ │ ├── ZCFeatureExtractionTool.h │ │ ├── ZCFeatureExtractionTool.mm │ │ ├── ZCRequestServer.h │ │ ├── ZCRequestServer.m │ │ ├── ZCSaveTool.h │ │ └── ZCSaveTool.m │ ├── detection │ │ ├── Controller │ │ │ ├── ZCFaceDeteController.h │ │ │ ├── ZCFaceDeteController.m │ │ │ └── ZCFaceDeteController.xib │ │ └── view │ │ │ ├── ZCMaskView.h │ │ │ └── ZCMaskView.m │ ├── main │ │ └── Controller │ │ │ ├── ZCNavigationController.h │ │ │ ├── ZCNavigationController.m │ │ │ ├── ZCSettingViewController.h │ │ │ ├── ZCSettingViewController.m │ │ │ ├── ZCTrainViewController.h │ │ │ ├── ZCTrainViewController.m │ │ │ ├── ZCViewController.h │ │ │ ├── ZCViewController.m │ │ │ └── ZCViewController.storyboard │ ├── other │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Lib │ │ │ ├── DRNRealTimeBlurView │ │ │ │ ├── DRNRealTimeBlurView.h │ │ │ │ ├── DRNRealTimeBlurView.m │ │ │ │ ├── UIImage+BoxBlur.h │ │ │ │ └── UIImage+BoxBlur.m │ │ │ ├── MBProgressHUD │ │ │ │ ├── MBProgressHUD+XMG.h │ │ │ │ ├── MBProgressHUD+XMG.m │ │ │ │ ├── MBProgressHUD.bundle │ │ │ │ │ ├── error.png │ │ │ │ │ ├── error@2x.png │ │ │ │ │ ├── success.png │ │ │ │ │ └── success@2x.png │ │ │ │ ├── MBProgressHUD.h │ │ │ │ └── MBProgressHUD.m │ │ │ ├── SDWebImage │ │ │ │ ├── NSData+ImageContentType.h │ │ │ │ ├── NSData+ImageContentType.m │ │ │ │ ├── SDImageCache.h │ │ │ │ ├── SDImageCache.m │ │ │ │ ├── SDWebImageCompat.h │ │ │ │ ├── SDWebImageCompat.m │ │ │ │ ├── SDWebImageDecoder.h │ │ │ │ ├── SDWebImageDecoder.m │ │ │ │ ├── SDWebImageDownloader.h │ │ │ │ ├── SDWebImageDownloader.m │ │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ │ ├── SDWebImageDownloaderOperation.m │ │ │ │ ├── SDWebImageManager.h │ │ │ │ ├── SDWebImageManager.m │ │ │ │ ├── SDWebImageOperation.h │ │ │ │ ├── SDWebImagePrefetcher.h │ │ │ │ ├── SDWebImagePrefetcher.m │ │ │ │ ├── UIButton+WebCache.h │ │ │ │ ├── UIButton+WebCache.m │ │ │ │ ├── UIImage+GIF.h │ │ │ │ ├── UIImage+GIF.m │ │ │ │ ├── UIImage+MultiFormat.h │ │ │ │ ├── UIImage+MultiFormat.m │ │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ │ ├── UIImageView+HighlightedWebCache.m │ │ │ │ ├── UIImageView+WebCache.h │ │ │ │ ├── UIImageView+WebCache.m │ │ │ │ ├── UIView+WebCacheOperation.h │ │ │ │ └── UIView+WebCacheOperation.m │ │ │ ├── SVProgressHUD │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ └── SVProgressHUD │ │ │ │ │ ├── SVIndefiniteAnimatedView.h │ │ │ │ │ ├── SVIndefiniteAnimatedView.m │ │ │ │ │ ├── SVProgressAnimatedView.h │ │ │ │ │ ├── SVProgressAnimatedView.m │ │ │ │ │ ├── SVProgressHUD.bundle │ │ │ │ │ ├── angle-mask.png │ │ │ │ │ ├── angle-mask@2x.png │ │ │ │ │ ├── angle-mask@3x.png │ │ │ │ │ ├── error.png │ │ │ │ │ ├── error@2x.png │ │ │ │ │ ├── error@3x.png │ │ │ │ │ ├── info.png │ │ │ │ │ ├── info@2x.png │ │ │ │ │ ├── info@3x.png │ │ │ │ │ ├── success.png │ │ │ │ │ ├── success@2x.png │ │ │ │ │ └── success@3x.png │ │ │ │ │ ├── SVProgressHUD.h │ │ │ │ │ ├── SVProgressHUD.m │ │ │ │ │ ├── SVRadialGradientLayer.h │ │ │ │ │ └── SVRadialGradientLayer.m │ │ │ └── TCP │ │ │ │ ├── GCDAsyncSocket.h │ │ │ │ └── GCDAsyncSocket.m │ │ ├── PrefixHeader.pch │ │ ├── categroy │ │ │ ├── Foundation+Log.m │ │ │ ├── MD5 │ │ │ │ ├── NSString+Hash.h │ │ │ │ └── NSString+Hash.m │ │ │ ├── NSDate+ZCExtension.h │ │ │ ├── NSDate+ZCExtension.m │ │ │ ├── NSObject+Extension.h │ │ │ ├── NSObject+Extension.m │ │ │ ├── NSObject+Model.h │ │ │ ├── NSObject+Model.m │ │ │ ├── NSString+MIMEType.h │ │ │ ├── NSString+MIMEType.m │ │ │ ├── UIBarButtonItem+ZCExtension.h │ │ │ ├── UIBarButtonItem+ZCExtension.m │ │ │ ├── UIImage+ZCExtension.h │ │ │ ├── UIImage+ZCExtension.m │ │ │ ├── UIImageView+ZCExtension.h │ │ │ ├── UIImageView+ZCExtension.m │ │ │ ├── UIView+ZCExtension.h │ │ │ └── UIView+ZCExtension.m │ │ ├── haarcascade_eye_tree_eyeglasses.xml │ │ ├── haarcascade_frontalface_alt2.xml │ │ └── main.m │ └── updata │ │ └── Controller │ │ ├── ZCUpdataViewController.h │ │ ├── ZCUpdataViewController.m │ │ └── ZCUpdataViewController.xib └── Info.plist ├── FaceRecognitionSystemTests ├── FaceRecognitionSystemTests.m └── Info.plist ├── FaceRecognitionSystemUITests ├── FaceRecognitionSystemUITests.m └── Info.plist ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /FaceRecognitionSystem.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FaceRecognitionSystem.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/AppIcon.appiconset/faceapp@120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/AppIcon.appiconset/faceapp@120.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/AppIcon.appiconset/faceapp@180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/AppIcon.appiconset/faceapp@180.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/face_detect.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/face_detect.imageset/Contents.json -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/face_detect.imageset/face_detect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/face_detect.imageset/face_detect.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/face_detect.imageset/face_detect@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/face_detect.imageset/face_detect@2.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/face_detect.imageset/face_detect@3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/face_detect.imageset/face_detect@3.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/face_detect_un.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/face_detect_un.imageset/Contents.json -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/face_detect_un.imageset/face_detect_un.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/face_detect_un.imageset/face_detect_un.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/face_detect_un.imageset/face_detect_un@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/face_detect_un.imageset/face_detect_un@2.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/face_detect_un.imageset/face_detect_un@3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/face_detect_un.imageset/face_detect_un@3.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/faceholder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/faceholder.imageset/Contents.json -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/faceholder.imageset/faceholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/faceholder.imageset/faceholder.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/mine-setting-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/mine-setting-icon.imageset/Contents.json -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/mine-setting-icon.imageset/mine-setting-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/mine-setting-icon.imageset/mine-setting-icon.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/mine-setting-icon.imageset/mine-setting-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/mine-setting-icon.imageset/mine-setting-icon@2x.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/mine-setting-icon.imageset/mine-setting-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/mine-setting-icon.imageset/mine-setting-icon@3x.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/navigationButtonReturn.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/navigationButtonReturn.imageset/Contents.json -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/navigationButtonReturn.imageset/navigationButtonReturn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/navigationButtonReturn.imageset/navigationButtonReturn.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/navigationButtonReturn.imageset/navigationButtonReturn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/navigationButtonReturn.imageset/navigationButtonReturn@2x.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/navigationButtonReturn.imageset/navigationButtonReturn@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/navigationButtonReturn.imageset/navigationButtonReturn@3x.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/navigationbarBackgroundWhite.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/navigationbarBackgroundWhite.imageset/Contents.json -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/navigationbarBackgroundWhite.imageset/navigationbarBackgroundWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/navigationbarBackgroundWhite.imageset/navigationbarBackgroundWhite.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/settings.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/settings.imageset/Contents.json -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/settings.imageset/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/settings.imageset/settings.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/settings.imageset/settings@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/settings.imageset/settings@2.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/settings.imageset/settings@3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/settings.imageset/settings@3.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/settings_un.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/settings_un.imageset/Contents.json -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/settings_un.imageset/settings_un.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/settings_un.imageset/settings_un.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/settings_un.imageset/settings_un@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/settings_un.imageset/settings_un@2.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/settings_un.imageset/settings_un@3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/settings_un.imageset/settings_un@3.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/tabbar-light.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/tabbar-light.imageset/Contents.json -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/tabbar-light.imageset/tabbar-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/tabbar-light.imageset/tabbar-light.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Assets.xcassets/tabbar-light.imageset/tabbar-light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Assets.xcassets/tabbar-light.imageset/tabbar-light@2x.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/Setting/Controller/ZCAddressViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/Setting/Controller/ZCAddressViewController.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/Setting/Controller/ZCAddressViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/Setting/Controller/ZCAddressViewController.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/Setting/View/ZCKeyboardToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/Setting/View/ZCKeyboardToolBar.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/Setting/View/ZCKeyboardToolBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/Setting/View/ZCKeyboardToolBar.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/Setting/View/ZCKeyboardToolBar.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/Setting/View/ZCKeyboardToolBar.xib -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/Tool/ZCCvImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/Tool/ZCCvImage.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/Tool/ZCCvImage.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/Tool/ZCCvImage.mm -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/Tool/ZCFeatureExtractionTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/Tool/ZCFeatureExtractionTool.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/Tool/ZCFeatureExtractionTool.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/Tool/ZCFeatureExtractionTool.mm -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/Tool/ZCRequestServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/Tool/ZCRequestServer.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/Tool/ZCRequestServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/Tool/ZCRequestServer.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/Tool/ZCSaveTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/Tool/ZCSaveTool.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/Tool/ZCSaveTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/Tool/ZCSaveTool.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/detection/Controller/ZCFaceDeteController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/detection/Controller/ZCFaceDeteController.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/detection/Controller/ZCFaceDeteController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/detection/Controller/ZCFaceDeteController.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/detection/Controller/ZCFaceDeteController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/detection/Controller/ZCFaceDeteController.xib -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/detection/view/ZCMaskView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/detection/view/ZCMaskView.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/detection/view/ZCMaskView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/detection/view/ZCMaskView.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/main/Controller/ZCNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/main/Controller/ZCNavigationController.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/main/Controller/ZCNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/main/Controller/ZCNavigationController.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/main/Controller/ZCSettingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/main/Controller/ZCSettingViewController.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/main/Controller/ZCSettingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/main/Controller/ZCSettingViewController.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/main/Controller/ZCTrainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/main/Controller/ZCTrainViewController.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/main/Controller/ZCTrainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/main/Controller/ZCTrainViewController.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/main/Controller/ZCViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/main/Controller/ZCViewController.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/main/Controller/ZCViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/main/Controller/ZCViewController.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/main/Controller/ZCViewController.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/main/Controller/ZCViewController.storyboard -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/AppDelegate.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/AppDelegate.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/DRNRealTimeBlurView/DRNRealTimeBlurView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/DRNRealTimeBlurView/DRNRealTimeBlurView.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/DRNRealTimeBlurView/DRNRealTimeBlurView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/DRNRealTimeBlurView/DRNRealTimeBlurView.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/DRNRealTimeBlurView/UIImage+BoxBlur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/DRNRealTimeBlurView/UIImage+BoxBlur.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/DRNRealTimeBlurView/UIImage+BoxBlur.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/DRNRealTimeBlurView/UIImage+BoxBlur.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/MBProgressHUD/MBProgressHUD+XMG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/MBProgressHUD/MBProgressHUD+XMG.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/MBProgressHUD/MBProgressHUD+XMG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/MBProgressHUD/MBProgressHUD+XMG.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/MBProgressHUD/MBProgressHUD.bundle/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/MBProgressHUD/MBProgressHUD.bundle/error.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/MBProgressHUD/MBProgressHUD.bundle/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/MBProgressHUD/MBProgressHUD.bundle/error@2x.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/MBProgressHUD/MBProgressHUD.bundle/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/MBProgressHUD/MBProgressHUD.bundle/success.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/MBProgressHUD/MBProgressHUD.bundle/success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/MBProgressHUD/MBProgressHUD.bundle/success@2x.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/MBProgressHUD/MBProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/MBProgressHUD/MBProgressHUD.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/NSData+ImageContentType.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDWebImageCompat.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDWebImageDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDWebImageDecoder.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDWebImageDownloader.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDWebImageDownloaderOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDWebImageDownloaderOperation.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDWebImageManager.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/UIButton+WebCache.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/UIImageView+HighlightedWebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/UIImageView+HighlightedWebCache.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/UIImageView+WebCache.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SDWebImage/UIView+WebCacheOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SDWebImage/UIView+WebCacheOperation.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/LICENSE.txt -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/README.md -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressAnimatedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressAnimatedView.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressAnimatedView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressAnimatedView.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@2x.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@3x.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@2x.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@3x.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@2x.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@3x.png -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVProgressHUD.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVRadialGradientLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVRadialGradientLayer.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVRadialGradientLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/SVProgressHUD/SVProgressHUD/SVRadialGradientLayer.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/TCP/GCDAsyncSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/TCP/GCDAsyncSocket.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/Lib/TCP/GCDAsyncSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/Lib/TCP/GCDAsyncSocket.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/PrefixHeader.pch -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/categroy/Foundation+Log.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/categroy/Foundation+Log.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/categroy/MD5/NSString+Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/categroy/MD5/NSString+Hash.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/categroy/MD5/NSString+Hash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/categroy/MD5/NSString+Hash.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/categroy/NSDate+ZCExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/categroy/NSDate+ZCExtension.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/categroy/NSDate+ZCExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/categroy/NSDate+ZCExtension.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/categroy/NSObject+Extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/categroy/NSObject+Extension.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/categroy/NSObject+Extension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/categroy/NSObject+Extension.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/categroy/NSObject+Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/categroy/NSObject+Model.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/categroy/NSObject+Model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/categroy/NSObject+Model.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/categroy/NSString+MIMEType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/categroy/NSString+MIMEType.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/categroy/NSString+MIMEType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/categroy/NSString+MIMEType.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/categroy/UIBarButtonItem+ZCExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/categroy/UIBarButtonItem+ZCExtension.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/categroy/UIBarButtonItem+ZCExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/categroy/UIBarButtonItem+ZCExtension.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/categroy/UIImage+ZCExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/categroy/UIImage+ZCExtension.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/categroy/UIImage+ZCExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/categroy/UIImage+ZCExtension.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/categroy/UIImageView+ZCExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/categroy/UIImageView+ZCExtension.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/categroy/UIImageView+ZCExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/categroy/UIImageView+ZCExtension.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/categroy/UIView+ZCExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/categroy/UIView+ZCExtension.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/categroy/UIView+ZCExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/categroy/UIView+ZCExtension.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/haarcascade_eye_tree_eyeglasses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/haarcascade_eye_tree_eyeglasses.xml -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/haarcascade_frontalface_alt2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/haarcascade_frontalface_alt2.xml -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/other/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/other/main.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/updata/Controller/ZCUpdataViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/updata/Controller/ZCUpdataViewController.h -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/updata/Controller/ZCUpdataViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/updata/Controller/ZCUpdataViewController.m -------------------------------------------------------------------------------- /FaceRecognitionSystem/Classes/updata/Controller/ZCUpdataViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Classes/updata/Controller/ZCUpdataViewController.xib -------------------------------------------------------------------------------- /FaceRecognitionSystem/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystem/Info.plist -------------------------------------------------------------------------------- /FaceRecognitionSystemTests/FaceRecognitionSystemTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystemTests/FaceRecognitionSystemTests.m -------------------------------------------------------------------------------- /FaceRecognitionSystemTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystemTests/Info.plist -------------------------------------------------------------------------------- /FaceRecognitionSystemUITests/FaceRecognitionSystemUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystemUITests/FaceRecognitionSystemUITests.m -------------------------------------------------------------------------------- /FaceRecognitionSystemUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/FaceRecognitionSystemUITests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z695101385/FaceRecognitionSystem/HEAD/README.md --------------------------------------------------------------------------------