├── .github └── workflows │ └── feed.yml ├── .gitignore ├── CoreML.playgroundbook └── Contents │ ├── Chapters │ └── CoreML.playgroundchapter │ │ ├── Manifest.plist │ │ └── Pages │ │ ├── ObjectDetectionCamera.playgroundpage │ │ ├── Manifest.plist │ │ └── main.swift │ │ ├── ObjectDetectionCameraVision.playgroundpage │ │ ├── Manifest.plist │ │ └── main.swift │ │ ├── ObjectRecognitionCamera.playgroundpage │ │ ├── Manifest.plist │ │ └── main.swift │ │ ├── ObjectRecognitionCameraVision.playgroundpage │ │ ├── Manifest.plist │ │ └── main.swift │ │ ├── ObjectRecognitionImage.playgroundpage │ │ ├── LiveView.swift │ │ ├── Manifest.plist │ │ └── main.swift │ │ ├── ObjectRecognitionImageVision.playgroundpage │ │ ├── LiveView.swift │ │ ├── Manifest.plist │ │ └── main.swift │ │ └── Template.playgroundpage │ │ ├── Manifest.plist │ │ └── main.swift │ ├── Manifest.plist │ ├── PrivateResources │ └── cover.png │ ├── PublicResources │ └── IMG_0032.JPG │ └── UserModules │ ├── PreviewViewController.playgroundmodule │ └── Sources │ │ └── PreviewViewController.swift │ └── UserCode.playgroundmodule │ └── Sources │ └── UserSource.swift ├── LICENSE ├── README.md └── images ├── banner.png ├── capture.gif ├── how-to-import-model.jpg ├── preview.png └── thumbnail.png /.github/workflows/feed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/.github/workflows/feed.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.mlmodel 2 | CoreML.playgroundbook/Edits -------------------------------------------------------------------------------- /CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Manifest.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Manifest.plist -------------------------------------------------------------------------------- /CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectDetectionCamera.playgroundpage/Manifest.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectDetectionCamera.playgroundpage/Manifest.plist -------------------------------------------------------------------------------- /CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectDetectionCamera.playgroundpage/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectDetectionCamera.playgroundpage/main.swift -------------------------------------------------------------------------------- /CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectDetectionCameraVision.playgroundpage/Manifest.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectDetectionCameraVision.playgroundpage/Manifest.plist -------------------------------------------------------------------------------- /CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectDetectionCameraVision.playgroundpage/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectDetectionCameraVision.playgroundpage/main.swift -------------------------------------------------------------------------------- /CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectRecognitionCamera.playgroundpage/Manifest.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectRecognitionCamera.playgroundpage/Manifest.plist -------------------------------------------------------------------------------- /CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectRecognitionCamera.playgroundpage/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectRecognitionCamera.playgroundpage/main.swift -------------------------------------------------------------------------------- /CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectRecognitionCameraVision.playgroundpage/Manifest.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectRecognitionCameraVision.playgroundpage/Manifest.plist -------------------------------------------------------------------------------- /CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectRecognitionCameraVision.playgroundpage/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectRecognitionCameraVision.playgroundpage/main.swift -------------------------------------------------------------------------------- /CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectRecognitionImage.playgroundpage/LiveView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectRecognitionImage.playgroundpage/LiveView.swift -------------------------------------------------------------------------------- /CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectRecognitionImage.playgroundpage/Manifest.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectRecognitionImage.playgroundpage/Manifest.plist -------------------------------------------------------------------------------- /CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectRecognitionImage.playgroundpage/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectRecognitionImage.playgroundpage/main.swift -------------------------------------------------------------------------------- /CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectRecognitionImageVision.playgroundpage/LiveView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectRecognitionImageVision.playgroundpage/LiveView.swift -------------------------------------------------------------------------------- /CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectRecognitionImageVision.playgroundpage/Manifest.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectRecognitionImageVision.playgroundpage/Manifest.plist -------------------------------------------------------------------------------- /CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectRecognitionImageVision.playgroundpage/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/ObjectRecognitionImageVision.playgroundpage/main.swift -------------------------------------------------------------------------------- /CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/Template.playgroundpage/Manifest.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/Template.playgroundpage/Manifest.plist -------------------------------------------------------------------------------- /CoreML.playgroundbook/Contents/Chapters/CoreML.playgroundchapter/Pages/Template.playgroundpage/main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CoreML.playgroundbook/Contents/Manifest.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/CoreML.playgroundbook/Contents/Manifest.plist -------------------------------------------------------------------------------- /CoreML.playgroundbook/Contents/PrivateResources/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/CoreML.playgroundbook/Contents/PrivateResources/cover.png -------------------------------------------------------------------------------- /CoreML.playgroundbook/Contents/PublicResources/IMG_0032.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/CoreML.playgroundbook/Contents/PublicResources/IMG_0032.JPG -------------------------------------------------------------------------------- /CoreML.playgroundbook/Contents/UserModules/PreviewViewController.playgroundmodule/Sources/PreviewViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/CoreML.playgroundbook/Contents/UserModules/PreviewViewController.playgroundmodule/Sources/PreviewViewController.swift -------------------------------------------------------------------------------- /CoreML.playgroundbook/Contents/UserModules/UserCode.playgroundmodule/Sources/UserSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/CoreML.playgroundbook/Contents/UserModules/UserCode.playgroundmodule/Sources/UserSource.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/README.md -------------------------------------------------------------------------------- /images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/images/banner.png -------------------------------------------------------------------------------- /images/capture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/images/capture.gif -------------------------------------------------------------------------------- /images/how-to-import-model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/images/how-to-import-model.jpg -------------------------------------------------------------------------------- /images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/images/preview.png -------------------------------------------------------------------------------- /images/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkebo/coreml-playground/HEAD/images/thumbnail.png --------------------------------------------------------------------------------