All Projects → gplast → DroNet

gplast / DroNet

Licence: other
DroNet: Efficient convolutional neural network detector for Real-Time UAV applications

Programming Languages

c
50402 projects - #5 most used programming language
Cuda
1817 projects

Projects that are alternatives of or similar to DroNet

Yolo Powered robot vision
Stars: ✭ 133 (+146.3%)
Mutual labels:  detector, yolo, darknet
Tensorflow Yolo V3
Implementation of YOLO v3 object detector in Tensorflow (TF-Slim)
Stars: ✭ 862 (+1496.3%)
Mutual labels:  detector, yolo
Trainyourownyolo
Train a state-of-the-art yolov3 object detector from scratch!
Stars: ✭ 399 (+638.89%)
Mutual labels:  detector, yolo
Php Opencv
php wrapper for opencv
Stars: ✭ 194 (+259.26%)
Mutual labels:  detector, darknet
Pine
🌲 Aimbot powered by real-time object detection with neural networks, GPU accelerated with Nvidia. Optimized for use with CS:GO.
Stars: ✭ 202 (+274.07%)
Mutual labels:  yolo, darknet
Yolo person detect
person detect based on yolov3 with several Python scripts
Stars: ✭ 212 (+292.59%)
Mutual labels:  yolo, darknet
Yoloncs
YOLO object detector for Movidius Neural Compute Stick (NCS)
Stars: ✭ 176 (+225.93%)
Mutual labels:  detector, yolo
Darknet2ncnn
Darknet2ncnn converts the darknet model to the ncnn model
Stars: ✭ 149 (+175.93%)
Mutual labels:  yolo, darknet
yolor
implementation of paper - You Only Learn One Representation: Unified Network for Multiple Tasks (https://arxiv.org/abs/2105.04206)
Stars: ✭ 1,867 (+3357.41%)
Mutual labels:  yolo, darknet
DarkPlate
License plate parsing using Darknet and YOLO
Stars: ✭ 36 (-33.33%)
Mutual labels:  yolo, darknet
vehicle-rear
Vehicle-Rear: A New Dataset to Explore Feature Fusion For Vehicle Identification Using Convolutional Neural Networks
Stars: ✭ 99 (+83.33%)
Mutual labels:  yolo, darknet
Viseron
Self-hosted NVR with object detection
Stars: ✭ 192 (+255.56%)
Mutual labels:  yolo, darknet
Deepstream Yolo
NVIDIA DeepStream SDK 5.1 configuration for YOLO models
Stars: ✭ 166 (+207.41%)
Mutual labels:  yolo, darknet
Motion Ai
AI assisted motion detection for Home Assistant
Stars: ✭ 169 (+212.96%)
Mutual labels:  edge, yolo
Map
mean Average Precision - This code evaluates the performance of your neural net for object recognition.
Stars: ✭ 2,324 (+4203.7%)
Mutual labels:  yolo, darknet
OpenCV-Flask
🐛 🐛 Opencv视频流传输到网页浏览器并做目标检测 🐛 🐛
Stars: ✭ 35 (-35.19%)
Mutual labels:  yolo, darknet
Pyyolo
Simple python wrapper for YOLO.
Stars: ✭ 128 (+137.04%)
Mutual labels:  yolo, darknet
Yolo segmentation
image (semantic segmentation) instance segmentation by darknet or yolo
Stars: ✭ 143 (+164.81%)
Mutual labels:  yolo, darknet
darknet-nnpack
Darknet with NNPACK
Stars: ✭ 302 (+459.26%)
Mutual labels:  yolo, darknet
darknet
php ffi darknet
Stars: ✭ 21 (-61.11%)
Mutual labels:  yolo, darknet

DroNet: Efficient Convolutional Neural Network Detector for Real-Time UAV Applications

Implementation of the CNN Car Detector proposed on DroNet paper using Darknet Framework.

DroNetV3 - Crossroad

Dependencies

OpenCV

CUDA(Optional)

Build

In order to build DarkNet library and use our DroNet CNN you need to build OpenCV using these Steps.

nano Makefile # run this with sudo if you have permission error

To build DroNet on Mac OS please comment out line 22 and uncomment line 23 and update the path of GCC

  • GPU=0 - enable/disable GPU (To use GPU modify line 50 and 52 with include and lib64 CUDA path)
  • CUDNN=0 - enable/disable CUDNN
  • OPENCV=1 - enable/disable OpenCV
  • OPENMP=1 - enable/disable Multi-Processing on CPU
  • DEBUG=0 - enable/disable Debug mode (Never used)
make -j

DroNetV1 - Works better with low altitudes

./darknet detector demo car.data cfg/DroNet_car.cfg results/DroNet_car.weights Car_Parking.mov -thresh 0.4
./darknet detector demo car.data cfg/DroNet_car.cfg results/DroNet_car.weights Car_Road.MOV -thresh 0.4

DroNetV3 - Works better with higher altitudes (Recommended .cfg input 1024 x 1024)

./darknet detector demo car_ped.data cfg/DroNetV3_car.cfg results/DroNetV3_car.weights Car_Crossroad.mp4
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].