Skip to main content

Questions tagged [yolo]

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

yolo
-2 votes
0 answers
14 views

inference in the browser

I am trying to perform inference in the browser using a webcam as the source, but I am struggling to find a working solution. Do you have any ideas or guidelines on how to achieve this loading a onnx ...
Gelso77's user avatar
  • 1,871
-1 votes
0 answers
26 views

Yolov10 not training custom dataset

I am trying to train Yolov10 on Google Colab using my custom dataset. The issue is that after training has been finished the following error pops up AttributeError: 'DetMetrics' object has no ...
AsadMajeed's user avatar
0 votes
0 answers
19 views

How come I don't see yolo.yaml file in my yolov9 folder when trying to train data in G.C it expects that file

I've come across a problem. I'm doing object detection on Google Colab with the CNN Yolov9. I'm running into issues because I'm trying to train the data using a command, but the error is saying: To ...
Briana Deloatch's user avatar
-1 votes
0 answers
18 views

Deep learning and Tracking objects across cameras

I am using YOLOV10 to detect and Deep sort to tack objects it is working fine while we are in the first CCTV camera when we get to the next CCTV camera there the object is from a different point of ...
EMEliasMi8859's user avatar
-2 votes
0 answers
16 views

I need help in explaing Outline Steps to make a website with a model Deployment With Python and YOLO [closed]

I want to make a website that will take a photo from a user and detect hummans and remove background by YOLO and return the photo but i dont know how to connect the model with the website ? do it by ...
marwan mostafa's user avatar
0 votes
0 answers
26 views

How do I load my custom trained DAMO-YOLO model?

I am used to loading YOLO models with: "model=YOLO('best.pt')", where I initialize "YOLO" using "from ultralytics import YOLO". However, I am looking into computer vision ...
saisankar_123's user avatar
1 vote
1 answer
40 views

How to specify where to save the file in model.predict()?

Here is my code: from ultralytics import YOLO model = YOLO('best.pt') results = model.predict( source = '/Users/sereentaleb/Desktop/download.jpg', save=True, conf=0.25 ) This script will ...
Sereen Taleb's user avatar
0 votes
2 answers
42 views

yolov9 with gpu on PC

Hello i have a problem or maybe more of a question. Im working on a object detection project i trained my yolov9 model and now i want to test it. But every time i test it i have low fps on my webcam. ...
Bartosz Ogórek's user avatar
0 votes
2 answers
50 views

The term './darknet' is not recognized as the name of a cmdlet, function, script file, or operable program

I was running the yolov3 on custom dataset on my local laptop after doing everything when I am running this final command ./darknet detector train DATASET/voc.data cfg/yolov3-voc.cfg darknet53.conv.74 ...
Piyush Joshi's user avatar
0 votes
0 answers
61 views

Parsing Error with YOLOv3 and OpenCV 4.10.0 when reading yolov3.cfg

I'm encountering a parsing error when attempting to load a YOLOv3 model using OpenCV 4.10.0 in Python. Specifically, the error occurs while trying to read the configuration file yolov3.cfg. Despite ...
JFR_Sacha's user avatar
2 votes
0 answers
50 views

Darknet Yolov4-tiny (Grayscale Input) to Tensorflow Weights, Conversion

TL;DR: 1-channel TF model behaves differently than 3-channel one. Both converted successfully from Darknet -> TF, but 1-channel model does not perform as well as before conversion. Task at hand and ...
Kuski's user avatar
  • 21
0 votes
0 answers
30 views

Can Frigate work with models trained on images and not videos?

I have a working Yolov8 model that detects playing cards in groups or individually. It was trained on images and I would like it to work with video clips. I have exported it to a tflite format and it ...
swille's user avatar
  • 831
0 votes
0 answers
10 views

How to convert YoloTinyNet to YOLO variables?

I am using the results of detection obtained from a YoloTinyNet model as follows: results = YoloTinyNet(self._common_params, self._net_params, test=True).inference(image) To further process them and ...
Sam's user avatar
  • 376
0 votes
0 answers
23 views

train yolo weights to recognize one additional image?

I have a a YOLO model that I am training to make it able to recognize a new object with a new class defined in the new data to use for the training. Full code for the training with the new data is as ...
Sam's user avatar
  • 376
0 votes
0 answers
21 views

Problem Training YOLOv5 Model with SageMaker Using S3 Bucket Data

I'm trying to training yolov5 model with sagemaker using s3 bucket data. The total size of the training data stored in S3 exceeds 100 GB, so I am trying to use Pipe mode to load the data. the main ...
Park changhae's user avatar

15 30 50 per page
1
2 3 4 5
129