gpt4 book ai didi

android - 图像底部 30% 的平均颜色

转载 作者:行者123 更新时间:2023-11-30 03:33:39 26 4
gpt4 key购买 nike

我正在尝试编写一种方法来获取图像底部 30% 的平均颜色。我试图通过单独遍历每个像素,获取它们的颜色,对它们求和并将结果除以我检查的像素数量来做到这一点。我的代码是:

int imageWidth = image.getWidth();
int imageHeight = image.getHeight();
int pixel;
int pixelSumRed = 0;
int pixelSumBlue = 0;
int pixelSumGreen = 0;
for (int i = 0; i < 100; i++) {
for (int j = 70; j < 100; j++) {
pixel = image.getPixel((int) Math.round((i/100)*imageWidth), (int) Math.round((j/100)*imageHeight));
pixelSumRed += Color.red(pixel);
pixelSumBlue += Color.blue(pixel);
pixelSumGreen += Color.green(pixel);
Log.d("Checks", "Pixel " + i + ", " + j + " red: " + Color.red(pixel) + ", green: " + Color.green(pixel) + ", blue: " + Color.blue(pixel));
}
}

averagePixelRed = pixelSumRed / 3000;
averagePixelBlue = pixelSumBlue / 3000;
averagePixelGreen = pixelSumGreen / 3000;

现在,我注意到每个像素都打印了相同的颜色,因此对于一张图像,我将得到每个像素的 RGB = 210、44、70,而对于另一张图像,我将得到 RGB = 12、0、90对于每个像素。显然出了点问题,但我找不到它是什么。我希望你们能帮助我。

最佳答案

整数除法的奇迹!当你将 i 或 j 除以 100 时,它是作为整数除法完成的,并且向下舍入 - 你每次都会得到 0。您可以重新命令它执行以下操作:

(i * imageWidth) / 100

关于android - 图像底部 30% 的平均颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16993266/

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