Skip to content

chtorr/go-tensorflow-realtime-object-detection

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Real-time object detection with Go, Tensorflow, and OpenCV

About

This is a small demo app using Go, Tensorflow, and OpenCV to detect objects objects in real time using the Google provided Tensorflow Object Dection API project models. This project is primarily an example of gluing all of the components together into a functional demo that should be relatively cross platform, though there are likely numerous optimizations that could be made.

Additionally, one of my goals was to explore the viability of Go as an option for a local high performance app with a UI (instaed of C++ or Java), and I'm happy with the initial results.

Components

Webcam capture and image pre-processing is done with GoCV.

Each captured frame is run in realtime through a model from the Tensorflow Object Dection API project, which outputs object bounding boxes and confidence ratings.

The prediction code is laregely adapted from https://github.com/ActiveState/gococo.

Most of my testing has been with the ssd_mobilenet_v1_coco model as it runs well without a GPU. Additional models are available in the model detection zoo.

This project uses Pixel to display the image and render bounding boxes and labels using OpenGL. This isn't strictly neccessary, but I find the additional tools provided by Pixel useful (somewhat akin to the openFrameworks toolbox for c++). It could easily be swapped out, like for a mjpeg http stream and a web ui (for example).

Performance

On a 2015 Macbook Pro using ssd_mobilenet_v1_coco and CPU-only inference I can get ~15-20 fps. The non-mobilenet models are of course much slower without a GPU. Compiling tensorflow with AVX support gave a boost of 2-3 fps. Additional speed can be gained tuning the model score_threshold and re-exporting. Also, you should be able to link the GPU Tensorflow library without needing to change anything in this project.

Installation

I've not vendored dependencies as they rely on system level C libraries, which makes things a bit funky. It's doable, but not worth it for a demo.

  1. Git clone this repo
  2. Install gocv and OpenCV following these instruction: https://github.com/hybridgroup/gocv#how-to-install
  3. Install Tensorflow and the go bindings: https://www.tensorflow.org/install/install_go
  4. Install Pixel https://github.com/faiface/pixel#pixel----
  5. Download and extract a model from the model zoo, ssd_mobilenet_v1_coco is a good starting point.
  6. go run src/main.go -device 0 -dir <path_to_model_dir>

You should be able to execute something like this on osx:

# this repo
git clone https://github.com/chtorr/go-tensorflow-object-detection.git
cd go-tensorflow-objection-detection
# gocv
brew install opencv
go get -u -d gocv.io/x/gocv
source $GOPATH/src/gocv.io/x/gocv/env.sh
# tensorflow
TF_TYPE="cpu" # Change to "gpu" for GPU support
 TARGET_DIRECTORY='/usr/local'
 curl -L \
   "https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-${TF_TYPE}-$(go env GOOS)-x86_64-1.3.0.tar.gz" |
 sudo tar -C $TARGET_DIRECTORY -xz
go get github.com/tensorflow/tensorflow/tensorflow/go
# pixel
go get github.com/faiface/pixel
# get the ssd mobilenet model
mkdir -p models
curl -L "http://download.tensorflow.org/models/object_detection/ssd_mobilenet_v1_coco_11_06_2017.tar.gz" | tar -C models -xz
# run it
go run src/main.go -device 0 -dir models/ssd_mobilenet_v1_coco_11_06_2017

About

Real-time object detection with Go and Tensorflow

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages