nishizawa23 / DeepVideoAnalytics

Analyze videos & images, perform detections, index frames & detected objects, search by examples.

Home Page:http://www.akshaybhat.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#Deep Video Analytics • Build Status Banner

Deep Video Analytics provides a platform for indexing and extracting information from videos and images. Deep learning detection and recognition algorithms are used for indexing individual frames / images along with detected objects. The goal of Deep Video analytics is to become a quickly customizable platform for developing visual & video analytics applications, while benefiting from seamless integration with state or the art models released by the vision research community.

self-promotion: If you are interested in Healthcare & Machine Learning please take a look at my another Open Source project Computational Healthcare

Features

  • Visual Search using Nearest Neighbors algorithm as a primary interface
  • Upload videos, multiple images (zip file with folder names as labels)
  • Provide Youtube url to be automatically processed/downloaded by youtube-dl
  • Metadata stored in Postgres
  • Operations (Querying, Frame extraction & Indexing) performed using celery tasks and RabbitMQ
  • Separate queues and workers for selection of machines with different specifications (GPU vs RAM)
  • Videos, frames, indexes, numpy vectors stored in media directory, served through nginx
  • Explore data, manually run code & tasks without UI via a jupyter notebook explore.ipynb
  • Some documentation on design decision, architecture and deployment.

Implemented algorithms/models

  • Google inception using Tensorflow
  • SSD Multibox 300
  • Alexnet indexing using Pytorch (disabled by default; set ALEX_ENABLE=1 in environment variable to use)
  • YOLO 9000 (disabled by default; set YOLO_ENABLE=1 in environment variable to use)

Potential algorithms/models

Open Issues

To Do

Please take a look at this board

Installation

Pre build docker images for both CPU and GPU version are now available on Docker Hub.

On Mac, Windows and Linux machines without NVidia GPUs

You need to have latest version of Docker installed.

git clone https://github.com/AKSHAYUBHAT/DeepVideoAnalytics && cd DeepVideoAnalytics/docker && docker-compose up 

Installation for machines with GPU or AWS P2.xlarge instances

Machine with NVidia GPU with Docker and nvidia-docker installed

Replace docker-compose by nvidia-docker-compose, the Dockerfile uses tensorflow gpu base image and appropriate version of pytorch. The Makefile for Darknet is also modified accordingly. This code was tested using an older NVidia Titan GPU and nvidia-docker.

pip install --upgrade nvidia-docker-compose
git clone https://github.com/AKSHAYUBHAT/DeepVideoAnalytics && cd DeepVideoAnalytics/docker_GPU && ./rebuild.sh && nvidia-docker-compose up 
AWS EC2 AMI available

Start a P2.xlarge instance with ami-b3cc1fa5 (N. Virginia), ports 8000, 6006, 8888 open (preferably to only your IP) and run following command after ssh'ing into the machine.

cd deepvideoanalytics && git pull && cd docker_GPU && ./rebuild.sh && nvidia-docker-compose up 

you can optionally specify "-d" at the end to detach it, but for the very first time its useful to read how each container is started. After approximately 3 ~ 5 minutes the user interface will appear on port 8000 of the instance ip. The Process used for AMI creation is here Security warning! The current GPU container uses nginx <-> uwsgi <-> django setup to ensure smooth playback of videos. However it runs nginix as root (though within the container). Considering that you can now modify AWS Security rules on-the-fly, I highly recommend allowing inbound traffic only from your own IP address.

Deployment on multiple machines with/without GPUs

Other than the shared media folder (ideally a mounted EFS or NFS), Postgres and RabbitMQ are straightforward. Please read this regarding trade offs.

Options specified via environment variable

E.g. by specifying them in docker-compose.yml

  • ALEX_ENABLE=1 (to use Alexnet with PyTorch. Otherwise disabled by default)
  • YOLO_ENABLE=1 (to use YOLO 9000. Otherwise disabled by default)
  • SCENEDETECT_DISABLE=1 (to disable scene detection, Otherwise enabled by default)

Architecture

Architecture

User Interface

Search

UI Screenshot

Past queries

UI Screenshot

Video list / detail

UI Screenshot UI Screenshot

Frame detail

UI Screenshot

Libraries & Code used

References

Citation for Deep Video Analytics

Coming soon!

Copyright

Copyright 2016-2017, Akshay Bhat, Cornell University, All rights reserved.

About

Analyze videos & images, perform detections, index frames & detected objects, search by examples.

http://www.akshaybhat.com


Languages

Language:Python 39.6%Language:C++ 30.4%Language:HTML 13.0%Language:C 5.6%Language:Jupyter Notebook 4.0%Language:Cuda 4.0%Language:CSS 2.7%Language:Makefile 0.5%Language:Assembly 0.0%Language:PHP 0.0%Language:Shell 0.0%Language:Nginx 0.0%