AttributeError: ‘NoneType‘ object has no attribute ‘astype‘

今天在复现faster RCNN网络时,出现AttributeError: 'NoneType' object has no attribute 'astype'报错,如下图所示AttributeError: ‘NoneType‘ object has no attribute ‘astype‘_第1张图片

通过dug,发现im的shape为none,究其原因是因为cv.imread无法读取图像,主要原因是因为我数据集中存在中文名称。更加详细的请参考一下大佬的博客

 python cv2.imread 读取中文路径的图片返回为None的问题_陶将的博客-CSDN博客_cv2读进来的图像是none以及

AttributeError: 'NoneType' object has no attribute 'astyp_冬后晚晴的博客-CSDN博客

你可能感兴趣的:(python)