Using the latest CameraX release, I have setup an ImageCapture use case as below.
imageCapture = ImageCapture.Builder()
.setCaptureMode(ImageCapture.CAPTURE_MODE_MINIMIZE_LATENCY)
.setTargetAspectRatio(AspectRatio.RATIO_4_3)
.setTargetRotation(rotation)
.build()
The output image received has dimenstions of 3264x2448. When using the native camera app capturing in 4:3 aspect ratio yeilds an image of size 4608x3456.
How would one go about requesting imageCapture to capture at the highest possible resolution?
Thank you