问题解决之 AttributeError: ‘NoneType‘ object has no attribute ‘astype‘

问题描述

运行代码时,出现报错 AttributeError: 'NoneType' object has no attribute 'astype',具体信息如下图所示:

Traceback (most recent call last):
  File "work/person_search-master/tools/demo.py", line 82, in <module>
    query_feat = net.inference(query_img, query_roi).view(-1, 1)
  File "/home/featurize/work/person_search-master/tools/../lib/models/network.py", line 178, in inference
    processed_img, scale = img_preprocessing(img)
  File "/home/featurize/work/person_search-master/tools/../lib/datasets/data_processing.py", line 49, in img_preprocessing
    processed_img = img.astype(np.float32)
AttributeError: 'NoneType' object has no attribute 'astype'

解决方法

根据报错信息可知,报错是因为 img 是 ‘NoneType’ object,所以无法使用 ‘astype’ 属性。

一般而言,当 img 不存在时才会出现上述报错,因此

  • 需要确认代码中的相应路径下存在图片
  • 需要在正确的目录下运行命令语句 python XXX.py, 保证 XXX.py 可以在正确的目录下搜索到图片路径。
    问题解决之 AttributeError: ‘NoneType‘ object has no attribute ‘astype‘_第1张图片

你可能感兴趣的:(问题解决,python,pytorch,深度学习)