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

feat: Flash with AE Pre-capture trigger for Android #2558

Merged
merged 22 commits into from
Feb 14, 2024
Merged

Conversation

mrousavy
Copy link
Owner

@mrousavy mrousavy commented Feb 14, 2024

What

Flash (flash)

Adds flash functionality with a fully custom pre-capture AE/AF/AWB trigger sequence for Android. 🎉

camera.current.takePhoto({
  flash: 'on' // or 'auto'
})

Better photos (qualityPrioritization)

We now also run the AE/AF/AWB precapture sequence on every photo (unless qualityPrioritization is speed), meaning photos are now less blurry, properly exposed, and properly white-balanced - so in short: photo quality is now better!.

The fast path still exists when using qualityPrioritization: speed, as that will skip the precapture sequence and metering actions and just grab an Image from the Camera as quickly as possible.

Additionally, qualityPrioritization now controls these options:

..by setting them to _FAST or _HIGH_QUALITY, which was previously left untouched.

This now means:

  • takePhoto({ qualityPrioritization: 'speed' }) got FASTER 🚀
  • takePhoto({ qualityPrioritization: 'quality' }) got BETTER QUALITY 📸
  • takePhoto({ qualityPrioritization: 'balanced' }) is left unchanged ✅

Changes

Tested on

Related issues

Copy link

vercel bot commented Feb 14, 2024

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 Feb 14, 2024 3:40pm

@mrousavy mrousavy merged commit 37398cc into main Feb 14, 2024
7 checks passed
@mrousavy mrousavy deleted the feat/flash-android branch February 14, 2024 15:43
isaaccolson pushed a commit to isaaccolson/deliveries-mobile that referenced this pull request Oct 30, 2024
### Flash (`flash`)

Adds `flash` functionality with a fully custom pre-capture AE/AF/AWB trigger sequence for Android. 🎉 

```ts
camera.current.takePhoto({
  flash: 'on' // or 'auto'
})
```

### Better photos (`qualityPrioritization`)

We now also run the AE/AF/AWB precapture sequence on every photo (unless `qualityPrioritization` is `speed`), meaning photos are now less blurry, properly exposed, and properly white-balanced - so in short: **photo quality is now better!**.

The fast path still exists when using `qualityPrioritization: speed`, as that will skip the precapture sequence and metering actions and just grab an Image from the Camera as quickly as possible.

Additionally, `qualityPrioritization` now controls these options:

- [COLOR_CORRECTION_MODE](https://developer.android.com/reference/android/hardware/camera2/CaptureRequest#COLOR_CORRECTION_MODE)
- [EDGE_MODE](https://developer.android.com/reference/android/hardware/camera2/CaptureRequest#EDGE_MODE)
- [COLOR_CORRECTION_ABERRATION_MODE](https://developer.android.com/reference/android/hardware/camera2/CaptureRequest#COLOR_CORRECTION_ABERRATION_MODE)
- [HOT_PIXEL_MODE](https://developer.android.com/reference/android/hardware/camera2/CaptureRequest#HOT_PIXEL_MODE)
- [DISTORTION_CORRECTION_MODE](https://developer.android.com/reference/android/hardware/camera2/CaptureRequest#DISTORTION_CORRECTION_MODE)
- [NOISE_REDUCTION_MODE](https://developer.android.com/reference/android/hardware/camera2/CaptureRequest#NOISE_REDUCTION_MODE)
- [SHADING_MODE](https://developer.android.com/reference/android/hardware/camera2/CaptureRequest#SHADING_MODE)
- [TONEMAP_MODE](https://developer.android.com/reference/android/hardware/camera2/CaptureRequest#TONEMAP_MODE)

..by setting them to `_FAST` or `_HIGH_QUALITY`, which was previously left untouched. 

This now means:
- `takePhoto({ qualityPrioritization: 'speed' })` got FASTER 🚀 
- `takePhoto({ qualityPrioritization: 'quality' })` got BETTER QUALITY 📸 
- `takePhoto({ qualityPrioritization: 'balanced' })` is left unchanged ✅
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.

✨ Implement Flash for Android ($3,000)
1 participant