darknet icon indicating copy to clipboard operation
darknet copied to clipboard

YOLOv4 / Scaled-YOLOv4 / YOLO - Neural Networks for Object Detection (Windows and Linux version of Darknet )

Results 100 darknet issues
Sort by recently updated
recently updated
newest added

Keeping this in mind [https://github.com/AlexeyAB/darknet/pull/7282](https://github.com/AlexeyAB/darknet/pull/7282) proposing a simple solution. show_img is Mat pointer. Just cropping desired portion out of Mat. Useful for cropping detections in video, when src/image_opencv.cpp is used...

# Disclaimer - I'm **not aiming to merge this *PR*** anywhere (that's the reason why I left there debug and other stuff), it's just a point that I've reached (and...

In this branch, I solved the #8615 issue and did some refactors. Firstly, I created a new variable which is a flag for `save_label_actual` and It helps people to get...

Currently `get_network_output_gpu_layer` symbol is undefined in `libdarknet.so`. Therefore intermediate layer GPU outputs cannot be extracted through Python bindings. This is caused by inconsistent function declaration and definition in `network_kernels.cu`. Specifically:...

I'm trying to use C++ API to integrate darknet with my C++ project on windows. I followed the tutorial on [this topic](https://github.com/AlexeyAB/darknet#how-to-use-yolo-as-dll-and-so-libraries) in README.md. During the test toward my input...

during training stage, if one anchor is asigned to multi label, then should choose the max iou truth label. the default action is choose the last truth label, but in...

I want to use yolo v4 to train and output the area and coordinates on the picture.