gpt4 book ai didi

java - 如何在Java中对像素进行算术运算

转载 作者:行者123 更新时间:2023-12-01 17:02:42 25 4
gpt4 key购买 nike

我必须为图像中的所有像素添加一些常量值 - 对于灰色图像和彩色图像。但我不知道该怎么做。我通过 BufferedImage 读取图像,并且尝试获取二维像素数组。我发现类似 BufferedImage.getRGB() 的东西,但它返回奇怪的值(负值和巨大的值)。如何为我的缓冲图像添加一些值?

最佳答案

您可以使用:

byte[] pixels = ((DataBufferByte) bufferedImage.getRaster().getDataBuffer()).getData();

获取图像中所有像素的byte[],然后循环遍历byte[],将常量添加到每个字节元素。

如果您希望将字节转换为二维字节[],我找到了一个可以做到这一点的示例( Get Two Dimensional Pixel Array )。

总而言之,代码如下所示:

private static int[][] convertToArrayLocation(BufferedImage inputImage) {
final byte[] pixels = ((DataBufferByte) inputImage.getRaster().getDataBuffer()).getData(); // get pixel value as single array from buffered Image
final int width = inputImage.getWidth(); //get image width value
final int height = inputImage.getHeight(); //get image height value
int[][] result = new int[height][width]; //Initialize the array with height and width

//this loop allocates pixels value to two dimensional array
for (int pixel = 0, row = 0, col = 0; pixel < pixels.length; pixel++) {
int argb = 0;
argb = (int) pixels[pixel];

if (argb < 0) { //if pixel value is negative, change to positive
argb += 256;
}

result[row][col] = argb;
col++;

if (col == width) {
col = 0;
row++;
}
}

return result; //return the result as two dimensional array
} //!end of method!//

关于java - 如何在Java中对像素进行算术运算,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61491439/

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