You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

vision-face-detection

Package Overview
Dependencies
Maintainers
0
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vision-face-detection

vision camera and google ml kit face detection

0.2.3
latest
Source
npmnpm
Version published
Weekly downloads
1
Maintainers
0
Weekly downloads
 
Created
Source

vision-face-detection

Face detection with react native vision camera

Installation

npm install vision-face-detection
npm install react-native-vision-camera
npm install react-native-worklets-core

Usage

module.exports = {
  ....
  plugins: [
    ['react-native-worklets-core/plugin'],
  ....
import * as React from 'react';
import { View, Text, StyleSheet } from 'react-native';
import {
  Camera,
  useCameraDevice,
  useCameraFormat,
  useFrameProcessor,
} from 'react-native-vision-camera';
import { scanFaces } from 'vision-face-detection';
import { useIsForeground } from './useIsForeground';
import { usePreferredCameraDevice } from './usePreferredCameraDevice';
import 'react-native-worklets-core';
export default function App() {
  const [preferredDevice] = usePreferredCameraDevice();
  let device = useCameraDevice('front');

  if (preferredDevice != null && preferredDevice.position === 'front') {
    // override default device with the one selected by the user in settings
    device = preferredDevice;
  }

  const camera = React.useRef<Camera>(null);
  const [targetFps] = React.useState(30);

  const format = useCameraFormat(device, [
    { pixelFormat: 'yuv' },
    { fps: targetFps },
  ]);

  const isForeground = useIsForeground();
  const isActive = isForeground;
  // const codeScanner = useCodeScanner({
  //   codeTypes: ['qr', 'ean-13'],
  //   onCodeScanned: codes => {
  //     if (codes.length > 0) {
  //       console.log(`Scanned ${codes[0].value} codes!`);
  //     }
  //   },
  // });

  const frameProcessor = useFrameProcessor((frame) => {
    'worklet';

    const scannedFaces: any = scanFaces(frame, {
      cameraId: device?.id,
      cameraType: device?.position === 'back' ? 'back' : 'front',
    });
    if (scannedFaces) {
      console.log('scan', JSON.stringify(scannedFaces));
    }
  }, []);
  if (device == null)
    return (
      <>
        <Text>{'error'}</Text>
      </>
    );
  return (
    <View style={styles.mainView}>
      <Camera
        ref={camera}
        style={styles.camera}
        device={device}
        photo={true}
        isActive={isActive}
        orientation={'portrait'}
        pixelFormat="yuv"
        format={format}
        fps={targetFps}
        photoHdr={format?.supportsPhotoHdr && false}
        videoHdr={format?.supportsVideoHdr && false}
        exposure={0}
        frameProcessor={frameProcessor}
        // codeScanner={codeScanner}
      />
    </View>
  );
}
const styles = StyleSheet.create({
  camera: { width: '100%', height: '100%' },
  mainView: { flex: 1, backgroundColor: 'white' },
});

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT

Made with create-react-native-library

Keywords

react-native

FAQs

Package last updated on 28 Sep 2024

Did you know?

Socket

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.

Install

Related posts