--
You received this message because you are subscribed to the Google Groups "Android CameraX Discussion Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to camerax-develop...@android.com.
To view this discussion visit https://groups.google.com/a/android.com/d/msgid/camerax-developers/a474e50c-7637-4926-b3d9-0840c43cbe9an%40android.com.
The focus is blurry n the picture is not a good caption n is very blurry. Thanks for replying back to me.
Hi,Mostly it's blur because of 2 reasons:1. Focus not proper2. Image is too dark--On Thursday 14 November 2024 at 03:16:26 UTC+5:30 etal...@google.com wrote:Hi,The question is, when you say 'blur' what kind of image problem is it? Is the focus poor, or is the person moving too fast (motion blur)? Or is the image too dark so it's noisy?Or too low resolution? People use 'blur' in many ways, and advice will depend on what kind of specific problem you're seeing.On Wed, Nov 13, 2024 at 1:38 AM Mandar Kulkarni <mkman...@gmail.com> wrote:Hi,
I'm working on an android app which takes face photo and scans it for skin issues, I have been using cameraX for that but I'm getting lot of cases where photos are coming blur and it's difficult to analyse those images so wanted to know what will be the proper configurations for capturing sharp images?
My previous implementation used to use setTargetResolution function to set resolution but since it's deprecated, I'm moving to resolutionSelector strategy so will this give any benefit in photo quality? Any suggestions on improving the photo quality are highly appreciated--
You received this message because you are subscribed to the Google Groups "Android CameraX Discussion Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to camerax-develop...@android.com.
To view this discussion visit https://groups.google.com/a/android.com/d/msgid/camerax-developers/a474e50c-7637-4926-b3d9-0840c43cbe9an%40android.com.
You received this message because you are subscribed to the Google Groups "Android CameraX Discussion Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to camerax-develop...@android.com.
To view this discussion visit https://groups.google.com/a/android.com/d/msgid/camerax-developers/db4059d2-4d5c-45d2-ad01-1a89726fb073n%40android.com.
MeteringPoint pt= (new SurfaceOrientedMeteringPointFactory(1.0f, 1.0f)) .createPoint(0.5f, 0.5f);mCamera.getCameraControl().startFocusAndMetering(
new FocusMeteringAction.Builder(pt)
.build()
).addListener(() -> {
imageCapture.takePicture(... new OnImageSavedCallback()
@Override
public void onImageSaved(
@NonNull ImageCapture.OutputFileResults outputFileResults) {
mCamera.getCameraControl().cancelFocusAndMetering();
}
@Override
public void onError(
@NonNull ImageCaptureException exception) {
mCamera.getCameraControl().cancelFocusAndMetering();
}
}
Thank you!