npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-face-baidu

v1.0.4

Published

封装百度人脸识别sdk

Downloads

9

Readme

react-native-face-baidu

封装百度人脸识别sdk

安装步骤

  • yarn add react-native-face-baidu

  • react-native link react-native-face-baidu

    • 修改包名(AndroidManifest.xml 的 package 和 android/app/build.gradle > android > defaultConfig > applicationId 填入创建授权时输入的 android 包名)
    • 在 android/gradle.properties 文件中配置
    ...
    BAIDU_FACE_SDK_LICENSE_ID="*license*"
    BAIDU_FACE_SDK_LICENSE_FILE_NAME="idl-license.face-android" # 可不配, 默认为 idl-license.face-android
    ...
    • 在 MainApplication.java 中添加
    import com.baidu.idl.face.BaiduFace; /* 在顶部添加 */
    ...
    @Override
    public void onCreate() {
        super.onCreate();
        SoLoader.init(this, /* native exopackage */ false);
        BaiduFace.init(this); /* 在 onCreate 中添加 */
    }
    • 把 license 文件放入 android/app/src/main/assets 目录
    • xcode打开项目, 然后在 ${项目根目录}/node_modules/react-native-face-baidu/ios/这个目录下,找到BaiduFace文件夹,将其拖入你的项目
    • 确认 General/Identity/Bundle Identifier 与创建授权时填入的要一致
    • General/Linked Frameworks and Libraries 下点击 + 号, 选择 libc++.tbd, 点击 add 按钮
    • 把 你在百度下载的证书文件:idl-license.face-ios, 拖入你的项目
    • 在 info.plist 中添加 NSCameraUsageDescription
    • 在 info.plist 中添加 BAIDU_FACE_LICENSE_ID, 值为创建授权是填入的授权标识
    • 在 info.plist 中添加 相机和相册权限
    • 在 AppDelegate.m 中
    #import "BaiduFace.h" // 引入头文件
    
    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
        [BaiduFace initSDK]; // 初始化人像SDK
    }
    

使用

import BaiduFace from "react-native-face-baidu";

// 人脸图像采集
BaiduFace.detect();

// 活体检测
BaiduFace.liveness()

欢迎交流

欢迎提问交流;若有bug,请添加bug截图或代码片段,以便更快更好的解决问题。 欢迎大家一起交流

我的博客