如何在Android Camera中运行时应用照片效果/过滤器?

时间:2013-10-08 06:41:47

标签: java android

请建议我如何在Android相机的运行时应用照片效果/过滤器?没有使用JNI,OpenGl和开放CV。我只需要通过Java代码来应用效果。

2 个答案:

答案 0 :(得分:1)

步骤1.将帧从NV21转换为某些图像处理库支持的格式。您可以阅读如何操作herehere

步骤2.使用图像处理库执行过滤。例如,您可以使用ImageJ。您可以阅读有关如何使用ImageJ hereherehere的信息。

答案 1 :(得分:0)

查看Image Processing以对图片应用各种效果。它提供了捕获后在Image上应用的各种效果。

假设我想在图像上应用对比效果,那么我将使用以下方法:

public static Bitmap createContrast(Bitmap src, double value) {
    // image size
    int width = src.getWidth();
    int height = src.getHeight();
    // create output bitmap
    Bitmap bmOut = Bitmap.createBitmap(width, height, src.getConfig());
    // color information
    int A, R, G, B;
    int pixel;
    // get contrast value
    double contrast = Math.pow((100 + value) / 100, 2);
        // scan through all pixels
    for(int x = 0; x < width; ++x) {
        for(int y = 0; y < height; ++y) {
            // get pixel color
            pixel = src.getPixel(x, y);
            A = Color.alpha(pixel);
            // apply filter contrast for every channel R, G, B
            R = Color.red(pixel);
            R = (int)(((((R / 255.0) - 0.5) * contrast) + 0.5) * 255.0);
            if(R < 0) { R = 0; }
            else if(R > 255) { R = 255; }
            G = Color.red(pixel);
            G = (int)(((((G / 255.0) - 0.5) * contrast) + 0.5) * 255.0);
            if(G < 0) { G = 0; }
            else if(G > 255) { G = 255; }
            B = Color.red(pixel);
            B = (int)(((((B / 255.0) - 0.5) * contrast) + 0.5) * 255.0);
            if(B < 0) { B = 0; }
            else if(B > 255) { B = 255; }
             // set new pixel color to output bitmap
            bmOut.setPixel(x, y, Color.argb(A, R, G, B));
        }
    }
    // return final image
    return bmOut;
}

使用以上方法:

    BitMap bmp =BitmapFactory.decodeByteArray(byteArray, 0, byteArray.length); //Here you can define your image and convert it into Bitmap.
      bmp = createContrast(bm,75);
  mImageView.setImageBitmap(bmp);