2

我想采用这个公式:

公式

并将其转换为java代码。我不认为下面的代码是正确的,因为我认为我得到了错误的结果。

return (int)(2 * a * b + Math.pow(a, 2) * (1 - 2 * b));

这是我正在使用的原始图像:http: //images2.fanpop.com/images/photos/4800000/Beach-beaches-4843817-1280-800.jpg

a = 图片链接的反转
b = 图片链接

以下是我期望的输出结果(PhotoShop):

预期结果

这就是我的输出实际的样子(我的应用程序):

实际结果

Invert inv = new Invert();
inv.setStage(stage);
inv.setParent(this);
BufferedImage img = inv.filter();
int[] invPixels = new int[stage.width * stage.height];
img.getRGB(0, 0, stage.width, stage.height, invPixels, 0, stage.width);
for(int i = 0; i < ImageSync.originalPixels.length; i++){
    int fg = invPixels[i];
    int bg = ImageSync.originalPixels[i];
    int color = Blends.softLight(fg, bg);
    invPixels[i] = color;
}
img = new BufferedImage(stage.width, stage.height, BufferedImage.TYPE_INT_ARGB);
img.setRGB(0, 0, stage.width, stage.height, invPixels, 0, stage.width);
Preview.setImage(img);
stage.preview = Preview.getImage();
this.repaint();

柔光:

public static int softLight(int background, int foreground){
    return (2 * background * foreground) + ((background * background) * (1 - 2 * foreground));
}
4

3 回答 3

5

尝试简单的计算:

return (2 * a * b ) + (a * a * (1 - 2 * b));
于 2012-11-27T19:01:47.407 回答
2

代码是正确的。但是您将结果类型转换为 int 可以改变结果。id 建议使用双精度或浮点数。

重要的是:确保 a & b 也是浮点数或双精度数。

于 2012-11-27T19:05:44.247 回答
0
int result = (2*a*b)+((a*a)*(1-(2*b)));

正如@shippy 所说,确保aand bare int.

于 2012-11-27T19:13:56.560 回答