Skip to content

Commit

Permalink
Merge branch 'sd3' into faster-block-swap
Browse files Browse the repository at this point in the history
  • Loading branch information
kohya-ss committed Nov 11, 2024
2 parents cde90b8 + 3fe94b0 commit 17cf249
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions library/train_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -1404,12 +1404,12 @@ def get_image_size(self, image_path):
# return imagesize.get(image_path)
image_size = imagesize.get(image_path)
if image_size[0] <= 0:
# imagesize doesn't work for some images, so use cv2
img = cv2.imread(image_path)
if img is not None:
image_size = (img.shape[1], img.shape[0])
else:
logger.warning(f"failed to get image size: {image_path}")
# imagesize doesn't work for some images, so use PIL as a fallback
try:
with Image.open(image_path) as img:
image_size = img.size
except Exception as e:
logger.warning(f"failed to get image size: {image_path}, error: {e}")
image_size = (0, 0)
return image_size

Expand Down

0 comments on commit 17cf249

Please sign in to comment.