Questions tagged [darknet]

This tag refers to the neural net framework created by Joseph Redmon

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. You can find the source on GitHub or you can read more about what Darknet can do right here:

454 questions
0
votes
1 answer

Error while trying to run 'make' command on darknet YOLO library on a Mac

gcc -Iinclude/ -Isrc/ -Wall -Wno-unknown-pragmas -Wfatal-errors -fPIC -Ofast -c ./src/utils.c -o obj/utils.o ./src/utils.c:29:5: warning: implicit declaration of function 'clock_gettime' is invalid in C99 [-Wimplicit-function-declaration] …
0
votes
0 answers

VOCevaldet.m produces incorrect mAP

I attempt to compute the mAP of YOLO_v2 and SSD on the VOC2007 test set using VOCevaldet.m, but in both cases I reach lower mAPs than the values reported in the papers. To produce the detection txt files in VOC format (a file per class), I use the…
0
votes
1 answer

cvSaveImage not able to save image on changing -prefix to "a" in examples/detector.c

I want to save the image on a running video for the command ./darknet detector demo cfg/coco.data cfg/yolo.cfg yolo.weights . So I changed the value of -prefix parameter to "a" in examples/detector.c to save image instead of streaming…
Pranoy Gn
  • 489
  • 5
  • 10
0
votes
1 answer

Darknet Yolo: Segmentation fault (core dumped) when calling draw_detections function

I am getting Segmentation fault (core dumped) error when I call the draw_detections function using the following parameters: draw_detections(im, l.side*l.side*l.n, thresh, boxes, probs, voc_names, alphabet, 20); It is my first time to use Yolo, and…
A_Matar
  • 2,210
  • 3
  • 31
  • 53
-1
votes
1 answer

How to scrape Onion websites (Dark Web) data using Selenium Python on Windows 10?

I am unable to scrape data from onion websites from Dark Web using Selenium on windows 10 through TOR browser. My code: from selenium import webdriver from selenium.webdriver.firefox.firefox_binary import FirefoxBinary from…
-1
votes
1 answer

Darknet Command to Return Model With Loaded Weights

I use Yolo for object detection and get the bounding boxes from an image with ./darknet detector demo cfg/coco.data cfg/yolov2.cfg yolov2.weights image.jpg -dont_show -ext_output command code. I know I can work with OpenCV but I would like to use…
İhsan Dağ
  • 29
  • 1
  • 5
-1
votes
1 answer

CUDA Error: no CUDA-capable device is detected: Bad file descriptor Google Colab

I am going to train my yolo model by below code. ! darknet/darknet detector train custom_data/labelled_data.data darknet/cfg/yolov3_custom.cfg custom_weight/darknet53.conv.74 -dont_show Then it shows an error as below CUDA status Error: file:…
-1
votes
4 answers

Import darknet FileNotFoundError: Could not find module

I am getting this error when I run import darknet: Traceback (most recent call last): File "", line 1, in File "C:\Users\darknet-master\build\darknet\x64\darknet.py", line 211, in lib = CDLL(winGPUdll, RTLD_GLOBAL) …
Seeyaq
  • 3
  • 1
  • 5
-1
votes
1 answer

Darknet.exe Prints out Cuda & Opencv Version When Run

I have been trying to make an inference using the Yolov4 Darknet model I trained, and whenever I try to run the Command in Powershell, all It does is print out Cuda Version and OpenCv Version. If anybody has experienced this or knows a solution that…
user14968775
-1
votes
1 answer

Training API for Yolo (darknet)

there is existing a API for Yolo to use it in own projects. Darknet offers an detector. But I need to train a new custom dataset also by a method(parameters could be trainingspictures, configfile,...). Is there also a API or did somebody a extension…
-1
votes
1 answer

How the Input Image Pixel Values Scaled in YOLO-V4?

I have an issue with something vague for me regarding the input data preprocessing in YOLO-V4, If the input image is a grayscale image of 16-bits per pixel, i.e. range of pixel values [0,2^16) instead of [0,2^8), it is mentioned that they are scaled…
-1
votes
1 answer

Is there any in-browser online tool for marking bounded boxes of objects in images for training neural networks?

I want to create my own dataset for YOLOv3 Object Detection. It looks like there is a huge set of offline tools for marking bounded boxes, for example: Yolo_mark, Microsoft VoTT, LabelImg. Is there any zero-config online tool, which will work right…
Petr Tripolsky
  • 1,419
  • 15
  • 23
-1
votes
1 answer

What to do when the connection times out when using TOR browser?

So I downloaded TOR and when trying to view sites, the connection keeps getting timed out.This only happens on TOR and not chrome or firefox. Additionally, I tried abling javascript,disabling my antivirus,making sure the time was accurate,removing…
user13566974
  • 1
  • 1
  • 1
-1
votes
1 answer

Unable to install Yolo v3 (yolo34py-gpu) within Python

Unable to install yolo34py-gpu (I apologize for the wall of text) $ pip3 install yolo34py-gpu Collecting yolo34py-gpu Using cached…
Duluth
  • 65
  • 1
  • 10
-2
votes
0 answers

Why does OpenCV get a Parsing error in function readNedFromDarknet?

I am working on automatic number plate recognition and trying to use the weight file and image as input so I can check my model YOLOv7 prediction. Right now, when I try to run my script, I am getting an error in function readNetFromDarknet that I…
1 2 3
30
31