All Projects → ZongweiZhou1 → CenterNetPerson

ZongweiZhou1 / CenterNetPerson

Licence: other
CenterNet used for pedestrian detection

Programming Languages

python
139335 projects - #7 most used programming language
C++
36643 projects - #6 most used programming language

Projects that are alternatives of or similar to CenterNetPerson

crowd density segmentation
The code for preparing the training data for crowd counting / segmentation algorithm.
Stars: ✭ 21 (-19.23%)
Mutual labels:  pedestrian-detection
Object-Detection-Tensorflow
Object Detection API Tensorflow
Stars: ✭ 275 (+957.69%)
Mutual labels:  centernet
pedestrian-detection
Pedestrian Detection using Non Maximum Suppression
Stars: ✭ 30 (+15.38%)
Mutual labels:  pedestrian-detection
kuzushiji-recognition
5th place solution for the Kaggle Kuzushiji Recognition Challenge
Stars: ✭ 41 (+57.69%)
Mutual labels:  centernet
MVDet
[ECCV 2020] Codes and MultiviewX dataset for "Multiview Detection with Feature Perspective Transformation".
Stars: ✭ 123 (+373.08%)
Mutual labels:  pedestrian-detection
CenterNet-pytorch-lightning
Refactored implementation of CenterNet (Objects as Points - Zhou, Xingyi et. al.) shipping with PyTorch Lightning modules
Stars: ✭ 53 (+103.85%)
Mutual labels:  centernet
Xtreme-Vision
A High Level Python Library to empower students, developers to build applications and systems enabled with computer vision capabilities.
Stars: ✭ 77 (+196.15%)
Mutual labels:  centernet
centernet-uda
This repository holds a small framework to evaluate unsupervised domain adaptation methods in combination with a CenterNet object detection network.
Stars: ✭ 20 (-23.08%)
Mutual labels:  centernet
faster-rcnn-pedestrian-detection
Faster R-CNN for pedestrian detection
Stars: ✭ 31 (+19.23%)
Mutual labels:  pedestrian-detection
awesome-tiny-object-detection
🕶 A curated list of Tiny Object Detection papers and related resources.
Stars: ✭ 840 (+3130.77%)
Mutual labels:  pedestrian-detection
YOLO-Object-Counting-API
The code of the Object Counting API, implemented with the YOLO algorithm and with the SORT algorithm
Stars: ✭ 131 (+403.85%)
Mutual labels:  pedestrian-detection
odam
ODAM - Object detection and Monitoring
Stars: ✭ 16 (-38.46%)
Mutual labels:  pedestrian-detection
pedestrian recognition
A simple human recognition api for re-ID usage, power by paper https://arxiv.org/abs/1703.07737
Stars: ✭ 29 (+11.54%)
Mutual labels:  pedestrian-detection
GGHL
This is the implementation of GGHL (A General Gaussian Heatmap Label Assignment for Arbitrary-Oriented Object Detection)
Stars: ✭ 309 (+1088.46%)
Mutual labels:  centernet
DCNv2 latest
DCNv2 supports decent pytorch such as torch 1.5+ (now 1.8+)
Stars: ✭ 363 (+1296.15%)
Mutual labels:  centernet
onnx tensorrt project
Support Yolov5(4.0)/Yolov5(5.0)/YoloR/YoloX/Yolov4/Yolov3/CenterNet/CenterFace/RetinaFace/Classify/Unet. use darknet/libtorch/pytorch/mxnet to onnx to tensorrt
Stars: ✭ 145 (+457.69%)
Mutual labels:  centernet
simpleAICV-pytorch-ImageNet-COCO-training
SimpleAICV:pytorch training example on ImageNet(ILSVRC2012)/COCO2017/VOC2007+2012 datasets.Include ResNet/DarkNet/RetinaNet/FCOS/CenterNet/TTFNet/YOLOv3/YOLOv4/YOLOv5/YOLOX.
Stars: ✭ 276 (+961.54%)
Mutual labels:  centernet
kuzushiji-recognition
Kuzushiji Recognition Kaggle 2019. Build a DL model to transcribe ancient Kuzushiji into contemporary Japanese characters. Opening the door to a thousand years of Japanese culture.
Stars: ✭ 16 (-38.46%)
Mutual labels:  centernet

##Pedestrian detection based on CenterNet

In this repo, we re-train the centernet on CityPerson dataset to get a pedestrian detector CenterNet

##Preparation

Please first install Anaconda and create an Anaconda environment using the provided package list.

conda create --name CenterNet --file conda_packagelist.txt

After you create the environment, activate it.

source activate CenterNet

Compiling Corner Pooling Layers

cd <CenterNet dir>/models/py_utils/_cpools/
python setup.py install --user

Compiling NMS

cd <CenterNet dir>/external
make

CityPerson dataset

  • Download the CityPerson dataset and label files in images, label
  • create a softlink in data to your CityPerson data
    ln -s  #to/yourdata/CityPerson data/
    

Training and Evaluation

To train CenterNet-52

python train.py --cfg_file CenterNet-52

The default configure in config/CenterNet-52.json is 2 (12G) GPUs and batchsize=12, you can modify them according to your case.

To evaluate your detector

python test.py --cfg_file CenterNet-52 --testiter  #checkpoint_epoch

Demo

The demo images are stored in data/demo

python demo.py
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].