Converting simple image to greyscale
android, bitmap, image
Solution
I found two ways while I was trying to achieve the same.
Using `ColorMatrix`
private Bitmap androidGrayScale(final Bitmap bmpOriginal) {
int width, height;
height = bmpOriginal.getHeight();
width = bmpOriginal.getWidth();
Bitmap bmpGrayscale = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bmpGrayscale);
Paint paint = new Paint();
ColorMatrix colorMatrix = new ColorMatrix();
colorMatrix.setSaturation(0);
ColorMatrixColorFilter colorMatrixFilter = new ColorMatrixColorFilter(colorMatrix);
paint.setColorFilter(colorMatrixFilter);
canvas.drawBitmap(bmpOriginal, 0, 0, paint);
return bmpGrayscale;
}
Using `OpenCV`
Download `OpenCV` Library And Import as a Library Project. Add this library to your project as a reference library.
Download Links : OpenCV
private Bitmap openCVGrayScale(final Bitmap bmpOriginal, final String filePath) {
Mat imgToProcess;
Mat imgToDest = new Mat();
imgToProcess = Highgui.imread(filePath, Highgui.CV_LOAD_IMAGE_GRAYSCALE);
org.opencv.android.Utils.bitmapToMat(bmpOriginal, imgToProcess);
Imgproc.cvtColor(imgToProcess, imgToDest, Imgproc.COLOR_BGR2GRAY);
Bitmap bmpGrayscale = Bitmap.createBitmap(imgToDest.cols(), imgToDest.rows(), Bitmap.Config.ARGB_8888);
org.opencv.android.Utils.matToBitmap(imgToDest, bmpGrayscale);
return bmpGrayscale;
}
Do not forget to check in your `Activity`
static {
if (!OpenCVLoader.initDebug()) {
android.util.Log.e("TAG", "Error");
}
}
Thanks.
Problem
I am trying to convert a normal colored image to greyscale image.Code is really simple but don't know why I am getting error.I am just changing color value pixel by pixel and then storing it in the new bitmap.Error is coming when I am trying to set pixels to the new bitmap. ``` Bitmap c=BitmapFactory.decodeFile(Environment.getExternalStorageDirectory().getAbsolutePath() + "/1.jpg"); int width=c.getWidth(); int height=c.getHeight(); int A,B,R,G; int pixel; for(int x = 0; x < width; x++) { for(int y = 0; y < height; y++) { // get one pixel color // pixel = c.getPixel(x, y); // retrieve color of all channels // A = Color.alpha(c.getPixel(x, y)); R = Color.red(c.getPixel(x, y)); G = Color.green(c.getPixel(x, y)); B = Color.blue(c.getPixel(x, y)); // take conversion up to one single value R = G = B = (int)(0.299 * R + 0.587 * G + 0.114 * B); // set new pixel color to output bitmap h=String.valueOf(R); bmOut.isMutable(); bmOut.setPixel(x, y, Color.argb(Color.alpha(c.getPixel(x, y)), R, G, B)); } // Toast.makeText(getApplicationContext(), h, Toast.LENGTH_SHORT).show(); } ``` Here's my logcat ``` 05-02 13:37:37.858: E/AndroidRuntime(19254): FATAL EXCEPTION: main 05-02 13:37:37.858: E/AndroidRuntime(19254): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.otsu/com.example.otsu.MainActivity}: java.lang.NullPointerException 05-02 13:37:37.858: E/AndroidRuntime(19254): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1872) 05-02 13:37:37.858: E/AndroidRuntime(19254): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1893) 05-02 13:37:37.858: E/AndroidRuntime(19254): at android.app.ActivityThread.access$1500(ActivityThread.java:135) 05-02 13:37:37.858: E/AndroidRuntime(19254): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1054) 05-02 13:37:37.858: E/AndroidRuntime(19254): at android.os.Handler.dispatchMessage(Handler.java:99) 05-02 13:37:37.858: E/AndroidRuntime(19254): at android.os.Looper.loop(Looper.java:150) 05-02 13:37:37.858: E/AndroidRuntime(19254): at android.app.ActivityThread.main(ActivityThread.java:4389) 05-02 13:37:37.858: E/AndroidRuntime(19254): at java.lang.reflect.Method.invokeNative(Native Method) 05-02 13:37:37.858: E/AndroidRuntime(19254): at java.lang.reflect.Method.invoke(Method.java:507) 05-02 13:37:37.858: E/AndroidRuntime(19254): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:849) 05-02 13:37:37.858: E/AndroidRuntime(19254): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:607) 05-02 13:37:37.858: E/AndroidRuntime(19254): at dalvik.system.NativeStart.main(Native Method) 05-02 13:37:37.858: E/AndroidRuntime(19254): Caused by: java.lang.NullPointerException 05-02 13:37:37.858: E/AndroidRuntime(19254): at com.example.otsu.MainActivity.onCreate(MainActivity.java:58) 05-02 13:37:37.858: E/AndroidRuntime(19254): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1072) 05-02 13:37:37.858: E/AndroidRuntime(19254): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1836) 05-02 13:37:37.858: E/AndroidRuntime(19254): ... 11 more ```