mg_crop = img_read.crop((x, y, x + w, y + h)) image_save_name = image_path_name.split ('/')[-2] + '_' + \ image_path_name.split ('/')[-1].split ('.')[0] image_save_path = dataset_image_path.rsplit('/', 1)[0] image_save_path_name = image_save_path + '/' + image_save_name + \ '_crop_' + str ( x) + '-' + str (y) + '-' + str (x + w) + '-' + str ( y + h) + '_iou_' + str (iou) + '.jpg' logging.debug('image_save_path_name {}'.format(image_save_path_name)) img_crop.save(image_save_path_name) logging.debug('img_crop {} {} {}'.format(img_crop.format, img_crop.size, img_crop.mode)) 报错:ValueError: cannot write empty image as JPEG
时间: 2024-02-23 16:00:06 浏览: 229
image_crop:一个Flutter插件,可在iOS和Android上裁剪图像
5星 · 资源好评率100%
这个错误通常是因为你尝试将一个空的图像保存为JPEG格式。这可能是由于你在裁剪过程中没有正确处理图像数据导致的。你可以在保存图像之前,加上以下代码来检查图像是否为空:
```
if img_crop.mode != "RGB" or img_crop.size[0] == 0 or img_crop.size[1] == 0:
print("Error: empty or invalid image")
else:
img_crop.save(image_save_path_name)
```
这样可以避免保存空图像的情况。如果问题仍然存在,你可以检查一下你的图像处理代码,确保它能够正确地加载和处理图像数据。
阅读全文