python实现图像RGB拾取

python实现图像RGB拾取

讲解
1、库:PIL.Image
2、代码效果:对指定图像内非背景RGB进行拾取
3、代码原理:getpixel实现像素值拾取
代码

from PIL import Image


def got_RGB(img_path):
    img = Image.open(img_path)
    width, height = img.size
    img = img.convert('RGB')
    array = []
    for i in range(width):
        for j in range(height):
            r, g, b = img.getpixel((i, j))
            if r != 0:
                print(r, b, g)
            rgb = (r, g, b)
            array.append(rgb)


if __name__ == "__main__":
    img_path = r""#图像路径
    got_RGB(img_path)

运行结果
待提取图像
python实现图像RGB拾取_第1张图片
提取结果
在这里插入图片描述

你可能感兴趣的:(文件处理小程序,python,opencv,计算机视觉,图像识别)