- 이미지 크기 확인을 위한 코드를 짜는데 처음에 gpt에게 물어서 짠 코드가 너무 느렸다.- 시간이 너무 걸려서 다른 방법을 물었고. # 첫 번째 이미지 크기 기준 설정example_image = image_files[0] # 첫 번째 이미지 예시example_width, example_height = None, None# 첫 번째 이미지 크기 가져오기if example_image: img_cv = cv2.imread(example_image, cv2.IMREAD_UNCHANGED) if img_cv is not None: example_height, example_width = img_cv.shape[:2] print(f"Example Image: {example..