You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> See [`App.tsx`](https://github.com/mrousavy/FaceBlurApp/blob/main/app/App.tsx) for the full code.
78
+
79
+
## How's the Performance?
80
+
81
+
If you know me you know that my libs are always really fast.
82
+
This is no exception:
83
+
- Frame Processors are built almost entirely with C++ to run Frame analysis with almost zero overhead.
84
+
- Frame Processors run in [Worklets](https://github.com/margelo/react-native-worklets-core/blob/main/docs/WORKLETS.md) on a separate Thread, so they are not interrupted by JS lags.
85
+
- The MLKit models are built with native code and use GPU-acceleration
86
+
- VisionCamera can provide either `yuv` or efficiently converted `rgb` buffers for faster ML execution
0 commit comments