All Projects → zllrunning → Hand Detection.pytorch

zllrunning / Hand Detection.pytorch

Licence: mit
FaceBoxes for hand detection in PyTorch

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Hand Detection.pytorch

Id Card Detector
💳 Detecting the National Identification Cards with Deep Learning (Faster R-CNN)
Stars: ✭ 114 (+50%)
Mutual labels:  object-detection, cnn
Motionblur Detection By Cnn
Stars: ✭ 126 (+65.79%)
Mutual labels:  object-detection, cnn
Mobilenet Yolo
MobileNetV2-YoloV3-Nano: 0.5BFlops 3MB HUAWEI P40: 6ms/img, YoloFace-500k:0.1Bflops 420KB🔥🔥🔥
Stars: ✭ 1,566 (+1960.53%)
Mutual labels:  object-detection, cnn
Cnn Paper2
🎨 🎨 深度学习 卷积神经网络教程 :图像识别,目标检测,语义分割,实例分割,人脸识别,神经风格转换,GAN等🎨🎨 https://dataxujing.github.io/CNN-paper2/
Stars: ✭ 77 (+1.32%)
Mutual labels:  object-detection, cnn
Edgenets
This repository contains the source code of our work on designing efficient CNNs for computer vision
Stars: ✭ 331 (+335.53%)
Mutual labels:  object-detection, cnn
Object Localization
Object localization in images using simple CNNs and Keras
Stars: ✭ 130 (+71.05%)
Mutual labels:  object-detection, cnn
Yolo V3 Iou
YOLO3 动漫人脸检测 (Based on keras and tensorflow) 2019-1-19
Stars: ✭ 116 (+52.63%)
Mutual labels:  object-detection, cnn
Yolov3
Keras implementation of yolo v3 object detection.
Stars: ✭ 585 (+669.74%)
Mutual labels:  object-detection, cnn
Yolo V2 Pytorch
YOLO for object detection tasks
Stars: ✭ 302 (+297.37%)
Mutual labels:  object-detection, cnn
Deep Learning With Python
Deep learning codes and projects using Python
Stars: ✭ 195 (+156.58%)
Mutual labels:  object-detection, cnn
Video obj
基于视频的目标检测算法研究
Stars: ✭ 372 (+389.47%)
Mutual labels:  object-detection, cnn
Jacinto Ai Devkit
Training & Quantization of embedded friendly Deep Learning / Machine Learning / Computer Vision models
Stars: ✭ 49 (-35.53%)
Mutual labels:  object-detection, cnn
Fish detection
Fish detection using Open Images Dataset and Tensorflow Object Detection
Stars: ✭ 67 (-11.84%)
Mutual labels:  object-detection
Panet
PANet for Instance Segmentation and Object Detection
Stars: ✭ 1,170 (+1439.47%)
Mutual labels:  object-detection
Traffic Rules Violation Detection
The System consists of two main components. Vehicle detection model and A graphical user interface (GUI)
Stars: ✭ 67 (-11.84%)
Mutual labels:  object-detection
Chainer Ssd
Implementation of SSD (Single Shot MultiBox Detector) using Chainer
Stars: ✭ 66 (-13.16%)
Mutual labels:  object-detection
Kaggle Rsna
Deep Learning for Automatic Pneumonia Detection, RSNA challenge
Stars: ✭ 74 (-2.63%)
Mutual labels:  object-detection
Opencv Android Object Detection
This is sample code for object detection using OpenCV on android
Stars: ✭ 70 (-7.89%)
Mutual labels:  object-detection
Gtsrb
Convolutional Neural Network for German Traffic Sign Recognition Benchmark
Stars: ✭ 65 (-14.47%)
Mutual labels:  cnn
Awesome machine learning solutions
A curated list of repositories for my book Machine Learning Solutions.
Stars: ✭ 65 (-14.47%)
Mutual labels:  object-detection

hand-detection.PyTorch

Hand detection in PyTorch

Contents

Installation

  1. Install PyTorch-0.4.0 according to your environment.

  2. Clone this repository. We will call the cloned directory as $HandBoxes_ROOT.

git clone https://github.com/zllrunning/hand-detection.PyTorch.git
  1. Compile the nms:
./make.sh

Note: We currently only support PyTorch-0.4.0 and Python 3+.

Training

  1. Prepare training data:
	-- download EgoHands dataset
	-- generate bounding boxes and visualize them to ensure correctness
	-- convert bbox file to VOC format
cd $HandBoxes_ROOT/
sh prepare_data.sh
  1. Train the model using EgoHands dataset:
python3 train.py

If you do not wish to train the model, you can download our pre-trained model and save it in $HandBoxes_ROOT/weights.

Demo

  1. Evaluate the trained model using:
# evaluate using GPU
python test.py --video data/video/hand.avi
# evaluate using cpu
python test.py --image data/video/CARDS_OFFICE_H_T_frame_1085.jpg --cpu

References

This project is based on FaceBoxes.PyTorch

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