All Projects → clovaai → Extd_pytorch

clovaai / Extd_pytorch

Licence: mit
Official EXTD Pytorch code

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Extd pytorch

jeelizGlanceTracker
JavaScript/WebGL lib: detect if the user is looking at the screen or not from the webcam video feed. Lightweight and robust to all lighting conditions. Great for play/pause videos if the user is looking or not, or for person detection. Link to live demo.
Stars: ✭ 68 (-61.58%)
Mutual labels:  lightweight, detection, face-detection
Jeelizfacefilter
Javascript/WebGL lightweight face tracking library designed for augmented reality webcam filters. Features : multiple faces detection, rotation, mouth opening. Various integration examples are provided (Three.js, Babylon.js, FaceSwap, Canvas2D, CSS3D...).
Stars: ✭ 2,042 (+1053.67%)
Mutual labels:  lightweight, face-detection, detection
face-mask-detection-tf2
A face mask detection using ssd with simplified Mobilenet and RFB or Pelee in Tensorflow 2.1. Training on your own dataset. Can be converted to kmodel and run on the edge device of k210
Stars: ✭ 72 (-59.32%)
Mutual labels:  detection, face-detection
ARFaceFilter
Javascript/WebGL lightweight face tracking library designed for augmented reality webcam filters. Features : multiple faces detection, rotation, mouth opening. Various integration examples are provided (Three.js, Babylon.js, FaceSwap, Canvas2D, CSS3D...).
Stars: ✭ 72 (-59.32%)
Mutual labels:  detection, face-detection
Brfv4 javascript examples
BRFv4 - HTML5/Javascript - examples project. Reference implementation for all other platform example packages.
Stars: ✭ 460 (+159.89%)
Mutual labels:  face-detection, detection
FaceRecognitionCpp
Large input size REAL-TIME Face Detector on Cpp. It can also support face verification using MobileFaceNet+Arcface with real-time inference. 480P Over 30FPS on CPU
Stars: ✭ 40 (-77.4%)
Mutual labels:  lightweight, face-detection
brfv4 android examples
Android Studio project (Java)
Stars: ✭ 43 (-75.71%)
Mutual labels:  detection, face-detection
brfv4 win examples
Windows C++ examples utilizing OpenCV for camera access and drawing the face tracking results.
Stars: ✭ 13 (-92.66%)
Mutual labels:  detection, face-detection
timeline
Timeline - A photo organizer
Stars: ✭ 39 (-77.97%)
Mutual labels:  detection, face-detection
Face Recognition Cpp
Real Time Face Recognition Detector. Over 30FPS on CPU!
Stars: ✭ 68 (-61.58%)
Mutual labels:  lightweight, face-detection
Catt
Detecting the temperature from an infrared image
Stars: ✭ 60 (-66.1%)
Mutual labels:  face-detection, detection
Cnn Paper2
🎨 🎨 深度学习 卷积神经网络教程 :图像识别,目标检测,语义分割,实例分割,人脸识别,神经风格转换,GAN等🎨🎨 https://dataxujing.github.io/CNN-paper2/
Stars: ✭ 77 (-56.5%)
Mutual labels:  face-detection, detection
Tiny
Tiny Face Detector, CVPR 2017
Stars: ✭ 1,079 (+509.6%)
Mutual labels:  face-detection, detection
Sod
An Embedded Computer Vision & Machine Learning Library (CPU Optimized & IoT Capable)
Stars: ✭ 1,460 (+724.86%)
Mutual labels:  face-detection, detection
Dockerface
Face detection using deep learning.
Stars: ✭ 173 (-2.26%)
Mutual labels:  face-detection, detection
Ioc
🦄 lightweight (<1kb) inversion of control javascript library for dependency injection written in typescript
Stars: ✭ 171 (-3.39%)
Mutual labels:  lightweight
Tf deformable net
Deformable convolution net on Tensorflow
Stars: ✭ 173 (-2.26%)
Mutual labels:  detection
Face Api.js
JavaScript API for face detection and face recognition in the browser and nodejs with tensorflow.js
Stars: ✭ 13,258 (+7390.4%)
Mutual labels:  face-detection
Jsontree
A lightweight vanilla Javascript micro-library for making collapsible trees with JSON
Stars: ✭ 170 (-3.95%)
Mutual labels:  lightweight
Smtpd
A Lightweight High Performance ESMTP email server
Stars: ✭ 175 (-1.13%)
Mutual labels:  lightweight

EXTD: Extremely Tiny Face Detector via Iterative Filter Reuse

A PyTorch Implementation of Extremely Tiny Face Detector via Iterative Filter Reuse

YoungJoon Yoo, Dongyoon Han, Sangdoo Yun

https://arxiv.org/abs/1906.06579

extd_teaser table

Requirement

  • pytorch 1.0 (checked at 1.0)
  • opencv
  • numpy
  • easydict
  • Python3

Prepare data

WIDER face dataset is used. see the S3FD.pytorch git for more detail.

Train

You can use

python train.py 

Refer the train.py files to check the arguement. Our setting was

"--batch_size 16 --lr 0.001" 

Evaluation on WIDER Dataset

You should complie the bounding box function. Type

python3 bbox_setup.py build_ext --inplace

Then run

python3 wider_test.py

Demo

you can test your image from

python3 demo.py

References

Citation

@article{yoo2019extd,
  title={EXTD: Extremely Tiny Face Detector via Iterative Filter Reuse},
  author={Yoo, YoungJoon and Han, Dongyoon and Yun, Sangdoo},
  journal={arXiv preprint arXiv:1906.06579},
  year={2019}
}

License

Copyright (c) 2019-present NAVER Corp.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE
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].