Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhance photo size retrieval by combining high-resolution and standard resolutions #3393

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

ismaelsousa
Copy link
Contributor

What

This PR exposes all possible photo resolutions for Android devices. Some Android devices do not expose all resolutions

When we check the sizes coming only from getSupportedResolutions the highest resolution ("4080x3072") is not there

  • Example:
cameraInfoInternal.getSupportedResolutions(ImageFormat.JPEG)
Screenshot 2025-01-31 at 14 32 53



But when we use the getSupportedHighResolutions we can get it

  • Example:
cameraInfoInternal.getSupportedHighResolutions(ImageFormat.JPEG)
Screenshot 2025-01-31 at 14 32 33



So if we combine and remove the duplicates we can the all sizes possible

  • Example:
combined
Screenshot 2025-01-31 at 14 31 49

Changes

This PR combines the highest and standard photo resolutions

Tested on

Moto G52, Android 13

Copy link

vercel bot commented Jan 31, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
react-native-vision-camera ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 31, 2025 6:03pm

@ismaelsousa
Copy link
Contributor Author

@mrousavy does it make sense?

@mrousavy
Copy link
Owner

As far as I know, this high quality resolution cannot be selected by CameraX.

Did you actually try using it?

If yes, does the resulting photo actually have the same dimension?

And, does Video and Frame Processor still work if you use high resolution?

@ismaelsousa
Copy link
Contributor Author

ismaelsousa commented Mar 28, 2025

Did you actually try using it?

I tried on my phone, which is one of those that exposes the highest in the other method. Maybe I can ship as a beta test for my users and get some feedback

If yes, does the resulting photo actually have the same dimension?

Yes, it usually is the same as the OEM camera app

And, does Video and Frame Processor still work if you use high resolution?

Yes, because we use the videoWidth and videoHeight for video and frame. This change only exposes a new value for photo resolution.

Most Android phones expose the highest resolution in the way you created, it's annoying that some manufacturers don't

@mrousavy
Copy link
Owner

mrousavy commented Apr 1, 2025

I'm sorry but your answers were not fully concise

I tried on my phone, which is one of those that exposes the highest in the other method. Maybe I can ship as a beta test for my users and get some feedback

So you're saying yes, this PR makes a difference - without it you shoot lower resolution photos?

Yes, because we use the videoWidth and videoHeight for video and frame. This change only exposes a new value for photo resolution.

Yes but keep in mind that the pipeline combines capture requests - so if a high resolution photo stream is added, it can reduce the video stream. Even if you have higher videoWidth - it might not be able to match that due to bandwidth constraints.
So my question; did you actually test if this works normally? With the highest available video resolution? Did you check if recording actually works?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants