docs: Add link

This commit is contained in:
Marc Rousavy 2021-05-06 15:07:51 +02:00
parent ba33cf9957
commit 4d504dab3f
2 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@ import useBaseUrl from '@docusaurus/useBaseUrl';
Frame processors are functions that are written in JavaScript (or TypeScript) which can be used to **process frames the camera "sees"**.
Inside those functions you can call **Frame Processor Plugins**, which are high performance native functions specifically designed for certain use-cases.
For example, you might want to create a QR code scanner **without ever writing native code**, while still **achieving almost-native performance**:
For example, you might want to create a QR code scanner **without ever writing native code**, while still **achieving native performance**:
```jsx
function App() {
@ -142,7 +142,7 @@ const frameProcessor = useFrameProcessor((frame: Frame) => {
}, [])
```
Check out [**Frame Processor community plugins**](frame-processor-plugin-list) to discover plugins!
Check out [**Frame Processor community plugins**](/docs/guides/frame-processor-plugin-list) to discover plugins!
### Disabling Frame Processors
@ -160,4 +160,4 @@ Make sure to add this to your Debug-, as well as your Release-configuration.
<br />
#### 🚀 Next section: [Zooming with Reanimated](animated) (or [creating a Frame Processor Plugin](/docs/guides/frame-processors-plugins-overview))
#### 🚀 Next section: [Zooming with Reanimated](/docs/guides/animated) (or [creating a Frame Processor Plugin](/docs/guides/frame-processors-plugins-overview))

View File

@ -22,7 +22,7 @@ You have to restart metro-bundler for changes in the `babel.config.js` file to t
## Plugin List
* [mrousavy/**vision-camera-qrcode-scanner**](https://github.com/mrousavy/vision-camera-qrcode-scanner): A fast QR code scanner using the Apple Vision API.
* [mrousavy/**vision-camera-image-labeler**](https://github.com/mrousavy/vision-camera-image-labeler): A fast realtime image labeler plugin using **MLKit Vision**.