All Projects → kuhung → Ssd_keras

kuhung / Ssd_keras

Licence: mit
简明 SSD 目标检测模型 keras version(交通标志识别 训练部分见 dev 分支)

Projects that are alternatives of or similar to Ssd keras

Ssd Tensorflow
Single Shot MultiBox Detector in TensorFlow
Stars: ✭ 4,066 (+2575%)
Mutual labels:  object-detection, jupyter-notebook, ssd
Traffic Sign Detection
Traffic Sign Detection. Code for the paper entitled "Evaluation of deep neural networks for traffic sign detection systems".
Stars: ✭ 200 (+31.58%)
Mutual labels:  object-detection, jupyter-notebook, ssd
Tensorflow2.0 Examples
🙄 Difficult algorithm, Simple code.
Stars: ✭ 1,397 (+819.08%)
Mutual labels:  object-detection, jupyter-notebook
Ssd Pytorch
SSD: Single Shot MultiBox Detector pytorch implementation focusing on simplicity
Stars: ✭ 107 (-29.61%)
Mutual labels:  object-detection, ssd
Robust Physical Attack
Physical adversarial attack for fooling the Faster R-CNN object detector
Stars: ✭ 115 (-24.34%)
Mutual labels:  object-detection, jupyter-notebook
Tf Object Detection
Simpler app for tensorflow object detection API
Stars: ✭ 91 (-40.13%)
Mutual labels:  object-detection, ssd
Soccer Ball Detection Yolov2
YOLOv2 trained against custom dataset
Stars: ✭ 97 (-36.18%)
Mutual labels:  object-detection, jupyter-notebook
Colab Mask Rcnn
How to run Object Detection and Segmentation on a Video Fast for Free
Stars: ✭ 114 (-25%)
Mutual labels:  object-detection, jupyter-notebook
Fish detection
Fish detection using Open Images Dataset and Tensorflow Object Detection
Stars: ✭ 67 (-55.92%)
Mutual labels:  object-detection, jupyter-notebook
Object detection demo
How to train an object detection model easy for free
Stars: ✭ 130 (-14.47%)
Mutual labels:  object-detection, jupyter-notebook
Robust Detection Benchmark
Code, data and benchmark from the paper "Benchmarking Robustness in Object Detection: Autonomous Driving when Winter is Coming" (NeurIPS 2019 ML4AD)
Stars: ✭ 128 (-15.79%)
Mutual labels:  object-detection, jupyter-notebook
Copy Paste Aug
Copy-paste augmentation for segmentation and detection tasks
Stars: ✭ 132 (-13.16%)
Mutual labels:  object-detection, jupyter-notebook
Text Detection Using Yolo Algorithm In Keras Tensorflow
Implemented the YOLO algorithm for scene text detection in keras-tensorflow (No object detection API used) The code can be tweaked to train for a different object detection task using YOLO.
Stars: ✭ 87 (-42.76%)
Mutual labels:  object-detection, jupyter-notebook
Fcos tensorflow
FCOS: Fully Convolutional One-Stage Object Detection.
Stars: ✭ 87 (-42.76%)
Mutual labels:  object-detection, jupyter-notebook
Airbnb Amenity Detection
Repo for 42 days project to replicate/improve Airbnb's amenity (object) detection pipeline.
Stars: ✭ 101 (-33.55%)
Mutual labels:  object-detection, jupyter-notebook
Tracktor
Python and OpenCV based object tracking software
Stars: ✭ 76 (-50%)
Mutual labels:  object-detection, jupyter-notebook
Kerasobjectdetector
Keras Object Detection API with YOLK project 🍳
Stars: ✭ 113 (-25.66%)
Mutual labels:  object-detection, jupyter-notebook
Ssd keras
A Keras port of Single Shot MultiBox Detector
Stars: ✭ 1,763 (+1059.87%)
Mutual labels:  object-detection, ssd
Mmdetection object detection demo
How to train an object detection model with mmdetection
Stars: ✭ 55 (-63.82%)
Mutual labels:  object-detection, jupyter-notebook
Ssd keras
Port of Single Shot MultiBox Detector to Keras
Stars: ✭ 1,101 (+624.34%)
Mutual labels:  object-detection, jupyter-notebook

Single Shot MultiBox Detector Keras version.

SSD是一种Object Detection方法。本文是基于论文SSD: Single Shot MultiBox Detector,实现的keras版本。

该文章在既保证速度,又要保证精度的情况下,提出了SSD物体检测模型,与现在流行的检测模型一样,将检测过程整个成一个single deep neural network。便于训练与优化,同时提高检测速度。 SSD将输出一系列离散化(discretization)的bounding boxes,这些bounding boxes是在不同层次(layers)上的feature maps上生成的,并且有着不同的aspect ratio。

模型效果

  • 模型对载具的检测

  • 模型对动物的检测

  • 模型的视频检测


如何使用

所需依赖

cv2==3.3.0
keras==2.2.0
matplotlib==2.1.0
tensorflow==1.3.0
numpy==1.13.3

如果想跑通视频模块,则需额外pip install scikit-video

具体操作

git clone [email protected]:kuhung/SSD_keras.git
cd SSD_keras
  • Download model weight weights_SSD300.hdf5here
cp weights_SSD300.hdf5 into SSD_keras
  • 对于图片的检测

参考SSD.ipynb

  • 若要剪切图片为下一步处理做准备

参考SSD_crop.py

  • 检测视频
cd video_utils
python videotest_example.py hy.mp4

参考资料

SSD: Single Shot MultiBox Detector

论文阅读:SSD: Single Shot MultiBox Detector

rykov8/ssd_keras

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].