All Projects → smallcorgi → Faster Rcnn_tf

smallcorgi / Faster Rcnn_tf

Licence: mit
Faster-RCNN in Tensorflow

Programming Languages

python
139335 projects - #7 most used programming language
C++
36643 projects - #6 most used programming language
cython
566 projects
Cuda
1817 projects

Projects that are alternatives of or similar to Faster Rcnn tf

Shadowless
A Fast and Open Source Autonomous Perception System.
Stars: ✭ 29 (-98.77%)
Mutual labels:  detection, faster-rcnn
Faster rcnn for dota
Code used for training Faster R-CNN on DOTA
Stars: ✭ 283 (-87.95%)
Mutual labels:  faster-rcnn, detection
Object-Detection-And-Tracking
Target detection in the first frame and Tracking target by SiamRPN.
Stars: ✭ 33 (-98.6%)
Mutual labels:  detection, faster-rcnn
object-tracking
Multiple Object Tracking System in Keras + (Detection Network - YOLO)
Stars: ✭ 89 (-96.21%)
Mutual labels:  detection, faster-rcnn
Keras object detection
Convert any classification model or architecture trained in keras to an object detection model
Stars: ✭ 28 (-98.81%)
Mutual labels:  faster-rcnn, detection
Pytorch Faster Rcnn
pytorch based implementation faster rcnn
Stars: ✭ 251 (-89.31%)
Mutual labels:  faster-rcnn, detection
Faster-RCNN-TensorFlow
TensorFlow implementation of Faster RCNN for Object Detection
Stars: ✭ 13 (-99.45%)
Mutual labels:  detection, faster-rcnn
Caffe Faster Rcnn
faster rcnn c++ version. joint train; please checkout into dev branch (git checkout dev)
Stars: ✭ 210 (-91.06%)
Mutual labels:  faster-rcnn, detection
Tffrcnn
FastER RCNN built on tensorflow
Stars: ✭ 898 (-61.77%)
Mutual labels:  faster-rcnn, detection
Kittibox
A car detection model implemented in Tensorflow.
Stars: ✭ 388 (-83.48%)
Mutual labels:  faster-rcnn, detection
Rectlabel Support
RectLabel - An image annotation tool to label images for bounding box object detection and segmentation.
Stars: ✭ 338 (-85.61%)
Mutual labels:  faster-rcnn, detection
Faster rcnn pytorch
Faster RCNN with PyTorch
Stars: ✭ 1,589 (-32.35%)
Mutual labels:  faster-rcnn, detection
Caffe Model
Caffe models (including classification, detection and segmentation) and deploy files for famouse networks
Stars: ✭ 1,258 (-46.45%)
Mutual labels:  faster-rcnn, detection
Dockerface
Face detection using deep learning.
Stars: ✭ 173 (-92.64%)
Mutual labels:  faster-rcnn, detection
Online Privacy Test Resource List
Privacy Online Test and Resource Compendium (POTARC) 🕵🏻
Stars: ✭ 185 (-92.12%)
Mutual labels:  detection
Asl
Official Pytorch Implementation of: "Asymmetric Loss For Multi-Label Classification"(2020) paper
Stars: ✭ 195 (-91.7%)
Mutual labels:  detection
3d Pointcloud
Papers and Datasets about Point Cloud.
Stars: ✭ 179 (-92.38%)
Mutual labels:  detection
Mcmot
Real time one-stage multi-class & multi-object tracking based on anchor-free detection and re-id
Stars: ✭ 181 (-92.29%)
Mutual labels:  detection
Clandmark
Open Source Landmarking Library
Stars: ✭ 204 (-91.32%)
Mutual labels:  detection
Can Autoplay
The auto-play feature detection in HTMLMediaElement (<audio> or <video>).
Stars: ✭ 196 (-91.66%)
Mutual labels:  detection

Faster-RCNN_TF

This is an experimental Tensorflow implementation of Faster RCNN - a convnet for object detection with a region proposal network. For details about R-CNN please refer to the paper Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks by Shaoqing Ren, Kaiming He, Ross Girshick, Jian Sun.

Requirements: software

  1. Requirements for Tensorflow (see: Tensorflow)

  2. Python packages you might not have: cython, python-opencv, easydict

Requirements: hardware

  1. For training the end-to-end version of Faster R-CNN with VGG16, 3G of GPU memory is sufficient (using CUDNN)

Installation (sufficient for the demo)

  1. Clone the Faster R-CNN repository
# Make sure to clone with --recursive
git clone --recursive https://github.com/smallcorgi/Faster-RCNN_TF.git
  1. Build the Cython modules
    cd $FRCN_ROOT/lib
    make

Demo

After successfully completing basic installation, you'll be ready to run the demo.

Download model training on PASCAL VOC 2007 [Google Drive] [Dropbox]

To run the demo

cd $FRCN_ROOT
python ./tools/demo.py --model model_path

The demo performs detection using a VGG16 network trained for detection on PASCAL VOC 2007.

Training Model

  1. Download the training, validation, test data and VOCdevkit

    wget http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtrainval_06-Nov-2007.tar
    wget http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtest_06-Nov-2007.tar
    wget http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCdevkit_08-Jun-2007.tar
  2. Extract all of these tars into one directory named VOCdevkit

    tar xvf VOCtrainval_06-Nov-2007.tar
    tar xvf VOCtest_06-Nov-2007.tar
    tar xvf VOCdevkit_08-Jun-2007.tar
  3. It should have this basic structure

    $VOCdevkit/                           # development kit
    $VOCdevkit/VOCcode/                   # VOC utility code
    $VOCdevkit/VOC2007                    # image sets, annotations, etc.
    # ... and several other directories ...
  4. Create symlinks for the PASCAL VOC dataset

    cd $FRCN_ROOT/data
    ln -s $VOCdevkit VOCdevkit2007
  5. Download pre-trained ImageNet models

    Download the pre-trained ImageNet models [Google Drive] [Dropbox]

    mv VGG_imagenet.npy $FRCN_ROOT/data/pretrain_model/VGG_imagenet.npy
  6. Run script to train and test model

    cd $FRCN_ROOT
    ./experiments/scripts/faster_rcnn_end2end.sh $DEVICE $DEVICE_ID VGG16 pascal_voc

DEVICE is either cpu/gpu

The result of testing on PASCAL VOC 2007

Classes AP
aeroplane 0.698
bicycle 0.788
bird 0.657
boat 0.565
bottle 0.478
bus 0.762
car 0.797
cat 0.793
chair 0.479
cow 0.724
diningtable 0.648
dog 0.803
horse 0.797
motorbike 0.732
person 0.770
pottedplant 0.384
sheep 0.664
sofa 0.650
train 0.766
tvmonitor 0.666
mAP 0.681

###References Faster R-CNN caffe version

A tensorflow implementation of SubCNN (working progress)

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