了解Chromakey

时间:2017-11-03 08:13:16

标签: java loops if-statement chromakey

鉴于此示例代码用新背景替换所有蓝色:

public void chromakeyBlue(Picture newBg)
{
    Pixel [] pixelArray = this.getPixels();
    Pixel currPixel = null; 
    Pixel newPixel = null;

    for (int i = 0; i < pixelArray . length ; i++) { 
        currPixel = pixelArray [ i ];

        if (currPixel.getRed() + currPixel.getGreen() < currPixel . getBlue ())
        { 
            newPixel = newBg.getPixel(currPixel.getX(), 
                                      currPixel.getY ( ) ) ;
            currPixel . setColor ( newPixel . getColor ( ) ) ;
        } 
    }
}

我想知道是否使用这个条件:

currPixel.getRed() < currPixel.getBlue() && currPixel.getGreen() < 
currPixel.getBlue()
if语句上的

,如果它可以工作。换句话说,使用该条件是否与currPixel.getRed() + currPixel.getGreen() < currPixel . getBlue ()具有相同的影响?

1 个答案:

答案 0 :(得分:1)

currPixel.getRed() + currPixel.getGreen() < currPixel.getBlue()将测试蓝色是否大于红色+绿色的总和。因此,如果RGB为10,10,15,则此条件的计算结果为false。

currPixel.getRed() < currPixel.getBlue() && currPixel.getGreen() < currPixel.getBlue()将测试蓝色是否大于红色,蓝色是否大于绿色。因此,如果RGB为10,10,15,则此条件的计算结果为真。

所以不,两个条件都没有相同的效果。 (如果在视觉上它们似乎相似,那可能只是巧合的测试结果)