1. 이미지의 절댓값 받아옴 (width, height) def ImageInfo(): try: for file in path_list: img = Image.open(path + file) w,h = img.size image_info_dictionary[file] = w,h print(f'width : {w} height : {h}') except Exception as ex: print(f'ImageInfo error : {ex}') 2. 이미지 그려넣을 label 좌표 값 읽어옴 def drawbbox_textfile(): for list in text_list: read_file_data = open(text_path + list , 'r') bbox_list = [] for data in re..