gpt4 book ai didi

python - 如何找到图像中出现频率最高的像素值?

转载 作者:太空宇宙 更新时间:2023-11-04 02:16:14 25 4
gpt4 key购买 nike

编辑点评:


  • 如何计算图像中的像素出现次数?

我有一组图像,其中每个像素由 0-255 范围内的 3 个整数组成。

我有兴趣找到一个像素作为一个整体“代表”(尽可能)整个像素群,并且该像素必须出现在像素群中。我正在确定我的图像集中哪个像素最常见(中值 模式)最有意义。

我正在使用 python,但我不确定如何去做。图像存储为 numpy 数组,维度为 [n, h, w, c],其中 n 是图像的数量,h 是高度,w 是宽度c` 是 channel (RGB)。

最佳答案

我假设您需要找到最常见的元素,正如 Cris Luengo 提到的那样,它被称为众数。我还将假设 channel 的位深度为 8 位(值介于 0 和 255 之间,即模 256)。

这是一个独立于实现的方法:

目的是维护遇到的所有不同种类像素的计数。为此使用字典是有意义的,其形式为 {pixel_value : count}

一旦这个字典被填充,我们就可以找到计数最高的像素。

现在,“像素”不可哈希,因此不能直接存储在字典中。我们需要一种方法来为每个唯一像素分配一个整数(我将其称为 pixel_value),即,您应该能够转换 pixel_value <--> 像素的 RGB 值

此函数将 RGB 值转换为 0 到 16,777,215 范围内的整数:

def get_pixel_value(pixel):
return pixel.red + 256*pixel.green + 256*256*pixel.blue

并将 pixel_value 转换回 RGB 值:

def get_rgb_values(pixel_value):
red = pixel_value%256
pixel_value //= 256
green = pixel_value%256
pixel_value //= 256
blue = pixel_value
return [red,green,blue]

这个函数可以找到图像中出现频率最高的像素:

def find_most_common_pixel(image):
histogram = {} #Dictionary keeps count of different kinds of pixels in image

for pixel in image:
pixel_val = get_pixel_value(pixel)
if pixel_val in histogram:
histogram[pixel_val] += 1 #Increment count
else:
histogram[pixel_val] = 1 #pixel_val encountered for the first time

mode_pixel_val = max(histogram, key = histogram.get) #Find pixel_val whose count is maximum
return get_rgb_values(mode_pixel_val) #Returna a list containing RGB Value of the median pixel

如果您希望在一组图像中找到最频繁出现的像素,只需添加另一个循环for image in image_set 并为所有图像中的所有 pixel_values 填充字典。

关于python - 如何找到图像中出现频率最高的像素值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52591281/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com