The comparison is simple: I take a photo using my custom camera that uses CameraManager. Then I take the same photo with the default Galaxy Note 5 camera. The largest size available for CameraManager is 3264 by 1836
, so I use it and set the Samsung camera to the same resolution. results
- Note 5: I can see the details in the photo.
- CameraManager: I do not see the details. The image is poor quality.
Then I try to install CameraManager photos using
captureBuilder.set(CaptureRequest.JPEG_QUALITY, (byte) 100);
There is still no change. Well, thereβs only one change: the file size of the photo taken with CameraManager is 2.3 MB (it was 0.5 MB), and the size of the Samsung photo (remains) is 1.6 MB. Thus, even with a large size, a photograph taken with CameraManager still has poor quality. Any ideas on how I can fix this problem: how to take a picture using CameraManager are of the same quality as when using the standard camera application that comes with note 5?
source share