简体   繁体   English

如何使用PIL在单个白色背景上检测并裁剪多个图像?

[英]How do you detect and crop multiple images on a single white background using PIL?

I have just started using PIL and I need help with detecting and cropping out multiple images on a single white background using PIL. 我刚刚开始使用PIL,我需要使用PIL在单个白色背景上检测和裁剪多个图像方面需要帮助。 They can be different sizes and be in different locations. 它们的大小可以不同,可以位于不同的位置。 Right now, I can only crop out one image. 目前,我只能裁剪一张图像。 Please help, Thank you! 请帮忙,谢谢!

def trim(im):
    bg = Image.new(im.mode, im.size, im.getpixel((0,0)))
    diff = ImageChops.difference(im, bg)
    diff = ImageChops.add(diff, diff, 2.0, -100)
    bbox = diff.getbbox()
    if bbox:
        return im.crop(bbox)
    else:
        print("No image detected")

image1 = Image.open('multiple.jpg')
image2 = test(image1)

This could be made more efficient, but that would complicate the answer. 可以提高效率,但这会使答案复杂化。

from PIL import Image, ImageChops

def crop(im, white):
    bg = Image.new(im.mode, im.size, white)
    diff = ImageChops.difference(im, bg)
    bbox = diff.getbbox()
    if bbox:
        return im.crop(bbox)

def split(im, white):
    # Is there a horizontal white line?
    whiteLine = Image.new(im.mode, (im.width, 1), white)
    for y in range(im.height):
        line = im.crop((0, y, im.width, y+1))
        if line.tobytes() == whiteLine.tobytes():
            # There is a white line
            # So we can split the image into two
            # and for efficiency, crop it
            ims = [
                crop(im.crop((0, 0, im.width, y)), white),
                crop(im.crop((0, y+1, im.width, im.height)), white)
            ]
            # Now, because there may be white lines within the two subimages
            # Call split again, making this recursive
            return [sub_im for im in ims for sub_im in split(im, white)]

    # Is there a vertical white line?
    whiteLine = Image.new(im.mode, (1, im.height), white)
    for x in range(im.width):
        line = im.crop((x, 0, x+1, im.height))
        if line.tobytes() == whiteLine.tobytes():
            ims = [
                crop(im.crop((0, 0, x, im.height)), white),
                crop(im.crop((x+1, 0, im.width, im.height)), white)
            ]
            return [sub_im for im in ims for sub_im in split(im, white)]

    # There are no horizontal or vertical white lines
    return [im]

def trim(im):
    # You have defined the pixel at (0, 0) as white in your code
    white = im.getpixel((0,0))

    # Initial crop
    im = crop(im, white)
    if im:
        return split(im, white)
    else:
        print("No image detected")

image1 = Image.open('multiple.jpg')
trim(image1)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM