简体   繁体   English

如何使用OpenCV将图像转换为黑白图像并消除andorid中的阴影

[英]How to convert image to black & white image and remove shadow in andorid Using OpenCV

I have a code that turns a RGB bitmap into a bitmap of black and white colors, using this code: 我有一个使用以下代码将RGB位图转换为黑白位图的代码:

  public static Bitmap setDefaultValues(Bitmap bmp) {

    Mat srcMat = new Mat();
    org.opencv.android.Utils.bitmapToMat(bmp, srcMat, true);


    final Bitmap bitmap = Bitmap.createBitmap(srcMat.clone().width(), srcMat.clone().height(), Bitmap.Config.ARGB_8888);

    Imgproc.cvtColor(srcMat, srcMat, Imgproc.COLOR_BGR2GRAY, 0);

    Mat srcMat1 = srcMat;
    Imgproc.GaussianBlur(srcMat1, srcMat1, new Size(3, 3), 0);

    //Mat srcMat1 = new Mat(srcMat.rows(), srcMat.cols(), CV_8UC1);
    //int kernalsize = 3;
    //Imgproc.bilateralFilter(srcMat, srcMat1, kernalsize, kernalsize * 2, kernalsize / 2);

    srcMat1.convertTo(srcMat1, 0, 1.9, -120);
    srcMat1.convertTo(srcMat1, CvType.CV_8U, 1.9, -120);
    Imgproc.cvtColor(srcMat1, srcMat1, Imgproc.COLOR_GRAY2RGBA, 4);

    org.opencv.android.Utils.matToBitmap(srcMat, bitmap, true);
    return bitmap;

}

I have implement this code for convert RGB image into black and white. 我已经实现了将RGB图像转换为黑白图像的代码。 this is return me as right, but my question is here i cant remove shadow from image. 这是正确的返回我,但我的问题是我无法从图像中去除阴影。

also i have compare other application this is convert perfectly, i don't understand where i am wrong. 我也比较其他应用程序,这是完美转换,我不明白我在哪里错。

this is original Image : 这是原始图片: 在此处输入图片说明

this is my application output 这是我的应用程序输出 在此处输入图片说明

this is other application output 这是其他应用程序的输出 在此处输入图片说明 在此处输入图片说明

So please help me how can i achieve my goal. 因此,请帮助我如何实现我的目标。

Please use following code for convert your color image to black and white. 请使用以下代码将彩色图像转换为黑白图像。

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 bmOut;}

Please try this if you will get the solution 如果您可以找到解决方案,请尝试此操作

public static Bitmap test(Bitmap src){
  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;
    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);
            R = Color.red(pixel);
            G = Color.green(pixel);
            B = Color.blue(pixel);
            int gray = (int) (0.2989 * R + 0.5870 * G + 0.1140 * B);
            // use 128 as threshold, above -> white, below -> black
            if (gray > 128) {
                gray = 255;
            }
            else{
                gray = 0;
            }
                // set new pixel color to output bitmap
            bmOut.setPixel(x, y, Color.argb(A, gray, gray, gray));
        }
    }
    return bmOut;
}

Please see the answer on this thread. 请查看该线程的答案。 He has explained and provide a good result in output. 他已经解释并在输出中提供了良好的结果。 @ Threshold image using opencv (Java) @ 使用opencv(Java)的阈值图像

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM