├── CoreMLDemo-master ├── CoreMLDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ ├── alexeykorotkov.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── simon.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── alexeykorotkov.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── simon.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── CoreMLDemo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift └── ObjectDetector.mlmodel ├── README.md └── images ├── doc_detector_result.gif ├── dog_detector_markup.gif └── logo_vector.svg /CoreMLDemo-master/CoreMLDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeml-app/Still-Object-Recognition-CoreML/HEAD/CoreMLDemo-master/CoreMLDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CoreMLDemo-master/CoreMLDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeml-app/Still-Object-Recognition-CoreML/HEAD/CoreMLDemo-master/CoreMLDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CoreMLDemo-master/CoreMLDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeml-app/Still-Object-Recognition-CoreML/HEAD/CoreMLDemo-master/CoreMLDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CoreMLDemo-master/CoreMLDemo.xcodeproj/project.xcworkspace/xcuserdata/alexeykorotkov.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeml-app/Still-Object-Recognition-CoreML/HEAD/CoreMLDemo-master/CoreMLDemo.xcodeproj/project.xcworkspace/xcuserdata/alexeykorotkov.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CoreMLDemo-master/CoreMLDemo.xcodeproj/project.xcworkspace/xcuserdata/simon.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeml-app/Still-Object-Recognition-CoreML/HEAD/CoreMLDemo-master/CoreMLDemo.xcodeproj/project.xcworkspace/xcuserdata/simon.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CoreMLDemo-master/CoreMLDemo.xcodeproj/xcuserdata/alexeykorotkov.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeml-app/Still-Object-Recognition-CoreML/HEAD/CoreMLDemo-master/CoreMLDemo.xcodeproj/xcuserdata/alexeykorotkov.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /CoreMLDemo-master/CoreMLDemo.xcodeproj/xcuserdata/alexeykorotkov.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeml-app/Still-Object-Recognition-CoreML/HEAD/CoreMLDemo-master/CoreMLDemo.xcodeproj/xcuserdata/alexeykorotkov.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CoreMLDemo-master/CoreMLDemo.xcodeproj/xcuserdata/simon.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeml-app/Still-Object-Recognition-CoreML/HEAD/CoreMLDemo-master/CoreMLDemo.xcodeproj/xcuserdata/simon.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CoreMLDemo-master/CoreMLDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeml-app/Still-Object-Recognition-CoreML/HEAD/CoreMLDemo-master/CoreMLDemo/AppDelegate.swift -------------------------------------------------------------------------------- /CoreMLDemo-master/CoreMLDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeml-app/Still-Object-Recognition-CoreML/HEAD/CoreMLDemo-master/CoreMLDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CoreMLDemo-master/CoreMLDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeml-app/Still-Object-Recognition-CoreML/HEAD/CoreMLDemo-master/CoreMLDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CoreMLDemo-master/CoreMLDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeml-app/Still-Object-Recognition-CoreML/HEAD/CoreMLDemo-master/CoreMLDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CoreMLDemo-master/CoreMLDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeml-app/Still-Object-Recognition-CoreML/HEAD/CoreMLDemo-master/CoreMLDemo/Info.plist -------------------------------------------------------------------------------- /CoreMLDemo-master/CoreMLDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeml-app/Still-Object-Recognition-CoreML/HEAD/CoreMLDemo-master/CoreMLDemo/ViewController.swift -------------------------------------------------------------------------------- /CoreMLDemo-master/ObjectDetector.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeml-app/Still-Object-Recognition-CoreML/HEAD/CoreMLDemo-master/ObjectDetector.mlmodel -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeml-app/Still-Object-Recognition-CoreML/HEAD/README.md -------------------------------------------------------------------------------- /images/doc_detector_result.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeml-app/Still-Object-Recognition-CoreML/HEAD/images/doc_detector_result.gif -------------------------------------------------------------------------------- /images/dog_detector_markup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeml-app/Still-Object-Recognition-CoreML/HEAD/images/dog_detector_markup.gif -------------------------------------------------------------------------------- /images/logo_vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeml-app/Still-Object-Recognition-CoreML/HEAD/images/logo_vector.svg --------------------------------------------------------------------------------