1,851 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
Advice
0
votes
1
replies
47
views
Matching card tracking with card detection/classification
I'm writing a program to track my card games. It uses a birds eye view camera to record the playing surface, and a YOLO model to classify the cards. I'm running into an issue figuring out where the ...
Advice
0
votes
0
replies
41
views
Looking for a model that can robustly segment handwritten text lines (curved, overlapping, camera-captured images)
I’m currently working on extracting / segmenting text lines from handwritten documents. Most of the input images are camera-captured, which introduces several challenges:
Lines may be curved or ...
0
votes
0
answers
97
views
Batch processing with Ultralytics YOLO does not seem to work for coreml, but is working fine for .pt
I am trying to do batch inference with YOLO11. I am working with MacBook and I am running into this issue
from ultralytics import YOLO
import numpy as np
# Load YOLO model
model = YOLO("yolo11s....
0
votes
0
answers
78
views
I am having latency in box rendering in Yolo object detection
I'm developing a Flutter app for real-time pharmaceutical box detection using TensorFlow Lite. The detection works well, but I'm experiencing significant latency in bounding box rendering when moving ...
3
votes
1
answer
2k
views
`torch.load` is unable to load model weights or variables
I have the model file doclayout_yolo.pt in same folder as code weights-script.py. Also, I installed the required packages via the following commands:
python -m pip install doclayout-yolo
python -m ...
0
votes
0
answers
48
views
YOLOv11 CPU quit without throwing exception
I'm trying to use YOLO v11 to do real time object detection, the simple code is:
from ultralytics import YOLO
import time
import gc
import threading
import psutil
import os
process = psutil.Process(os....
-3
votes
1
answer
62
views
YOLO Model only working on imported RoboFlow images
So I trained a YOLO model on various datasets for bounding box detection. I used one already annotated dataset from the net, and some of my own pictures I annotated from RoboFlow. I then downloaded ...
6
votes
0
answers
79
views
Unity Sentis fails to run YOLOv9s ONNX model with "IndexError: axis 3 is out of bounds"
Unity Sentis fails to run YOLOv9s ONNX model with "IndexError: axis 3 is out of bounds"
I'm using a YOLOv9s model trained on a custom dataset and facing issues running it in Unity Sentis ...
0
votes
0
answers
112
views
How to Track an Object Using the ultralytics_yolo Library in Flutter?
I'm currently working on integrating the ultralytics_yolo package into my Flutter app for object detection and tracking. I've managed to get the detection part working, but I'm not sure how to ...
1
vote
0
answers
241
views
Counting objects in YOLO11 defining several lines
I'm using an example from Ultralytics (YOLOv11) to count apples on a conveyor belt. It defines a line across the frame and counts how many apples cross that line using the ObjectCounter solution ...
0
votes
1
answer
278
views
Error about attention in the last yolo version
When I want to use YOLO12 in inference, I get this error:
---------------------------------------------------------------------------
AttributeError Traceback (most recent ...
0
votes
1
answer
506
views
Error installing dependencies from requirements.txt when setting up YOLOv10
I'm learning how to use Yolov10 and I'm facing some difficulties. When I try to install the libraries listed in the requirement.txt file, I encounter this error.
ERROR: pip's dependency resolver does ...
0
votes
0
answers
49
views
Pointcloud not aligned with with map
i am new to robotics and i want to build a robot that has a lidar sensor, depth camera and which detects traversable soft objects (using yolo) and extracts only the depth image of the detected objects ...
1
vote
1
answer
100
views
Yolo v11 obj detection custom inference gives totally different results than yolo cli predict
I am trying to run an exported version of a fine-tuned yolov11n to detect road signs. When I run the model with the yolo cli on this exact same image, I get an object detected with confidence 0.86. ...
2
votes
0
answers
83
views
Implementation of real-time object detection and navigation on a robot using RGB-D and LiDAR data without relying on simulation
I need to implement real-time object detection and robot navigation using RGB-D and LiDAR data on a Deep Robotics Lite3 quad robot without simulation.
I have ROS Melodic installed on its system.
The ...