源代码:
for image_file in os.listdir(test_path):
print('image_file =',image_file) try: image_type = imghdr.what(os.path.join(test_path,image_file)) if not image_type: continue except IsADirectoryError: continue报错:
# python test_yolo.py model_data/yolo.h5
File "test_yolo.py",line 118print('image_file =',image_file)
^
TabError: inconsistent use of tabs and spaces in indentation
原因:
ubuntu(linux)下,缩进用空格(Space)键,如果用Tab键,系统报错。windows下不存在该问题。
print('image_file =',image_file) 改行缩进使用了Tab键。
解决办法:
用Tab的位置使用空格(Space)键替换。