Skip to main content
Filter by
Sorted by
Tagged with
-4 votes
0 answers
65 views

I am building a real-time vehicle recognition system using Python. The system should support these input methods: Local video file upload Live camera feed using a webcam camera URL YouTube video ...
Pradeep Prabhu's user avatar
2 votes
2 answers
91 views

Problem: I need to check whether a small black-and-white icon (template) appears inside a large, colored dashboard photo. The icon in the photo may differ from the template in color, scale, small ...
Dũng Hoàng's user avatar
1 vote
1 answer
108 views

I have to find the contours of boxes. Some boxes have diagonal inside of them. I try to remove diagonal but I think it isn't answer. Here are the images those I preprocessing and contour result. Only ...
Lee Minhyeung's user avatar
5 votes
1 answer
172 views

I am tasked with the problem of finding the colors on the face of a stickerless Rubik's cube using OpenCV but I can't figure out what the best way might be to do so. I tried to look at various ...
Tripaloski's user avatar
3 votes
3 answers
284 views

I try to find the best way to detect images with the rotation. Without rotation cv2.matchTemplate works pretty fine, but I found no function for rotated images. I need the position and angle of the ...
HEP's user avatar
  • 63
0 votes
0 answers
166 views

I have exported the yolov5s PyTorch model from ultralytics/yolov5 and converted it to ONNX, using Google Colab, so that I can convert it to rknn in my rk3588 Radxa Rock 5c module. %cd /content/ !pip ...
kennedy Kamotho's user avatar
-1 votes
1 answer
49 views

I have exported my VertexAI model to TFJS as "edge", which results in: dict.txt group1_shard1of2.bin group1_shard2of2.bin model.json Now, I send an image from my client to the Node/Express ...
Phil Lucks's user avatar
  • 4,152
1 vote
0 answers
97 views

I'm working on an object detection project in C++ using OpenCV. Specifically, I capture an image (e.g., coins on a background) and then try to detect them via Canny edge detection and contour ...
Markus Trost's user avatar
1 vote
0 answers
109 views

I am trying to replicate the working of TFLITE_DETECTION_POSTPROCESS layer for a custom object detection model. Does anyone has any reference for TFLITE_DETECTION_POSTPROCESS layer implementation in ...
Desmond's user avatar
  • 415
0 votes
0 answers
88 views

I need to implement CAM for a model trained on the base model ssd_mobilenet_v2_320x320_coco17_tpu-8 in the pre-trained Object Detection Zoo. How could I accesses the layers and other fields necessary ...
katanta's user avatar
  • 19
2 votes
0 answers
139 views

I'm new to Xcode and have some trouble getting my model into an appropriate format. I have quite a similar problem as in this unanswered question but for OBBs: I trained a YOLOv8n-obb model on a ...
user29544379's user avatar
0 votes
0 answers
43 views

I have tried using ImageJ/Fiji but I am not sure how to best de-noise the image. I tried using the denoise function in Fiji to no avail. I was wondering if I could get some guidance. I was informed I ...
Han-Jiun Ke's user avatar
-2 votes
2 answers
86 views

I am looking for image processing tools in python to get the coordinates from the Blade Tips of a Wind Turbine, in this case a small model of one. The blades already get segmented by a yoloV8 ...
Niklas's user avatar
  • 15
1 vote
1 answer
563 views

The boxes returned by the predict function doesn't seem to be of normalized form, even after multiplying with the image width and height i can't get the coordinates of the bounding boxes. import torch ...
Leroy Jeslyn's user avatar
2 votes
1 answer
98 views

I need to correctly outline as many as possible of the mortared stones in a street zone. The code below correctly detects some of them in the stones image "in.jpg", but it is not obvious why ...
Nicolas's user avatar
  • 23
1 vote
0 answers
110 views

I am working on an Android application where I want to integrate an object detection model with Augmented Reality (AR). My current setup is working fine with a normal CameraX implementation. However, ...
Dinesh Radhakrishnan's user avatar
0 votes
0 answers
38 views

I am developing an application to detect cardboard boxes with a 3d camera. After rasterising the image to get a 2d image of a particular plane from the point cloud I got this. enter image description ...
david's user avatar
  • 1
1 vote
0 answers
233 views

I am working on an object detection project, detecting three types of objects in a set of images. This image shows a Sample of yolo segment model prediction model image. The issue I have is that ...
Izzy's user avatar
  • 21
2 votes
0 answers
427 views

I'm using yolov11 to train a model to recognize a toy truck. I followed the steps in this EXCELLENT youtube video, and I have a working model build off of yolov11m.pt. I'm using the following ...
Seth Bowers's user avatar
0 votes
0 answers
175 views

I want to do object detection using cascade r-cnn and swin transformer. Here is my code and the libraries I installed. mmcv 2.1.0 mmdet 3.3.0 ...
Pia Pogung's user avatar
0 votes
0 answers
56 views

I'm trying to import my data into Vertex Dataset for my Object Detection use case, when I'm using Python API using method import_data from AI Platform, after process import done, there is no bounding ...
Krisna Gita's user avatar
1 vote
0 answers
170 views

I'm using yolo to track a face in a video on a frame by frame basis, and then I'm using OpenCV to crop the video (with some padding) around the speakers face so it creates a motion tracking type ...
Thomas Lancer's user avatar
1 vote
0 answers
57 views

My objective is to develop a object detection model for iOS and Android. I have trained an SSD Mobilenetv3 model with Pytorch framework using Coco format dataset. I have trained it from the official ...
Ria Ghosh's user avatar
0 votes
1 answer
107 views

I'm trying to use opencv to detect objects in a video game. I have grabbed the image as a png and trimmed it so that the background is transparent, and yet, it only detects it at threshold levels ~ 0....
h0tdawgz132's user avatar
1 vote
0 answers
63 views

I have a robot with a Intel RealSense D435 (a depth camera) and want to estimate the position of an detected object. However, the cam is rotated at a 30° angle. When I detect an object, I can ...
Poguinho's user avatar

1
2 3 4 5
90