当前位置: 代码迷 >> 综合 >> 解决方案:Layout of the output array img is incompatible with cv::Mat
  详细解决方案

解决方案:Layout of the output array img is incompatible with cv::Mat

热度:41   发布时间:2023-12-29 00:02:49.0
sample = images[1].permute(1,2,0).cpu().numpy()

添加 copy()方法

sample = images[1].permute(1,2,0).cpu().numpy().copy()

具体原因不详

  相关解决方案