python 获取图片像素灰度值

 用放大器框选目标区域,显示像素灰度值

import matplotlib.pyplot as plt
from PIL import Image

# Open the original image
original_image = Image.open("E:/1.bmp")

# Convert the original image to grayscale
grayscale_image = original_image.convert("L")

# Get the size of the grayscale image
width, height = grayscale_image.size

# Create a list to store the grayscale values
gray_values = []

# Iterate over each pixel in the grayscale image
for y in range(height):
    row = []
    for x in range(width):
        # Get the grayscale value of the pixel
        gray_value = grayscale_image.getpixel((x, y))
        row.append(gray_value)
    gray_values.append(row)

# Create a grid plot of the grayscale values
plt.imshow(gray_values, cmap='gray', interpolation='nearest')
plt.colorbar()

# Show the plot
plt.show()


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值