All Projects → cezs → FDDB

cezs / FDDB

Licence: Unlicense License
Face Detection Data Set and Benchmark (FDDB) in Darknet

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to FDDB

morghulis
No description or website provided.
Stars: ✭ 18 (+12.5%)
Mutual labels:  darknet, fddb
MXNet-YOLO
mxnet implementation of yolo and darknet2mxnet converter
Stars: ✭ 17 (+6.25%)
Mutual labels:  darknet
go-darknet
Go bindings for Darknet (YOLO v4 / v3)
Stars: ✭ 56 (+250%)
Mutual labels:  darknet
darknet2caffe
Conversion of yolo from DarkNet to Caffe
Stars: ✭ 25 (+56.25%)
Mutual labels:  darknet
odam
ODAM - Object detection and Monitoring
Stars: ✭ 16 (+0%)
Mutual labels:  darknet
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 (+806.25%)
Mutual labels:  darknet
Datasets2Darknet
Modular tool that extracts images and labels from multiple datasets and parses them to Darknet format.
Stars: ✭ 31 (+93.75%)
Mutual labels:  darknet
DarkHelp
C++ wrapper library for Darknet
Stars: ✭ 65 (+306.25%)
Mutual labels:  darknet
DarkMark
Marking up images for use with Darknet.
Stars: ✭ 62 (+287.5%)
Mutual labels:  darknet
fddb
Face Detection benchmark on Windows,Ubuntu and Mac
Stars: ✭ 28 (+75%)
Mutual labels:  fddb
facenet-darknet-inference
Face recognition using facenet
Stars: ✭ 29 (+81.25%)
Mutual labels:  darknet
object-tracking
Multiple Object Tracking System in Keras + (Detection Network - YOLO)
Stars: ✭ 89 (+456.25%)
Mutual labels:  darknet
vehicles-counting-yolov4-deepsort
A project for counting vehicles using YOLOv4 + DeepSORT + Flask + Ngrok + TF2
Stars: ✭ 23 (+43.75%)
Mutual labels:  darknet
Deep-Learning-with-GoogleColab
Deep Learning Applications (Darknet - YOLOv3, YOLOv4 | DeOldify - Image Colorization, Video Colorization | Face-Recognition) with Google Colaboratory - on the free Tesla K80/Tesla T4/Tesla P100 GPU - using Keras, Tensorflow and PyTorch.
Stars: ✭ 63 (+293.75%)
Mutual labels:  darknet
car-crash-accident
Car Crash Accident Project
Stars: ✭ 14 (-12.5%)
Mutual labels:  darknet
lightDenseYOLO
A real-time object detection app based on lightDenseYOLO Our lightDenseYOLO is the combination of two components: lightDenseNet as the CNN feature extractor and YOLO v2 as the detection module
Stars: ✭ 20 (+25%)
Mutual labels:  darknet
labelReader
Programmatically find and read labels using Machine Learning
Stars: ✭ 44 (+175%)
Mutual labels:  darknet
live-cctv
To detect any reasonable change in a live cctv to avoid large storage of data. Once, we notice a change, our goal would be track that object or person causing it. We would be using Computer vision concepts. Our major focus will be on Deep Learning and will try to add as many features in the process.
Stars: ✭ 23 (+43.75%)
Mutual labels:  darknet
darknet.py
darknet.py is a network application with no dependencies other than Python and Tor, useful to anonymize the traffic of linux servers and workstations.
Stars: ✭ 71 (+343.75%)
Mutual labels:  darknet
onnx2tensorRt
tensorRt-inference darknet2onnx pytorch2onnx mxnet2onnx python version
Stars: ✭ 14 (-12.5%)
Mutual labels:  darknet

FDDB

This repository contains scripts automating conversion of the FDDB dataset to a format required by the Darknet framework.

Usage

  1. Clone and navigate to the repository

  2. Use the following links in order to download a complete FDDB dataset.

     wget http://vis-www.cs.umass.edu/fddb/FDDB-folds.tgz
     wget http://vis-www.cs.umass.edu/fddb/README.txt
     wget http://tamaraberg.com/faceDataset/originalPics.tar.gz
    
  3. Create a new folder and call it images. Unpack the supplied images inside of it.

     tar -xzvf FDDB-folds.tgz
     mdkir images && tar -xzvf originalPics.tar.gz -C images
    
  4. Prepare data.

     find FDDB-folds -type f -regex ".*[0-9]-.*txt" -exec cat {} >> FDDB-folds/FDDB-annotations.txt \;
     find FDDB-folds -type f -regex ".*[0-9]+.txt" -exec cat {} >> FDDB-folds/FDDB-paths.txt \;
    
  5. Install the required Python libraries.

     pip install Pillow
    
  6. Generate all the files required by the Darknet.

     python ./scripts/cs_fddb_convert_to_darknet.py
    

License

This is free and unencumbered software released into the public domain. For more information, please refer to the LICENSE file.

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