写于2017/7/21
tensorflow object detection API是google在tensorflow的平台上实现的当下主流的目标检测框架,下面记录一下自己的使用实例
网址:https://github.com/tensorflow/models/tree/master/object_detection
1)安装依赖项
安装需要的依赖在API的主页上已经说明了,除了需要tensorflow预先安装好之外,还需要安装其他的依赖项
#对于ubuntu 16.04用户
sudo apt-get install protobuf-compiler python-pil python-lxml
sudo pip install jupyter
sudo pip install matplotlib
#对于其他版本ubuntu用户(我的是ubuntu 14.04)
sudo pip install pillow
sudo pip install lxml
sudo pip install