
人脸识别
文章平均质量分 85
AndroidKt
分享 Android、Kotlin、Flutter 以及 OpenCV 等移动开发知识。
展开
-
Android 平台人脸检测并不复杂
一、前言 上周,我们将于老师分享给开发者的 libfacedetection 开源库在 Windows 11 CLion 环境下实践了一把,速度快,效果好。 恰逢今日不加班,秉承着实践出真知的原则移植至 Android 平台。 二、环境准备 Android Studio 2020.3.1 OpenCV 4.5.4 CMake 3.10.2 libfacedetection 源码(https://github.com/ShiqiYu/libfacedetection) 三、工程实践 实原创 2021-11-04 21:29:40 · 4247 阅读 · 3 评论 -
libfacedetection 让人脸检测如此简单
一、前言 开源人脸检测库 libfacedetection,有如下特点: 深度模型仅有85K个参数。 采用AVX512/AVX2/NEON指令提速。 代码简短和简洁,只有一千多行代码。 代码不依赖任何其他第三方库,只要平台能编译C++则可使用。 项目License采用3-Clause BSD License,可以商业应用。 之前介绍过于老师的 libfacedetection 人脸检测开源库,并且基于 Ubuntu 和 Android 两个平台进行实践,效果还是很不错的。通过于老师的公众号得知最近 li原创 2021-10-27 22:32:58 · 2230 阅读 · 4 评论 -
利用libfacedetection实现Android端人脸检测
libfacedetection libfacedetection是一个基于CNN的人脸检测的开源库。 Android平台使用 Android-FaceDetection基于libfacedetection实现人脸检测。采用libfacedetection开源项目部分代码并整理成模块,方便后续使用。 效果 ...原创 2019-11-16 13:29:39 · 3047 阅读 · 1 评论 -
Ubuntu16.04 libfacedetection人脸检测
libfacedetection libfacedetection是Github上一个开源的人脸检测率高,检测效率高的库(相较于OpenCV提供的基础识别模型)。检测速度能达到1500FPS。 下载并配置 # 下载 git clone https://github.com/ShiqiYu/libfacedetection.git # 修改CMakeLists.txt cd libfacedete...原创 2019-11-10 14:00:07 · 1092 阅读 · 2 评论 -
Ubuntu16.04 安装OpenCV 3.4.7
Ubuntu OpenCV 3.4.7 安装 下载OpenCV-3.4.7源码包 前往OpenCV下载地址:https://opencv.org/releases.html,选择Open-3.4.7 Source 下载opencv-3.4.7.zip包后解压 安装OpenCV依赖包 sudo apt-get install build-essential sudo apt-get insta...原创 2019-11-10 12:34:09 · 1886 阅读 · 1 评论