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

- Python Program for calculating the mAP for darknet classifier (not implemented before). - Example of classifying an image with Python API. - Python Program to calculate the mAP for...

Just modified detector.c in order to check the best weight map every time a training session is started as described in https://github.com/AlexeyAB/darknet/issues/3452. If *best.weights exist in backup path, detector will...

I hope that this is a good place to insert it. Used your explanation and rephrased, added some context.

Added support to access darknet from java: ```java network net = darknet.load_network_custom("./cfg/yolov3.cfg","./cfg/yolov3.weights",0,1); metadata meta = darknet.get_metadata("./cfg/coco.data"); String[] names = meta.names.getStringArray(0, meta.classes); image im = darknet.load_image_color("./data/dog.jpg",0,0); IntByReference pnum = new IntByReference(0);...

Pause works both for video files and a video stream from camera by pressing 'space' button

1.If a video was loaded from the file, the loop doesn't break and frame_read is then None. The following line gives an error due to frame_read being of None type...

I had big trouble getting the OpenCV build to work in Alturos.Yolo. I don't need openCV for my applications anyway. I then noticed that detect_image works without openCV. So i...

Runs the image through the model twice, and does nms on the combined detections. See #5730