我有一个存储为像素值数组的图像。我希望能够对此图像应用亮度或对比度滤镜。是否有任何简单的方法或算法可用于实现此目的。
这是我的代码......
PlanarImage img=JAI.create("fileload","C:\\aimages\\blue_water.jpg");
BufferedImage image = img.getAsBufferedImage();
int w = image.getWidth();
int h = image.getHeight();
int k = 0;
int[] sbins = new int[256];
int[] pixel = new int[3];
Double d = 0.0;
Double d1;
for (int x = 0; x < bi.getWidth(); x++) {
for (int y = 0; y < bi.getHeight(); y++) {
pixel = bi.getRaster().getPixel(x, y, new int[3]);
k = (int) ((0.2125 * pixel[0]) + (0.7154 * pixel[1]) + (0.072 * pixel[2]));
sbins[k]++;
}
}
答案 0 :(得分:5)
我的建议是使用Java的内置方法来调整亮度和对比度,而不是尝试自己调整像素值。做这样的事情似乎很容易......
float brightenFactor = 1.2f
PlanarImage img=JAI.create("fileload","C:\\aimages\\blue_water.jpg");
BufferedImage image = img.getAsBufferedImage();
RescaleOp op = new RescaleOp(brightenFactor, 0, null);
image = op.filter(image, image);
浮点数是亮度的百分比。在我的例子中,它会将亮度增加到现有值的120%(即比原始图像亮20%)
有关类似问题,请参阅此链接... Adjust brightness and contrast of BufferedImage in Java
请参阅此链接以获取示例应用程序... http://www.java2s.com/Code/Java/Advanced-Graphics/BrightnessIncreaseDemo.htm