All Projects → ghostjat → darknet

ghostjat / darknet

Licence: Apache-2.0 license
php ffi darknet

Programming Languages

PHP
23972 projects - #3 most used programming language
c
50402 projects - #5 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to darknet

go-darknet
Go bindings for Darknet (YOLO v4 / v3)
Stars: ✭ 56 (+166.67%)
Mutual labels:  yolo, darknet, yolov2, yolov3, yolov4
object-tracking
Multiple Object Tracking System in Keras + (Detection Network - YOLO)
Stars: ✭ 89 (+323.81%)
Mutual labels:  detection, yolo, darknet, yolov2, yolov3
odam
ODAM - Object detection and Monitoring
Stars: ✭ 16 (-23.81%)
Mutual labels:  detection, darknet, yolov3, yolov4
tfjs-yolo
YOLO v3 and Tiny YOLO v1, v2, v3 with Tensorflow.js
Stars: ✭ 108 (+414.29%)
Mutual labels:  yolo, yolov2, yolov3, yolo-tiny
Pine
🌲 Aimbot powered by real-time object detection with neural networks, GPU accelerated with Nvidia. Optimized for use with CS:GO.
Stars: ✭ 202 (+861.9%)
Mutual labels:  detection, yolo, darknet, yolov3
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 (-4.76%)
Mutual labels:  yolo, darknet, yolov2, yolov3
Tensorflow 2.x Yolov3
YOLOv3 implementation in TensorFlow 2.3.1
Stars: ✭ 300 (+1328.57%)
Mutual labels:  detection, yolo, darknet, yolov3
Yolo label
GUI for marking bounded boxes of objects in images for training neural network Yolo v3 and v2 https://github.com/AlexeyAB/darknet, https://github.com/pjreddie/darknet
Stars: ✭ 128 (+509.52%)
Mutual labels:  detection, yolo, yolov3
Yolov3
YOLOv3 in PyTorch > ONNX > CoreML > TFLite
Stars: ✭ 8,159 (+38752.38%)
Mutual labels:  yolo, yolov3, yolov4
Vehicle Detection
Compare FasterRCNN,Yolo,SSD model with the same dataset
Stars: ✭ 130 (+519.05%)
Mutual labels:  detection, yolo, yolov3
Map
mean Average Precision - This code evaluates the performance of your neural net for object recognition.
Stars: ✭ 2,324 (+10966.67%)
Mutual labels:  detection, yolo, darknet
Pytorch Imagenet Cifar Coco Voc Training
Training examples and results for ImageNet(ILSVRC2012)/CIFAR100/COCO2017/VOC2007+VOC2012 datasets.Image Classification/Object Detection.Include ResNet/EfficientNet/VovNet/DarkNet/RegNet/RetinaNet/FCOS/CenterNet/YOLOv3.
Stars: ✭ 130 (+519.05%)
Mutual labels:  detection, darknet, yolov3
Yolo annotation tool
Annotation tool for YOLO in opencv
Stars: ✭ 17 (-19.05%)
Mutual labels:  yolo, darknet, yolov3
Yolov5
YOLOv5 🚀 in PyTorch > ONNX > CoreML > TFLite
Stars: ✭ 19,914 (+94728.57%)
Mutual labels:  yolo, yolov3, yolov4
Mobilenet Yolo
A caffe implementation of MobileNet-YOLO detection network
Stars: ✭ 825 (+3828.57%)
Mutual labels:  yolo, darknet, yolov3
Yolo person detect
person detect based on yolov3 with several Python scripts
Stars: ✭ 212 (+909.52%)
Mutual labels:  yolo, darknet, yolov3
Bmw Yolov4 Training Automation
This repository allows you to get started with training a state-of-the-art Deep Learning model with little to no configuration needed! You provide your labeled dataset or label your dataset using our BMW-LabelTool-Lite and you can start the training right away and monitor it in many different ways like TensorBoard or a custom REST API and GUI. NoCode training with YOLOv4 and YOLOV3 has never been so easy.
Stars: ✭ 533 (+2438.1%)
Mutual labels:  yolo, darknet, yolov3
Mobilenet Yolo
MobileNetV2-YoloV3-Nano: 0.5BFlops 3MB HUAWEI P40: 6ms/img, YoloFace-500k:0.1Bflops 420KB🔥🔥🔥
Stars: ✭ 1,566 (+7357.14%)
Mutual labels:  yolo, darknet, yolov3
Yolo2 Pytorch
YOLOv2 in PyTorch
Stars: ✭ 1,393 (+6533.33%)
Mutual labels:  detection, yolo, 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 (+9.52%)
Mutual labels:  yolo, darknet, yolov3

php-darknet

[Minimum PHP version: 7.4.0] Packagist Build Status Code Intelligence Status

Darknet Logo

php-ffi experiment

php interface to the lib-darknet for object detection. Php7.4+ is required

Install

composer require ghostjat/darknet

Description

lib-darknet

Darknet

Darknet is an open source neural network framework written in C and CUDA. It is fast, easy to install, and supports CPU and GPU computation.

  • It offers a simple API.
  • High performance, due to the fact that it uses native interface elements.
  • Fast learning by the user, due to the simplicity of its API.

yolo v2, v3, v4

If running on cpu you may use FASTEST cfg & weight for real time object detection on MS COCO dataset.

require '../vendor/autoload.php';

use darknet\core;
$dn = new core(core::YOLOFASTEST);

System-Conf:- CPU:- Intel(R) Core(TM) i3-2370M CPU @ 2.40GHz 64bit MEM:- 8GB Dataset:- MS-COCO Classes:- 80

YOLO Time (ms) CPU Mem(mb)(max)
Tiny-v2 0.85933095 (max) 78 143.59
0.62237596 (min)
Tiny-v3 0.93895602 (max) 90 125.9
0.60306811 (min)
Main-v3 15.4672219 (max) 98 964.5
14.0677847 (min)
Tiny-v4 0.85933095 (max) 82 151.9
0.62237596 (min)
FASTEST 0.20039399 (max) 20 97.47
0.11836814 (min)
FASTEST-xl 0.80017591 (max) 69 131.85
0.22637511 (min)

Synopsis

WARNING:
This module is in its early stages and should be considered a Work in Progress. The interface is not final and may change in the future.

Sample:

demo gp dog egale giraffe person

Sample code:

require '../vendor/autoload.php';

use darknet\core;
$lib = '/home/ghost/bin/c-lib/darknet/data/';
$img = ['eagle.jpg','giraffe.jpg','horses.jpg','person.jpg','kite.jpg'];
$dn = new core();
foreach ($img as $value) {
    $dn->detect($lib.$value);
}

Author

Shubham Chaudhary [email protected]

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