【YOLOV5调用摄像头识别报错的解决方法】

YOLOV5 使用detect.py进行调用摄像头实时识别时 'Upsample' object has no attribute 'recompute_scanle_factor报错方法

【YOLOV5调用摄像头识别报错的解决方法】_第1张图片

去到python库里找到upsampling.py并打开,如下图所示;

【YOLOV5调用摄像头识别报错的解决方法】_第2张图片

修改upsampling.py,修改后的结果如下所示:

【YOLOV5调用摄像头识别报错的解决方法】_第3张图片

def forward(self, input: Tensor) -> Tensor:
        # return F.interpolate(input, self.size, self.scale_factor, self.mode, self.align_corners,
        #                      recompute_scale_factor=self.recompute_scale_factor)
        return F.interpolate(input, self.size, self.scale_factor, self.mode, self.align_corners)

保存修改,再去运行detect.py就可以调用摄像头识别了

你可能感兴趣的:(python,人工智能,深度学习,目标检测)