
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
react-native-vision-camera-image-labeler-sked
Advanced tools
A plugin to label images using ML Kit Image Labeler. With High Performance.
A plugin to label images using ML Kit Image Labeler. With High Performance.
react-native-vision-camera => 4.5.1
react-native-worklets-core = 1.3.3
npm install react-native-vision-camera-image-labeler
yarn add react-native-vision-camera-image-labeler
Easy To Use.
Works Just Writing few lines of Code.
Works With React Native Vision Camera.
Works for Both Cameras.
Works Fast.
Works With Android 🤖 and IOS.📱
Writen With Kotlin and Swift.
Can Scan Image From Photo. 📸
import React, { useState } from 'react'
import { useCameraDevice } from 'react-native-vision-camera'
import { Camera } from 'react-native-vision-camera-image-labeler';
function App (){
const [data,setData] = useState(null)
const device = useCameraDevice('back');
console.log(data)
return(
<>
{!!device && (
<Camera
style={StyleSheet.absoluteFill}
device={device}
isActive
// Optional
options={{
minConfidence: 0.1
}}
callback={(d) => setData(d)}
/>
)}
</>
)
}
import React from 'react';
import { StyleSheet } from "react-native";
import {
Camera,
useCameraDevice,
useFrameProcessor,
} from "react-native-vision-camera";
import { useImageLabeler } from "react-native-vision-camera-image-labeler";
function App() {
const device = useCameraDevice('back');
const options = {minConfidence : 0.1} // Optional
const { scanImage } = useImageLabeler({minConfidence : 0.1})
const frameProcessor = useFrameProcessor((frame) => {
'worklet'
const data = scanImage(frame)
console.log(data, 'data')
}, [])
return (
<>
{!!device && (
<Camera
style={StyleSheet.absoluteFill}
device={device}
isActive
frameProcessor={frameProcessor}
/>
)}
</>
);
}
export default App;
| Name | Type | Values | Default |
|---|---|---|---|
| minConfidence | Number | 0.1 - 1.0 | 1.0 |
import { ImageScanner } from "react-native-vision-camera-image-labeler";
const result = await ImageScanner({
uri:assets.uri,
orientation: "portrait",
minConfidence: 1.0
})
console.log(result);
| Name | Type | Values | Required | Default | Platform |
|---|---|---|---|---|---|
| uri | string | yes | android, iOS | ||
| orientation | string | portrait, portraitUpsideDown, landscapeLeft, landscapeRight | no | portrait | iOS |
| minConfidence | number | 0.1 ~ 1.0 | no | 1.0 | android,iOS |
FAQs
A plugin to label images using ML Kit Image Labeler. With High Performance.
We found that react-native-vision-camera-image-labeler-sked demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.