Ask Your Question

Revision history [back]

different results on Android platform while using Imgcodecs.imread() and Utils.BitmapToMat()

I try to use opencv to read the same JPEG image through 2 wises

   1. First to get the bitmap class of the image, then using the Utils.BitmapToMat() to get the Mat class

image description

   2. Directly using  Imgcodecs.imread() to get the Mat class of image.

image description

Acctually the values of pixels are not complete identical. such as following:

w=0, h=0, R=177.00, G=188.00, B=192.00 // BitmapToMat

w=0, h=0, R=178.00, G=187.00, B=192.00 // imread

Second Part

I try also to read the same image on the PC platform with library opencv-python, and comparing the results between android and PC, as following:

image description

why occurs differences between android and PC while reading image directly from the absolute path. Otherwise, they are identical by a converting processing (BitmapToMat).