├── .gitignore ├── CONTRIBUTING.md ├── Example ├── MainStoryboard.storyboard ├── Podfile ├── Podfile.lock ├── ProjectOxfordFace.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── ProjectOxfordFace-Example.xcscheme ├── ProjectOxfordFace.xcworkspace │ └── contents.xcworkspacedata ├── ProjectOxfordFace │ ├── GroupPerson.h │ ├── GroupPerson.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── MPOAddPersonFaceController.h │ ├── MPOAddPersonFaceController.m │ ├── MPOAppDelegate.h │ ├── MPOAppDelegate.mm │ ├── MPODetectionCell.h │ ├── MPODetectionCell.m │ ├── MPODetectionViewController.h │ ├── MPODetectionViewController.m │ ├── MPOGroupSectionHeaderView.h │ ├── MPOGroupSectionHeaderView.m │ ├── MPOGroupingViewController.h │ ├── MPOGroupingViewController.m │ ├── MPOIdentificationViewController.h │ ├── MPOIdentificationViewController.m │ ├── MPOMainNavigationController.h │ ├── MPOMainNavigationController.m │ ├── MPOMainViewController.h │ ├── MPOMainViewController.m │ ├── MPOPersonFaceCell.h │ ├── MPOPersonFaceCell.m │ ├── MPOPersonFaceCell.xib │ ├── MPOPersonFacesController.h │ ├── MPOPersonFacesController.m │ ├── MPOPersonGroupController.h │ ├── MPOPersonGroupController.m │ ├── MPOPersonGroupListController.h │ ├── MPOPersonGroupListController.m │ ├── MPOSimilarFaceViewController.h │ ├── MPOSimilarFaceViewController.m │ ├── MPOSimpleFaceCell.h │ ├── MPOSimpleFaceCell.m │ ├── MPOSimpleFaceCell.xib │ ├── MPOVerificationViewController.h │ ├── MPOVerificationViewController.m │ ├── PersistedFace.h │ ├── PersistedFace.m │ ├── PersonFace.h │ ├── PersonFace.m │ ├── PersonGroup.h │ ├── PersonGroup.m │ ├── ProjectOxfordFace-Info.plist │ ├── ProjectOxfordFace-Prefix.pch │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── SampleImages │ ├── MSC12_John_001.jpg │ ├── MSC12_John_002.jpg │ ├── MSC13_ChrisA_01.jpg │ ├── MSC13_ChrisA_02.jpg │ ├── MSC13_ChrisA_04.jpg │ ├── WIN12_Alberto_01.png │ └── WIN12_Alberto_03.png ├── Tests │ ├── DetectTestCase.m │ ├── FaceListTestCase.m │ ├── GroupTestCase.m │ ├── IdentifyLargeTestCase.m │ ├── IdentifyTestCase.m │ ├── LargeFaceListTestCase.m │ ├── LargePersonGroupTestCase.m │ ├── MPOTestConstants.h │ ├── MPOTestHelpers.h │ ├── MPOTestHelpers.m │ ├── PersonGroupTestCase.m │ ├── SimilarTestCase.m │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ ├── VerifyTestCase.m │ └── en.lproj │ │ └── InfoPlist.strings └── utils │ ├── Colours │ ├── Colours.h │ ├── Colours.m │ └── LICENSE │ ├── CommonUtil.h │ ├── CommonUtil.m │ ├── ImageHelper │ ├── ImageHelper.h │ └── ImageHelper.m │ ├── MBProgressHUD │ ├── MBProgressHUD.h │ └── MBProgressHUD.m │ ├── UIImage+Crop.h │ ├── UIImage+Crop.m │ ├── UIImage+FixOrientation.h │ ├── UIImage+FixOrientation.m │ ├── UIImage+Resize.h │ ├── UIImage+Resize.m │ ├── UIViewController+BackButtonHandler.h │ ├── UIViewController+BackButtonHandler.m │ ├── UIViewController+DismissKeyboard.h │ ├── UIViewController+DismissKeyboard.m │ ├── ViewUtils.h │ └── ViewUtils.m ├── LICENSE-IMAGE.md ├── LICENSE.md ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── MPOAccessories.h │ ├── MPOAccessories.m │ ├── MPOAddPersistedFaceResult.h │ ├── MPOAddPersistedFaceResult.m │ ├── MPOBlur.h │ ├── MPOBlur.m │ ├── MPOCandidate.h │ ├── MPOCandidate.m │ ├── MPOCreatePersonResult.h │ ├── MPOCreatePersonResult.m │ ├── MPOExposure.h │ ├── MPOExposure.m │ ├── MPOFace.h │ ├── MPOFace.m │ ├── MPOFaceAttributes.h │ ├── MPOFaceAttributes.m │ ├── MPOFaceEmotion.h │ ├── MPOFaceEmotion.m │ ├── MPOFaceFeatureCoordinate.h │ ├── MPOFaceFeatureCoordinate.m │ ├── MPOFaceHeadPose.h │ ├── MPOFaceHeadPose.m │ ├── MPOFaceLandmarks.h │ ├── MPOFaceLandmarks.m │ ├── MPOFaceList.h │ ├── MPOFaceList.m │ ├── MPOFaceListMetadata.h │ ├── MPOFaceListMetadata.m │ ├── MPOFaceMetadata.h │ ├── MPOFaceMetadata.m │ ├── MPOFaceRectangle.h │ ├── MPOFaceRectangle.m │ ├── MPOFaceSDK.h │ ├── MPOFaceServiceClient.h │ ├── MPOFaceServiceClient.m │ ├── MPOFacialHair.h │ ├── MPOFacialHair.m │ ├── MPOGroupResult.h │ ├── MPOGroupResult.m │ ├── MPOHair.h │ ├── MPOHair.m │ ├── MPOIdentifyResult.h │ ├── MPOIdentifyResult.m │ ├── MPOLargeFaceList.h │ ├── MPOLargeFaceList.m │ ├── MPOLargePersonGroup.h │ ├── MPOLargePersonGroup.m │ ├── MPOMakeup.h │ ├── MPOMakeup.m │ ├── MPONoise.h │ ├── MPONoise.m │ ├── MPOOcclusion.h │ ├── MPOOcclusion.m │ ├── MPOPerson.h │ ├── MPOPerson.m │ ├── MPOPersonFace.h │ ├── MPOPersonFace.m │ ├── MPOPersonGroup.h │ ├── MPOPersonGroup.m │ ├── MPOSimilarFace.h │ ├── MPOSimilarFace.m │ ├── MPOSimilarPersistedFace.h │ ├── MPOSimilarPersistedFace.m │ ├── MPOTrainingStatus.h │ ├── MPOTrainingStatus.m │ ├── MPOVerifyResult.h │ └── MPOVerifyResult.m ├── ProjectOxfordFace.podspec ├── README.md ├── SampleScreenshots ├── SampleScreenshot1.jpg ├── SampleScreenshot2.jpg ├── SampleScreenshot3.jpg ├── SampleScreenshot4.jpg ├── SampleScreenshot5.jpg ├── SampleScreenshot6.jpg ├── SampleScreenshot7.jpg └── SampleScreenshot8.jpg └── _Pods.xcodeproj ├── project.pbxproj ├── project.xcworkspace └── contents.xcworkspacedata └── xcshareddata └── xcschemes └── ProjectOxfordFace.xcscheme /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Example/MainStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/MainStoryboard.storyboard -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/ProjectOxfordFace.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ProjectOxfordFace.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ProjectOxfordFace.xcodeproj/xcshareddata/xcschemes/ProjectOxfordFace-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace.xcodeproj/xcshareddata/xcschemes/ProjectOxfordFace-Example.xcscheme -------------------------------------------------------------------------------- /Example/ProjectOxfordFace.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/GroupPerson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/GroupPerson.h -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/GroupPerson.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/GroupPerson.m -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOAddPersonFaceController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOAddPersonFaceController.h -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOAddPersonFaceController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOAddPersonFaceController.m -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOAppDelegate.h -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOAppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOAppDelegate.mm -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPODetectionCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPODetectionCell.h -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPODetectionCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPODetectionCell.m -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPODetectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPODetectionViewController.h -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPODetectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPODetectionViewController.m -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOGroupSectionHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOGroupSectionHeaderView.h -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOGroupSectionHeaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOGroupSectionHeaderView.m -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOGroupingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOGroupingViewController.h -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOGroupingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOGroupingViewController.m -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOIdentificationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOIdentificationViewController.h -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOIdentificationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOIdentificationViewController.m -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOMainNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOMainNavigationController.h -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOMainNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOMainNavigationController.m -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOMainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOMainViewController.h -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOMainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOMainViewController.m -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOPersonFaceCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOPersonFaceCell.h -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOPersonFaceCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOPersonFaceCell.m -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOPersonFaceCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOPersonFaceCell.xib -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOPersonFacesController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOPersonFacesController.h -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOPersonFacesController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOPersonFacesController.m -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOPersonGroupController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOPersonGroupController.h -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOPersonGroupController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOPersonGroupController.m -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOPersonGroupListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOPersonGroupListController.h -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOPersonGroupListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOPersonGroupListController.m -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOSimilarFaceViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOSimilarFaceViewController.h -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOSimilarFaceViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOSimilarFaceViewController.m -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOSimpleFaceCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOSimpleFaceCell.h -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOSimpleFaceCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOSimpleFaceCell.m -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOSimpleFaceCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOSimpleFaceCell.xib -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOVerificationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOVerificationViewController.h -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/MPOVerificationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/MPOVerificationViewController.m -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/PersistedFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/PersistedFace.h -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/PersistedFace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/PersistedFace.m -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/PersonFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/PersonFace.h -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/PersonFace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/PersonFace.m -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/PersonGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/PersonGroup.h -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/PersonGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/PersonGroup.m -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/ProjectOxfordFace-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/ProjectOxfordFace-Info.plist -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/ProjectOxfordFace-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/ProjectOxfordFace-Prefix.pch -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/ProjectOxfordFace/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/ProjectOxfordFace/main.m -------------------------------------------------------------------------------- /Example/SampleImages/MSC12_John_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/SampleImages/MSC12_John_001.jpg -------------------------------------------------------------------------------- /Example/SampleImages/MSC12_John_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/SampleImages/MSC12_John_002.jpg -------------------------------------------------------------------------------- /Example/SampleImages/MSC13_ChrisA_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/SampleImages/MSC13_ChrisA_01.jpg -------------------------------------------------------------------------------- /Example/SampleImages/MSC13_ChrisA_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/SampleImages/MSC13_ChrisA_02.jpg -------------------------------------------------------------------------------- /Example/SampleImages/MSC13_ChrisA_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/SampleImages/MSC13_ChrisA_04.jpg -------------------------------------------------------------------------------- /Example/SampleImages/WIN12_Alberto_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/SampleImages/WIN12_Alberto_01.png -------------------------------------------------------------------------------- /Example/SampleImages/WIN12_Alberto_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/SampleImages/WIN12_Alberto_03.png -------------------------------------------------------------------------------- /Example/Tests/DetectTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/Tests/DetectTestCase.m -------------------------------------------------------------------------------- /Example/Tests/FaceListTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/Tests/FaceListTestCase.m -------------------------------------------------------------------------------- /Example/Tests/GroupTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/Tests/GroupTestCase.m -------------------------------------------------------------------------------- /Example/Tests/IdentifyLargeTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/Tests/IdentifyLargeTestCase.m -------------------------------------------------------------------------------- /Example/Tests/IdentifyTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/Tests/IdentifyTestCase.m -------------------------------------------------------------------------------- /Example/Tests/LargeFaceListTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/Tests/LargeFaceListTestCase.m -------------------------------------------------------------------------------- /Example/Tests/LargePersonGroupTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/Tests/LargePersonGroupTestCase.m -------------------------------------------------------------------------------- /Example/Tests/MPOTestConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/Tests/MPOTestConstants.h -------------------------------------------------------------------------------- /Example/Tests/MPOTestHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/Tests/MPOTestHelpers.h -------------------------------------------------------------------------------- /Example/Tests/MPOTestHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/Tests/MPOTestHelpers.m -------------------------------------------------------------------------------- /Example/Tests/PersonGroupTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/Tests/PersonGroupTestCase.m -------------------------------------------------------------------------------- /Example/Tests/SimilarTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/Tests/SimilarTestCase.m -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/VerifyTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/Tests/VerifyTestCase.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/utils/Colours/Colours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/utils/Colours/Colours.h -------------------------------------------------------------------------------- /Example/utils/Colours/Colours.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/utils/Colours/Colours.m -------------------------------------------------------------------------------- /Example/utils/Colours/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/utils/Colours/LICENSE -------------------------------------------------------------------------------- /Example/utils/CommonUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/utils/CommonUtil.h -------------------------------------------------------------------------------- /Example/utils/CommonUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/utils/CommonUtil.m -------------------------------------------------------------------------------- /Example/utils/ImageHelper/ImageHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/utils/ImageHelper/ImageHelper.h -------------------------------------------------------------------------------- /Example/utils/ImageHelper/ImageHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/utils/ImageHelper/ImageHelper.m -------------------------------------------------------------------------------- /Example/utils/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/utils/MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Example/utils/MBProgressHUD/MBProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/utils/MBProgressHUD/MBProgressHUD.m -------------------------------------------------------------------------------- /Example/utils/UIImage+Crop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/utils/UIImage+Crop.h -------------------------------------------------------------------------------- /Example/utils/UIImage+Crop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/utils/UIImage+Crop.m -------------------------------------------------------------------------------- /Example/utils/UIImage+FixOrientation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/utils/UIImage+FixOrientation.h -------------------------------------------------------------------------------- /Example/utils/UIImage+FixOrientation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/utils/UIImage+FixOrientation.m -------------------------------------------------------------------------------- /Example/utils/UIImage+Resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/utils/UIImage+Resize.h -------------------------------------------------------------------------------- /Example/utils/UIImage+Resize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/utils/UIImage+Resize.m -------------------------------------------------------------------------------- /Example/utils/UIViewController+BackButtonHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/utils/UIViewController+BackButtonHandler.h -------------------------------------------------------------------------------- /Example/utils/UIViewController+BackButtonHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/utils/UIViewController+BackButtonHandler.m -------------------------------------------------------------------------------- /Example/utils/UIViewController+DismissKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/utils/UIViewController+DismissKeyboard.h -------------------------------------------------------------------------------- /Example/utils/UIViewController+DismissKeyboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/utils/UIViewController+DismissKeyboard.m -------------------------------------------------------------------------------- /Example/utils/ViewUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/utils/ViewUtils.h -------------------------------------------------------------------------------- /Example/utils/ViewUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Example/utils/ViewUtils.m -------------------------------------------------------------------------------- /LICENSE-IMAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/LICENSE-IMAGE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/MPOAccessories.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOAccessories.h -------------------------------------------------------------------------------- /Pod/Classes/MPOAccessories.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOAccessories.m -------------------------------------------------------------------------------- /Pod/Classes/MPOAddPersistedFaceResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOAddPersistedFaceResult.h -------------------------------------------------------------------------------- /Pod/Classes/MPOAddPersistedFaceResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOAddPersistedFaceResult.m -------------------------------------------------------------------------------- /Pod/Classes/MPOBlur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOBlur.h -------------------------------------------------------------------------------- /Pod/Classes/MPOBlur.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOBlur.m -------------------------------------------------------------------------------- /Pod/Classes/MPOCandidate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOCandidate.h -------------------------------------------------------------------------------- /Pod/Classes/MPOCandidate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOCandidate.m -------------------------------------------------------------------------------- /Pod/Classes/MPOCreatePersonResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOCreatePersonResult.h -------------------------------------------------------------------------------- /Pod/Classes/MPOCreatePersonResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOCreatePersonResult.m -------------------------------------------------------------------------------- /Pod/Classes/MPOExposure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOExposure.h -------------------------------------------------------------------------------- /Pod/Classes/MPOExposure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOExposure.m -------------------------------------------------------------------------------- /Pod/Classes/MPOFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOFace.h -------------------------------------------------------------------------------- /Pod/Classes/MPOFace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOFace.m -------------------------------------------------------------------------------- /Pod/Classes/MPOFaceAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOFaceAttributes.h -------------------------------------------------------------------------------- /Pod/Classes/MPOFaceAttributes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOFaceAttributes.m -------------------------------------------------------------------------------- /Pod/Classes/MPOFaceEmotion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOFaceEmotion.h -------------------------------------------------------------------------------- /Pod/Classes/MPOFaceEmotion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOFaceEmotion.m -------------------------------------------------------------------------------- /Pod/Classes/MPOFaceFeatureCoordinate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOFaceFeatureCoordinate.h -------------------------------------------------------------------------------- /Pod/Classes/MPOFaceFeatureCoordinate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOFaceFeatureCoordinate.m -------------------------------------------------------------------------------- /Pod/Classes/MPOFaceHeadPose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOFaceHeadPose.h -------------------------------------------------------------------------------- /Pod/Classes/MPOFaceHeadPose.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOFaceHeadPose.m -------------------------------------------------------------------------------- /Pod/Classes/MPOFaceLandmarks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOFaceLandmarks.h -------------------------------------------------------------------------------- /Pod/Classes/MPOFaceLandmarks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOFaceLandmarks.m -------------------------------------------------------------------------------- /Pod/Classes/MPOFaceList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOFaceList.h -------------------------------------------------------------------------------- /Pod/Classes/MPOFaceList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOFaceList.m -------------------------------------------------------------------------------- /Pod/Classes/MPOFaceListMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOFaceListMetadata.h -------------------------------------------------------------------------------- /Pod/Classes/MPOFaceListMetadata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOFaceListMetadata.m -------------------------------------------------------------------------------- /Pod/Classes/MPOFaceMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOFaceMetadata.h -------------------------------------------------------------------------------- /Pod/Classes/MPOFaceMetadata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOFaceMetadata.m -------------------------------------------------------------------------------- /Pod/Classes/MPOFaceRectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOFaceRectangle.h -------------------------------------------------------------------------------- /Pod/Classes/MPOFaceRectangle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOFaceRectangle.m -------------------------------------------------------------------------------- /Pod/Classes/MPOFaceSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOFaceSDK.h -------------------------------------------------------------------------------- /Pod/Classes/MPOFaceServiceClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOFaceServiceClient.h -------------------------------------------------------------------------------- /Pod/Classes/MPOFaceServiceClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOFaceServiceClient.m -------------------------------------------------------------------------------- /Pod/Classes/MPOFacialHair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOFacialHair.h -------------------------------------------------------------------------------- /Pod/Classes/MPOFacialHair.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOFacialHair.m -------------------------------------------------------------------------------- /Pod/Classes/MPOGroupResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOGroupResult.h -------------------------------------------------------------------------------- /Pod/Classes/MPOGroupResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOGroupResult.m -------------------------------------------------------------------------------- /Pod/Classes/MPOHair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOHair.h -------------------------------------------------------------------------------- /Pod/Classes/MPOHair.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOHair.m -------------------------------------------------------------------------------- /Pod/Classes/MPOIdentifyResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOIdentifyResult.h -------------------------------------------------------------------------------- /Pod/Classes/MPOIdentifyResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOIdentifyResult.m -------------------------------------------------------------------------------- /Pod/Classes/MPOLargeFaceList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOLargeFaceList.h -------------------------------------------------------------------------------- /Pod/Classes/MPOLargeFaceList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOLargeFaceList.m -------------------------------------------------------------------------------- /Pod/Classes/MPOLargePersonGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOLargePersonGroup.h -------------------------------------------------------------------------------- /Pod/Classes/MPOLargePersonGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOLargePersonGroup.m -------------------------------------------------------------------------------- /Pod/Classes/MPOMakeup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOMakeup.h -------------------------------------------------------------------------------- /Pod/Classes/MPOMakeup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOMakeup.m -------------------------------------------------------------------------------- /Pod/Classes/MPONoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPONoise.h -------------------------------------------------------------------------------- /Pod/Classes/MPONoise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPONoise.m -------------------------------------------------------------------------------- /Pod/Classes/MPOOcclusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOOcclusion.h -------------------------------------------------------------------------------- /Pod/Classes/MPOOcclusion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOOcclusion.m -------------------------------------------------------------------------------- /Pod/Classes/MPOPerson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOPerson.h -------------------------------------------------------------------------------- /Pod/Classes/MPOPerson.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOPerson.m -------------------------------------------------------------------------------- /Pod/Classes/MPOPersonFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOPersonFace.h -------------------------------------------------------------------------------- /Pod/Classes/MPOPersonFace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOPersonFace.m -------------------------------------------------------------------------------- /Pod/Classes/MPOPersonGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOPersonGroup.h -------------------------------------------------------------------------------- /Pod/Classes/MPOPersonGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOPersonGroup.m -------------------------------------------------------------------------------- /Pod/Classes/MPOSimilarFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOSimilarFace.h -------------------------------------------------------------------------------- /Pod/Classes/MPOSimilarFace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOSimilarFace.m -------------------------------------------------------------------------------- /Pod/Classes/MPOSimilarPersistedFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOSimilarPersistedFace.h -------------------------------------------------------------------------------- /Pod/Classes/MPOSimilarPersistedFace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOSimilarPersistedFace.m -------------------------------------------------------------------------------- /Pod/Classes/MPOTrainingStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOTrainingStatus.h -------------------------------------------------------------------------------- /Pod/Classes/MPOTrainingStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOTrainingStatus.m -------------------------------------------------------------------------------- /Pod/Classes/MPOVerifyResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOVerifyResult.h -------------------------------------------------------------------------------- /Pod/Classes/MPOVerifyResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/Pod/Classes/MPOVerifyResult.m -------------------------------------------------------------------------------- /ProjectOxfordFace.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/ProjectOxfordFace.podspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/README.md -------------------------------------------------------------------------------- /SampleScreenshots/SampleScreenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/SampleScreenshots/SampleScreenshot1.jpg -------------------------------------------------------------------------------- /SampleScreenshots/SampleScreenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/SampleScreenshots/SampleScreenshot2.jpg -------------------------------------------------------------------------------- /SampleScreenshots/SampleScreenshot3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/SampleScreenshots/SampleScreenshot3.jpg -------------------------------------------------------------------------------- /SampleScreenshots/SampleScreenshot4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/SampleScreenshots/SampleScreenshot4.jpg -------------------------------------------------------------------------------- /SampleScreenshots/SampleScreenshot5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/SampleScreenshots/SampleScreenshot5.jpg -------------------------------------------------------------------------------- /SampleScreenshots/SampleScreenshot6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/SampleScreenshots/SampleScreenshot6.jpg -------------------------------------------------------------------------------- /SampleScreenshots/SampleScreenshot7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/SampleScreenshots/SampleScreenshot7.jpg -------------------------------------------------------------------------------- /SampleScreenshots/SampleScreenshot8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/SampleScreenshots/SampleScreenshot8.jpg -------------------------------------------------------------------------------- /_Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/_Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /_Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/_Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /_Pods.xcodeproj/xcshareddata/xcschemes/ProjectOxfordFace.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-iOS/HEAD/_Pods.xcodeproj/xcshareddata/xcschemes/ProjectOxfordFace.xcscheme --------------------------------------------------------------------------------