├── .gitignore ├── README.md ├── benchmark.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── xcshareddata │ └── xcschemes │ │ └── benchmark.xcscheme └── xcuserdata │ └── eliotandres.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── benchmark ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── DeepLab.mlmodel ├── Info.plist ├── UIImage+CVPixelBuffer.swift ├── ViewController.swift ├── benchmark_iphone_11.jpg └── cat.jpg └── benchmark_iphone_11.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photoroom/coreml-benchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photoroom/coreml-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /benchmark.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photoroom/coreml-benchmark/HEAD/benchmark.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /benchmark.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photoroom/coreml-benchmark/HEAD/benchmark.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /benchmark.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photoroom/coreml-benchmark/HEAD/benchmark.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /benchmark.xcodeproj/xcshareddata/xcschemes/benchmark.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photoroom/coreml-benchmark/HEAD/benchmark.xcodeproj/xcshareddata/xcschemes/benchmark.xcscheme -------------------------------------------------------------------------------- /benchmark.xcodeproj/xcuserdata/eliotandres.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photoroom/coreml-benchmark/HEAD/benchmark.xcodeproj/xcuserdata/eliotandres.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /benchmark/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photoroom/coreml-benchmark/HEAD/benchmark/AppDelegate.swift -------------------------------------------------------------------------------- /benchmark/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photoroom/coreml-benchmark/HEAD/benchmark/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /benchmark/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photoroom/coreml-benchmark/HEAD/benchmark/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /benchmark/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photoroom/coreml-benchmark/HEAD/benchmark/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /benchmark/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photoroom/coreml-benchmark/HEAD/benchmark/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /benchmark/DeepLab.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photoroom/coreml-benchmark/HEAD/benchmark/DeepLab.mlmodel -------------------------------------------------------------------------------- /benchmark/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photoroom/coreml-benchmark/HEAD/benchmark/Info.plist -------------------------------------------------------------------------------- /benchmark/UIImage+CVPixelBuffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photoroom/coreml-benchmark/HEAD/benchmark/UIImage+CVPixelBuffer.swift -------------------------------------------------------------------------------- /benchmark/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photoroom/coreml-benchmark/HEAD/benchmark/ViewController.swift -------------------------------------------------------------------------------- /benchmark/benchmark_iphone_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photoroom/coreml-benchmark/HEAD/benchmark/benchmark_iphone_11.jpg -------------------------------------------------------------------------------- /benchmark/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photoroom/coreml-benchmark/HEAD/benchmark/cat.jpg -------------------------------------------------------------------------------- /benchmark_iphone_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photoroom/coreml-benchmark/HEAD/benchmark_iphone_11.jpg --------------------------------------------------------------------------------