xingguang12
xingguang12
我想做一个车载相机视角下的数据集,但是网上很多图片和视频有水印,很难去获取到,你们能告诉我一些渠道去获取这些图片或者视频吗?十分感谢
 您在论文中写道“在训练过程中,将同时检测人行横道和引导箭头,引导箭头将从最终的检测结果中排除。这样实际上增加了训练中导箭的损失函数。”,请问您是怎么将引导箭头将从最终的检测结果中排除的?我在您的detect.py代码中并没有看到相应操作,您能指点我一下吗?
### Search before asking - [X] I have searched the YOLOv5 [issues](https://github.com/ultralytics/yolov5/issues) and [discussions](https://github.com/ultralytics/yolov5/discussions) and found no similar questions. ### Question I trained my data set with yolov5s, trained on...
### Search before asking - [X] I have searched the Ultralytics YOLO [issues](https://github.com/ultralytics/ultralytics/issues) and [discussions](https://github.com/ultralytics/ultralytics/discussions) and found no similar questions. ### Question When detecting a video, sometimes the object does...
How to choose the best IOU threshold during reasoning to make the detection effect better?
`import cv2 import numpy as np cap = cv2.VideoCapture(0) while True: ret, frame = cap.read() if not ret: break height, width, channels = frame.shape print(f"Width: {width}, Height: {height}") # Convert...
`import time import random import threading from multiprocessing import Process, Manager from UltraDict import UltraDict class A(): def __init__(self, name, dictname): self.name = name self.dictname = dictname self.personnum = -1...