2

我正在编写一个程序,允许用户比较两张照片,一张作为样本颜色,另一张进行编辑。我将从第一个收集像素信息,然后应用以下方法来编辑后者。

结果照片:http ://www.flickr.com/photos/92325795@N02/8392038944/in/photostream

我的照片正在更新,尽管质量/噪音/颜色,但这里和那里都有奇怪的颜色。任何人都知道我应该怎么做才能删除它?或者甚至更好地改进我正在使用的方法?继承人的代码:

输入是要编辑的位图,inColor 是要编辑的照片中鼻子的颜色,reqcolor 是样本/最佳照片中我的鼻子的颜色。

public Bitmap shiftRGB(Bitmap input, int inColor, int reqColor){

    int deltaR = Color.red(reqColor) - Color.red(inColor);
    int deltaG = Color.green(reqColor) - Color.green(inColor);
    int deltaB = Color.blue(reqColor) - Color.blue(inColor);

    //--how many pixels ? --
    int w = input.getWidth();
    int h = input.getHeight();


    //-- change em all! --
    for (int i = 0 ; i < w; i++){
        for (int  j = 0 ; j < h ; j++ ){
            int pixColor = input.getPixel(i,j);

            //-- colors now ? --
            int inR = Color.red(pixColor);
            int inG = Color.green(pixColor);
            int inB = Color.blue(pixColor);

            if(inR > 255){ inR = 255;}
            if(inG > 255){ inG = 255;}
            if(inB > 255){ inB = 255;}
            if(inR < 0){ inR = 0;}
            if(inG < 0){ inG = 0;}
            if(inB < 0){ inB = 0;}

            //-- colors then --
            input.setPixel(i,j,Color.argb(255,inR + deltaR,inG + deltaG,inB           + deltaB));
        }
    }

    return input;

非常感谢您对我的帮助!除了提前再次感谢您之外,我无法表达我的感激之情!

4

1 回答 1

1

该功能似乎按预期工作。

但是,我确实注意到的一件事是,在实际设置新像素的最终输出之前,您将“如果”案例用于验证边界。

        if(inR > 255){ inR = 255;}
        if(inG > 255){ inG = 255;}
        if(inB > 255){ inB = 255;}
        if(inR < 0){ inR = 0;}
        if(inG < 0){ inG = 0;}
        if(inB < 0){ inB = 0;}
        input.setPixel(i,j,Color.argb(255,inR + deltaR,inG + deltaG,inB + deltaB));

我相信这就是你真正想要做的。

        inR += deltaR
        inG += deltaG
        inB += deltaB
        if(inR > 255){ inR = 255;}
        if(inG > 255){ inG = 255;}
        if(inB > 255){ inB = 255;}
        if(inR < 0){ inR = 0;}
        if(inG < 0){ inG = 0;}
        if(inB < 0){ inB = 0;}
        input.setPixel(i,j,Color.argb(255,inR,inG,inB));
于 2013-01-20T03:54:45.960 回答