yolov4

How can I improve my dataset for increased mAP in yolov4 object detection framework

How can I improve my dataset for increased mAP in yolov4 object detection framework Question: I want to use Yolov4 object detector to detect LED matrices like the one in the attached picture. The goal of my project is to perform automated RoI of these types of LED matrices in vehicular scenarios, mainly. Unfortunately, these …

Total answers: 2

How to load custom yolo v-7 trained model

How to load custom yolo v-7 trained model Question: How do I load a custom yolo v-7 model. This is how I know to load a yolo v-5 model : model = torch.hub.load(‘ultralytics/yolov5’, ‘custom’, path=’yolov5/runs/train/exp15/weights/last.pt’, force_reload=True) I saw videos online and they suggested to use this : !python detect.py –weights runs/train/yolov7x-custom/weights/best.pt –conf 0.5 –img-size 640 …

Total answers: 4

(-5:Bad argument) in function 'rectangle' – Can't parse 'pt1'. Sequence item with index 0 has a wrong type

(-5:Bad argument) in function 'rectangle' – Can't parse 'pt1'. Sequence item with index 0 has a wrong type Question: 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:yolov4trainingtensorflow-yolov4-tflite-masterdatarice.jpg –framework tflite –tiny true And the wrong message: cv2.rectangle(image, c1, c2, bbox_color, bbox_thick) …

Total answers: 4