tuyennhoangg / Object-detection

Object detection project for real-time (webcam) and offline (video processing) application.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Object-detection

Apply tensorflow object detection on input video stream. One could use webcam (or any other device) stream or send a video file. It is possible to write Output put file with detection boxes.

To use it:

Clone repo in your working directory

Build docker image:

docker build -t realtime-objectdetection .

Configure script (see bellow)

Launch script:

bash runDocker.sh

To configure it:

Configuration is made in exec.sh at python function call:

python3 my-object-detection.py ...

All possible arguments are:

-n (--num-frames): type=int, default=0: # of frames to loop over for FPS test

-d (--display), type=int, default=0: Whether or not frames should be displayed

-f (--fullscreen), type=int, default=0: Enable full screen

-o (--output), type=int, default=0: Whether or not modified videos shall be writen

-on (--output-name), type=str, default="output": Name of the output video file

-I (--input-device), type=int, default=0: Device number input

-i (--input-videos), type=str, default="": Path to videos input, overwrite device input if used

-w (--num-workers), type=int, default=2: Number of workers

-q-size (--queue-size), type=int, default=5: Size of the queue

-l (--logger-debug), type=int, default=0: Print logger debug

Suggested numbers of workers and queues size:

  • Webcam stream: default values
  • Video stream: 20 workers, 150 queue size (Maybe little hand tunning could be done)

Inputs file are in inputs/ folder

Outputs file are in outputs/ folder (.avi)

Remarks for Tensorflow on machines with older CPUs (from Sinan81):

From Tensorflow developers: "Starting with TensorFlow 1.6, binaries use AVX instructions which may not run on older CPUs." Hence, on machines with older CPUS, one might get an SSE4.1 compatibility runtime error as discussed in Issue #14. Hence, Tensorflow pip package v1.5 or earlier needs to be used (which might lead to some other runtime error), or else Tensorflow pip package must be built from source as discussed in [https://www.tensorflow.org/install/source]

About

Object detection project for real-time (webcam) and offline (video processing) application.

License:MIT License


Languages

Language:Python 84.3%Language:Dockerfile 13.6%Language:Shell 2.1%