나는 이미지 경로를 반환하기 위해 노력하고있어이 없습니다 :목록 이미지 경로 - 다음과 같이 '네임 스페이스'객체는 어떤 속성 '__getitem__'
Traceback (most recent call last):
File "test.py", line 11, in <module>
imagePath = paths.list_images(args['dataset'])
TypeError: 'Namespace' object has no attribute '__getitem__'
다음 오류가 발생,
from imutils import paths
import argparse
# create parser
parser = argparse.ArgumentParser()
# define the command-line options
parser.add_argument('--dataset', required=True,help='path to the dataset')
# read the command-line arguments and interpret them
args = parser.parse_args()
imagePath = paths.list_images(args['dataset'])
print imagePath
을하지만, 내가 잘못 여기
$ python test.py --dataset /images
어떤 생각을하고 있어요 무엇 :
나는 다음과 같은 명령을 입력하여 스크립트를 실행?
감사합니다.
'args'는 사전이 아닌'argparse.Namespace' 객체입니다. 속성이 필요합니다. 그것이 무엇인지 명확하게 알기 위해서는'print (args)'를해라. – hpaulj