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

'google/protobuf/stubs/common.h' file not found #23

Closed wangzhenjjcn closed 6 years ago

wangzhenjjcn commented 6 years ago

'google/protobuf/stubs/common.h' file not found

include <google/protobuf/stubs/common.h> 。 line9 at string_int_map_pb.h

madhavajay commented 6 years ago

This probably means it can't find the protobuf library in your TensorFlow folder. Make sure you have TF_ROOT set correctly in the tf_root.xcconfig file.

Also make sure you are on the right TensorFlow tag, currently its 1.4.0 and then compile it all using the instructions in the README.

wangzhenjjcn commented 6 years ago

Done