Skip to main content

All Questions

0 votes
0 answers
94 views

I kept getting this error. ImportError: /usr/local/lib/python3.9/dist-packages/cv2/cv2.abi3.so: undefined symbol: __atomic_store_8 I've checked the python and opencv installed on my raspberry pi and ...
etnol's user avatar
  • 1
0 votes
0 answers
158 views

i'm trying to create a vehicle collision detection system for my thesis project but i need to detect the speed of objects and distance to calculate the possible collisions. i'm trying to create it ...
Lre's user avatar
  • 1
-1 votes
1 answer
2k views

INFO : Created TensorFlow Lite XNNPACK delegate for CPU It is not detecting the hands or doing anything, only the camera is opening. Code : import cv2 import mediapipe as mp cap = cv2.VideoCapture(0) ...
Ditto Prior's user avatar
0 votes
0 answers
88 views

I printed a variable print(detection_result) which I called from detection_result = detector.detect(input_tensor) and it printed DetectionResult(detections=[Detection(bounding_box=BoundingBox(origin_x=...
Michael Dixon's user avatar
0 votes
1 answer
1k views

I'm trying to run the MoveNet Pose Estimation model on a video but for some reason my keypoints are very inaccurate. I assume this does not have anything to do with the predictions itself but with how ...
Jonas's user avatar
  • 7,902
0 votes
1 answer
1k views

So, I am working on a Model, that I have successfully trained, it is a .tflite model and uses Tensorflow Lite. I am using Python 3 as my interface with tensorflow and I am unable to add a bounding box ...
Muneeb Ahmad Khurram's user avatar
-1 votes
1 answer
2k views

Problem I want to display an image fullscreen (1920 x 1080) at 60 FPS in my application, but what I'm actually getting is closer to 15 FPS. What I've tried This is the most simplified version of my ...
Robert Garcia's user avatar
25 votes
4 answers
116k views

As I detect my tflite file, the problem happened. The command I wrote. python detect.py --weights ./checkpoints/yolov4-tiny-tf.tflite --size 416 --model yolov4 --image D:\yolov4\training\tensorflow-...
CYH's user avatar
  • 405
0 votes
0 answers
270 views

I am trying to detect the traffic light and backlight of a car using tensor flow lite for implementation on raspberry pi 3B module. I am using coco_ssd_mobilenet sample model for detection. I have ...
srinidhi.d Nayak's user avatar
1 vote
1 answer
599 views

I'm new on opencv, I have an original image like this and I want to crop each licence plate that i've cropped it with this code. import re import cv2 import numpy as np # import tensorflow.lite as ...
scalartensor's user avatar