这个出错的问题是:这篇文章解释了
就是在np数组经过 img0 = img0[:, :, ::-1]转换之后导致img0的内存不连续,转成tensor的时候报这个错,所以只需要在其转换成tensor之前,使用
img0 = np.ascontiguousarray(img0)
语句即可
At least one stride in the given numpy array is negative, and tensors with negative strides are not
最新推荐文章于 2023-11-03 08:08:11 发布
文章讨论了在处理图像数据时,对np数组进行颜色通道反转操作后可能导致内存不连续的问题,这在转换为tensor时会引发错误。解决方案是在转换为tensor之前,使用np.ascontiguousarray()确保数组内存连续,从而避免转换错误。
摘要由CSDN通过智能技术生成