JieHe96 / iOS_Tensorflow_ObjectDetection_Example

An iOS application of Tensorflow Object Detection with different models: SSD with Mobilenet, SSD with InceptionV2, Faster-RCNN-resnet101
128 stars 28 forks source link

Tensorflow master supports per arch iOS builds now #17

Open powderluv opened 7 years ago

powderluv commented 7 years ago

https://github.com/tensorflow/tensorflow/pull/13959 just landed so now you wouldn't need all the custom Makefiles and modifications. I also landed https://github.com/powderluv/tensorflow/commit/029ce4ed70a1d8644a8e1c11345bcae2416a2a6d

which will allow you to build with

ANDROID_TYPES="-D__ANDROID_TYPES_FULL" \ ./tensorflow/contrib/makefile/build_all_ios.sh

The only missing feature now is the selective registration which I will work on next. Hope it helps simplify your example. I found it every useful.

powderluv commented 7 years ago

Here is the PR to support selective registration in master https://github.com/tensorflow/tensorflow/pull/14421