All Projects → makefile → objdet_web

makefile / objdet_web

Licence: other
Image object detection demo(YOLO,SSD,etc.) running as a Flask web server.

Programming Languages

python
139335 projects - #7 most used programming language
javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to objdet web

Object-Detection-Tensorflow
Object Detection API Tensorflow
Stars: ✭ 275 (+428.85%)
Mutual labels:  yolo, ssd
Ssd.tensorflow
State-of-the-art Single Shot MultiBox Detector in Pure TensorFlow, QQ Group: 758790869
Stars: ✭ 334 (+542.31%)
Mutual labels:  yolo, ssd
Object Detection Api Tensorflow
Object Detection API Tensorflow
Stars: ✭ 267 (+413.46%)
Mutual labels:  yolo, ssd
Ssd Tensorflow
Single Shot MultiBox Detector in TensorFlow
Stars: ✭ 4,066 (+7719.23%)
Mutual labels:  yolo, ssd
Cv Papers
计算机视觉相关论文整理、记录、分享; 包括图像分类、目标检测、视觉跟踪/目标跟踪、人脸识别/人脸验证、OCR/场景文本检测及识别等领域。欢迎加星,欢迎指正错误,同时也期待能够共同参与!!! 持续更新中... ...
Stars: ✭ 738 (+1319.23%)
Mutual labels:  yolo, ssd
Ssds.pytorch
Repository for Single Shot MultiBox Detector and its variants, implemented with pytorch, python3.
Stars: ✭ 570 (+996.15%)
Mutual labels:  yolo, ssd
Rectlabel Support
RectLabel - An image annotation tool to label images for bounding box object detection and segmentation.
Stars: ✭ 338 (+550%)
Mutual labels:  yolo, ssd
Vehicle Detection
Compare FasterRCNN,Yolo,SSD model with the same dataset
Stars: ✭ 130 (+150%)
Mutual labels:  yolo, ssd
DL.EyeSight
Mainly use SSD, YOLO and other models to solve the target detection problem in image and video !
Stars: ✭ 48 (-7.69%)
Mutual labels:  yolo, ssd
multiple-object-tracking
combine state of art deep neural network based detectors with most efficient trackers to solve motion based multiple objects tracking problems
Stars: ✭ 25 (-51.92%)
Mutual labels:  yolo
Fourier-Analysis-Digital-Images
Fourier analysis applications for image matching.
Stars: ✭ 18 (-65.38%)
Mutual labels:  ssd
darknet ros
Robotics Operating System Package for Yolo v3 based on darknet with optimized tracking using Kalman Filter and Optical Flow.
Stars: ✭ 51 (-1.92%)
Mutual labels:  yolo
tensorflow-example-java
This is a Tensorflow Java example application what uses YOLOv2 model and Gradle for build and dependency management.
Stars: ✭ 49 (-5.77%)
Mutual labels:  yolo
Yolo-Annotation-Tool-New-
No description or website provided.
Stars: ✭ 71 (+36.54%)
Mutual labels:  yolo
SSD-Pruning-and-quantization
Pruning and quantization for SSD. Model compression.
Stars: ✭ 19 (-63.46%)
Mutual labels:  ssd
Custom-Object-Detection-using-Darkflow
Make custom objects dataset and detect them using darkflow. Darkflow is a tensorflow translation of Darknet.
Stars: ✭ 21 (-59.62%)
Mutual labels:  yolo
diyca
Do-It-Yourself Certificate Authority
Stars: ✭ 18 (-65.38%)
Mutual labels:  flask-web
YOLO-Object-Counting-API
The code of the Object Counting API, implemented with the YOLO algorithm and with the SORT algorithm
Stars: ✭ 131 (+151.92%)
Mutual labels:  yolo
TensorRT-LPR
车牌识别,基于HyperLPR实现,修改模型调用方法,使用caffe+tensorRT实现GPU加速,修改了车牌检测模型
Stars: ✭ 14 (-73.08%)
Mutual labels:  yolo
SSD-Tensorflow2.0
A Tensorflow2.0 implementation of Single Shot Detector
Stars: ✭ 25 (-51.92%)
Mutual labels:  ssd

Object Detection Web Demo

Image object detection demo(YOLO,SSD, Faster rcnn, etc.) running as a Flask web server.

Notice This repo is not a turnkey project for object detection web system but an easy template for those who are not familiar with Web development just like me. You need to understand and modify the code little or much to use.

Requirements

The demo server requires Python with some dependencies. To make sure you have the dependencies, please run pip install -r examples/web_demo/requirements.txt.

Run

Running python app.py will bring up the demo server, accessible at http://0.0.0.0:5000. You can enable debug mode of the web server, or switch to a different port:

% python app.py -h
Usage: app.py [options]

Options:
  -h, --help            show this help message and exit
  -d, --debug           enable debug mode
  -p PORT, --port=PORT  which port to serve content on

More

The Javascript code static/js/template.js includes several part:

  • use of Dropzone.js(Drag and drop file plugin) to upload image and get result with AJAX.
  • parse JSON result and draw rectangles on image in browser canvas.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].