我正在尝试使用 ChunkyPNG 查找图像的对比度。有没有办法使用ChunkyPNG获得图像的标准偏差?
问问题
120 次
1 回答
2
查看 ChunkyPNG 代码,我找不到任何统计模块。
但是您可以使用以下方法:
image = ChunkyPNG::Image.from_file('any PNG image file')
# @return [Hash] some statistics based on image pixels
def compute_image_stats(image, &pixel_transformation)
# compute pixels values
data = image.pixels.map {|pixel| yield(pixel)} # apply the pixel convertion
# compute stats
n = data.size # sum of pixels
mean = data.inject(:+).to_f / n
variance = data.inject(0) {|sum, item| sum += (item - mean)**2} / n
sd = Math.sqrt(variance) # standard deviation
{mean: mean, variance: variance, sd: sd}
end
# compute stats for grayscale image version
compute_image_stats(image) {|pixel| ChunkyPNG::Color.grayscale_teint(pixel)}
# compute stats for blue channel
compute_image_stats(image) {|pixel| ChunkyPNG::Color.b(pixel)}
我在回报中包含了所有统计数据,因为它们是为标准差 (sd) 计算而计算的。
于 2013-11-27T19:19:59.450 回答