All Projects → myfavouritekk → Vdetlib

myfavouritekk / Vdetlib

Video detection library

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Vdetlib

Tf deformable net
Deformable convolution net on Tensorflow
Stars: ✭ 173 (-2.26%)
Mutual labels:  object-detection, detection
Yolo label
GUI for marking bounded boxes of objects in images for training neural network Yolo v3 and v2 https://github.com/AlexeyAB/darknet, https://github.com/pjreddie/darknet
Stars: ✭ 128 (-27.68%)
Mutual labels:  object-detection, detection
Tensorflow Object Detection Tutorial
The purpose of this tutorial is to learn how to install and prepare TensorFlow framework to train your own convolutional neural network object detection classifier for multiple objects, starting from scratch
Stars: ✭ 113 (-36.16%)
Mutual labels:  object-detection, detection
Dockerface
Face detection using deep learning.
Stars: ✭ 173 (-2.26%)
Mutual labels:  object-detection, detection
Derpn
A novel region proposal network for more general object detection ( including scene text detection ).
Stars: ✭ 155 (-12.43%)
Mutual labels:  object-detection, detection
Ssd Pytorch
SSD: Single Shot MultiBox Detector pytorch implementation focusing on simplicity
Stars: ✭ 107 (-39.55%)
Mutual labels:  object-detection, detection
Map
mean Average Precision - This code evaluates the performance of your neural net for object recognition.
Stars: ✭ 2,324 (+1212.99%)
Mutual labels:  object-detection, detection
Math object detection
An image recognition/object detection model that detects handwritten digits and simple math operators. The output of the predicted objects (numbers & math operators) is then evaluated and solved.
Stars: ✭ 52 (-70.62%)
Mutual labels:  object-detection, detection
Synthdet
SynthDet - An end-to-end object detection pipeline using synthetic data
Stars: ✭ 148 (-16.38%)
Mutual labels:  object-detection, detection
Deep Learning For Tracking And Detection
Collection of papers, datasets, code and other resources for object tracking and detection using deep learning
Stars: ✭ 1,920 (+984.75%)
Mutual labels:  object-detection, detection
Efficientdet.pytorch
Implementation EfficientDet: Scalable and Efficient Object Detection in PyTorch
Stars: ✭ 1,383 (+681.36%)
Mutual labels:  object-detection, detection
Vip
Video Platform for Action Recognition and Object Detection in Pytorch
Stars: ✭ 175 (-1.13%)
Mutual labels:  object-detection, detection
Cnn Paper2
🎨 🎨 深度学习 卷积神经网络教程 :图像识别,目标检测,语义分割,实例分割,人脸识别,神经风格转换,GAN等🎨🎨 https://dataxujing.github.io/CNN-paper2/
Stars: ✭ 77 (-56.5%)
Mutual labels:  object-detection, detection
Sod
An Embedded Computer Vision & Machine Learning Library (CPU Optimized & IoT Capable)
Stars: ✭ 1,460 (+724.86%)
Mutual labels:  object-detection, detection
Kaggle Rsna
Deep Learning for Automatic Pneumonia Detection, RSNA challenge
Stars: ✭ 74 (-58.19%)
Mutual labels:  object-detection, detection
A Pytorch Tutorial To Object Detection
SSD: Single Shot MultiBox Detector | a PyTorch Tutorial to Object Detection
Stars: ✭ 2,398 (+1254.8%)
Mutual labels:  object-detection, detection
Albumentations
Fast image augmentation library and an easy-to-use wrapper around other libraries. Documentation: https://albumentations.ai/docs/ Paper about the library: https://www.mdpi.com/2078-2489/11/2/125
Stars: ✭ 9,353 (+5184.18%)
Mutual labels:  object-detection, detection
Jacinto Ai Devkit
Training & Quantization of embedded friendly Deep Learning / Machine Learning / Computer Vision models
Stars: ✭ 49 (-72.32%)
Mutual labels:  object-detection, detection
Make Sense
Free to use online tool for labelling photos. https://makesense.ai
Stars: ✭ 2,087 (+1079.1%)
Mutual labels:  object-detection, detection
Object Detection
Object detection with ssd_mobilenet and tiny-yolo (Add: YOLOv3, tflite)
Stars: ✭ 173 (-2.26%)
Mutual labels:  object-detection, detection

vdetlib - Python library for object detection in videos

Introduction

The vdetlib python library serves to detection objects in videos. It was originally developed for the ImageNet VID challenge introduced in ILSVRC2015. It contains components such as region proposal, still-image object detection, generic object tracking, spatial max-pooling and temporal convolution.

The T-CNN framework contains many tools that utilizes vdetlib. Please checkout that repository if you are interested.

Citing vdetlib

If you find vdetlib useful in your research and related project, please consider citing the following work accepted in CVPR 2016.

@inproceedings{kang2016object,
  Title = {Object Detection from Video Tubelets with Convolutional Neural Networks},
  Author = {Kang, Kai and Ouyang, Wanli and Li, Hongsheng and Wang, Xiaogang},
  Booktitle = {CVPR},
  Year = {2016}
}

License

This project is released under the MIT License.

Installations

Prerequisites

  1. caffe with Python layer and pycaffe
  2. FCN tracker
  3. Matlab with python engine

Instructions

  1. Clone the repository

        $ git clone https://github.com/myfavouritekk/vdetlib.git
    
  2. Compilation

        $ cd vdetlib
        $ make
    

Protocols

There are some basic protocol types for using this library. All of them are defined as python dictionaries and are saved as JSON files. The definitions are written in the protocol.py.

To-do list

  • [ ] detailed documentation
  • [ ] demo script
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].