Skip to content

Commit d72cf99

Browse files
committed
Update README.md
1 parent 536aba7 commit d72cf99

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,3 +75,13 @@ const frameProcessor = useSkiaFrameProcessor(frame => {
7575
```
7676

7777
> 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
87+
- VisionCamera supports GPU buffer compression

0 commit comments

Comments
 (0)