Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cocoa-ai/inceptionvisiondemo
🎥 iOS11 demo application for dominant objects detection.
https://github.com/cocoa-ai/inceptionvisiondemo
coreml inceptionv3 ios machine-learning object-classification object-detection swift swift4 vision
Last synced: 6 days ago
JSON representation
🎥 iOS11 demo application for dominant objects detection.
- Host: GitHub
- URL: https://github.com/cocoa-ai/inceptionvisiondemo
- Owner: cocoa-ai
- License: mit
- Created: 2017-06-29T22:07:41.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-02T18:37:09.000Z (about 7 years ago)
- Last Synced: 2024-08-10T14:20:56.182Z (3 months ago)
- Topics: coreml, inceptionv3, ios, machine-learning, object-classification, object-detection, swift, swift4, vision
- Language: Swift
- Homepage: https://github.com/cocoa-ai
- Size: 1.34 MB
- Stars: 54
- Watchers: 5
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Inception Vision Demo
A Demo application using `Vision` and `CoreML` frameworks to detect the
dominant objects presented in a live video feed from a set of 1000 categories
such as trees, animals, food, vehicles, people, and more.
## Model
This demo uses "Inception v3" [CoreML model](https://developer.apple.com/machine-learning/).
## Requirements
- Xcode 9
- iOS 11## Installation
```sh
git clone https://github.com/cocoa-ai/InceptionVisionDemo.git
cd InceptionVisionDemo
pod install
open Inception.xcworkspace/
```Download the CoreMl model from https://developer.apple.com/machine-learning/
and add the file to "Resources" folder in the project's directory.Build the project and run it on a simulator or a device with iOS 11.
## Author
Vadym Markov, [email protected]
## References
- [Caffe Model Zoo](https://github.com/caffe2/caffe2/wiki/Model-Zoo)
- [Apple Machine Learning](https://developer.apple.com/machine-learning/)
- [Vision Framework](https://developer.apple.com/documentation/vision)
- [CoreML Framework](https://developer.apple.com/documentation/coreml)
- [coremltools](https://pypi.python.org/pypi/coremltools)