All Projects → vonholst → Ssdmobilenet_coreml

vonholst / Ssdmobilenet_coreml

Licence: mit
Real-time object-detection using SSD on Mobilenet on iOS using CoreML, exported using tf-coreml

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Ssdmobilenet coreml

Visualprogramminglanguage
Visual programming language written in Swift that assembles to executable Swift code. WWDC '18 scholarship submission.
Stars: ✭ 1,145 (+741.91%)
Mutual labels:  coreml
Face landmark dnn
Face Landmark Detector based on Mobilenet V1
Stars: ✭ 92 (-32.35%)
Mutual labels:  coreml
Exermote
Using Machine Learning to predict the type of exercise from movement data
Stars: ✭ 108 (-20.59%)
Mutual labels:  coreml
Ios Coreml Mnist
Real-time Number Recognition using Apple's CoreML 2.0 and MNIST -
Stars: ✭ 74 (-45.59%)
Mutual labels:  coreml
Flowersvisiondemo
🌸 iOS11 demo application for flower classification.
Stars: ✭ 90 (-33.82%)
Mutual labels:  coreml
Nsfwdetector
A NSFW (aka porn) detector with CoreML
Stars: ✭ 1,364 (+902.94%)
Mutual labels:  coreml
Testcoreml
A camera object recognition demo using the CoreML & AVCam framework. Required XCode 9 & iOS 11.
Stars: ✭ 60 (-55.88%)
Mutual labels:  coreml
Food101 Coreml
A CoreML model which classifies images of food
Stars: ✭ 119 (-12.5%)
Mutual labels:  coreml
Coremldemo
A simple demo for Core ML
Stars: ✭ 90 (-33.82%)
Mutual labels:  coreml
Yolov5
YOLOv5 🚀 in PyTorch > ONNX > CoreML > TFLite
Stars: ✭ 19,914 (+14542.65%)
Mutual labels:  coreml
Coreml Training
Source code for my blog post series "On-device training with Core ML"
Stars: ✭ 77 (-43.38%)
Mutual labels:  coreml
Unityvision Ios
This native plugin enables Unity to take advantage of specific features of Core-ML and Vision Framework on the iOS platform.
Stars: ✭ 85 (-37.5%)
Mutual labels:  coreml
Ios Learning Materials
📚Curated list of articles, web-resources, tutorials and code repositories that may help you dig a little bit deeper into iOS [and Apple Platforms].
Stars: ✭ 1,380 (+914.71%)
Mutual labels:  coreml
Face Marks
Detect facial landmarks with TensorFlow and CoreML on iPhone.
Stars: ✭ 69 (-49.26%)
Mutual labels:  coreml
Fast Style Transfer Coreml
Stars: ✭ 109 (-19.85%)
Mutual labels:  coreml
Espnetv2 Coreml
Semantic segmentation on iPhone using ESPNetv2
Stars: ✭ 66 (-51.47%)
Mutual labels:  coreml
Arkit Sampler
Code examples for ARKit.
Stars: ✭ 1,334 (+880.88%)
Mutual labels:  coreml
Cocoaai
🤖 The Cocoa Artificial Intelligence Lab
Stars: ✭ 134 (-1.47%)
Mutual labels:  coreml
Coreml In Arkit
Simple project to detect objects and display 3D labels above them in AR. This serves as a basic Template for an ARKit project to use CoreML.
Stars: ✭ 1,534 (+1027.94%)
Mutual labels:  coreml
Sentimentcoremldemo
😃 iOS11 demo application for sentiment polarity analysis.
Stars: ✭ 104 (-23.53%)
Mutual labels:  coreml

SSDMobileNet_CoreML

Real-time object-detection on iOS using CoreML model of SSD based on Mobilenet. This project contains an example-project for running real-time inference of that model on iOS.

To add the preprocessing to the coreml-model, I included some additional parameters in the convert-step (image_scale and bias). To make use of CoreVision's abilities to convert image-format / scaling, I added the image_input_names parameter:

coreml_model = tfcoreml.convert(
      tf_model_path=frozen_model_file,
      mlmodel_path=coreml_model_file,
      input_name_shape_dict=input_tensor_shapes,
      image_input_names="Preprocessor/sub:0",
      output_feature_names=output_tensor_names,
      image_scale=2./255.,
      red_bias=-1.0,
      green_bias=-1.0,
      blue_bias=-1.0
)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].