Giter VIP home page Giter VIP logo

go-tensorflow-realtime-object-detection's Introduction

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

go-tensorflow-realtime-object-detection's People

Contributors

chtorr avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.