Questions tagged [yolo]

You Only Look Once (YOLO) is a real-time object detection system written in C. Use this tag for questions about YOLO compilation and installation, usage, and its features and functionality.

You Only Look Once (YOLO) is a real-time object detection system developed for high speed object detection within images.

Useful Links:

1841 questions
0
votes
1 answer

An OpenCV function won't run in Pycharm but no problem in Jupyter

I intend to use cv2.dnn_DetectionModel for YOLOv4 inference as here https://github.com/opencv/opencv/pull/17185. However, I got error like others reported here https://github.com/AlexeyAB/darknet/issues/5366, (-212 Parsing...), and clearly this bug…
dexter2406
  • 451
  • 4
  • 14
0
votes
1 answer

When to use YOLO vs vanilla CNN?

I am wanting to build a computer vision model that can identify an object in an image. For example, identify the (x, y, width, height) pixel coordinates of the bounding box of somebody's hand. I know of complex object detection algorithm likes YOLO…
user3647894
  • 559
  • 1
  • 4
  • 28
0
votes
1 answer

Is there any way to backup weights in YOLOv5 when training after a fixed number of iterations?

I want to backup weights while training YOLOv5 so that if the training stops for some reason i dont have to start all over again like in yolov3 you can mention the folder in which weights are backed up after every 100 iterations
0
votes
1 answer

Yolo v3 in Tensorflow 2.x

I've been trying to get the Yolo v3 to work in TF 2.x for the last few weeks, and every time I fix one problem, another one shows up. The main challenge was with actually making TensorFlow do the NonMaxSuppression for each scale, and sample in the…
VM_AI
  • 1,132
  • 4
  • 13
  • 25
0
votes
0 answers

Detecting one specific object from a video

This is what we are trying to achieve. Given the following conditions: there is a specific object, say a coin you have that physical coin and you can take as many pictures as you like of that 1 coin. the coin is present in a video clip How can we…
0
votes
1 answer

how do I run two separate deep learning based model together?

I trained a deep learning-based detection network to detect and locate some objects. I also trained a deep learning-based classification network to classify the color of the detected objects. Now I want to combine these two networks to detect the…
nikki
  • 365
  • 4
  • 20
0
votes
1 answer

how to create labels for YOLO-V1 , target bounding box while implementing from scratch?

I'm trying to implement YOLO-V1,but I got some problem when create labels. YOLO-V1 has 2 bounding box, so, when a grid has an object, how to choose which bounding box to put location information? For example: Follow YOLO paper, normalized location…
0
votes
1 answer

Pre-trained weights for custom object detection using yolov3

Deep-learning newbie here, I am trying to build a custom object detection model using yolov3. After reading some documentation/tutorials, I found that is often suggested to use pre-trained weights used for other datasets such as ImageNet or COCO,…
revy
  • 3,945
  • 7
  • 40
  • 85
0
votes
2 answers

object detection with yolo - map

I am working on an object detection project. I am using Ubuntu 18.04 and yolov3 for object detection. I want to get map values of detection. I write some different codes to terminal and run : 1. ./darknet detector map custom/project.data…
bcbc
  • 1
  • 1
0
votes
1 answer

Incorrect nvcc path and MSB3721 while compiling Darknet with CUDA 10.0 on VS 2017

I was trying to compile Darknet on my machine with CUDA 10.0 and opencv 3.4.0 on VS 2017 (using v140 toolkits), and I got 11 MSB3721 errors located in CUDA 10.0.targets, line "< CudaCompile...". I typed the command into CMD and seemed that system…
Alex Fu
  • 113
  • 1
  • 8
0
votes
1 answer

yolo_head when evaluates model gives: Attribute Error: list object has no attribute 'dtype'

Sorry, Im new to this, but I can't find the answer anywhere. I am trying to implement a yolo car detection on my computer, but I'm getting this error and not sure what to do. Here is the code sess = tf.keras.backend.get_session() ##detect 80…
BluRaven
  • 1
  • 1
0
votes
1 answer

Change video stream resolution in YoloV4 demo

Here's what shows when loading the live stream demo for Yolov4: Webcam index: 2 [ WARN:0] global ../modules/videoio/src/cap_gstreamer.cpp (935) open OpenCV | GStreamer warning: Cannot query video position: status=0, value=-1, duration=-1 Video…
Jaguar84
  • 3
  • 3
0
votes
1 answer

connect YOLO with vgg classifier

I have a YOLO model to detect the location of traffic signs and I have another model that determine what is the sign my question is how can I send the detected signs from YOLO to the classifier then write the correct label above the bounding box…
0
votes
0 answers

Converting a darknet model to a tensorflow model

I converted a pytorch(.pt) model to a darknet model (.weights) then when I tried to convert the darknet mode to tensorflow model (.tf) I got this error assert len(wf.read()) == 0, 'failed to read all data' AssertionError: failed to read all data
SpawN
  • 55
  • 11
0
votes
1 answer

YOLOv3 Wrong Bounding Box Prediction

I trained YOLOv3 for 1 class. When I try to predict find my object in the picture it gives me wrong bounding box coordinates and shape. I've trained yolov3-tiny version with 70 608x608 images. It was working perfect. Even I trained it with CPU and…
Ugurcan
  • 366
  • 1
  • 4
  • 17