Android静态图片人脸识别的完整demo 附完整源码

这篇博客分享了一个Android静态图片人脸识别的Demo,使用Android自带的FaceDetector进行识别,并标记出眼睛和人脸位置。作者提供了布局文件和MainActivity.java的关键代码,包括图片格式转换、人脸识别初始化、人脸检测、误判处理和UI更新。文章还提到了人脸识别可能存在的问题,如图片尺寸和手机densityDpi的影响,并预告了后续的实时检测和眨眼检测功能。
摘要由CSDN通过智能技术生成

分享一下我老师大神的人工智能教程!零基础,通俗易懂!http://blog.csdn.net/jiangjunshow

也欢迎大家转载本篇文章。分享知识,造福人民,实现我们中华民族伟大复兴!

               

Demo功能:利用android自带的人脸识别进行识别,标记出眼睛和人脸位置。点击按键后进行人脸识别,完毕后显示到imageview上。

第一部分:布局文件activity_main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:tools="http://schemas.android.com/tools"    android:id="@+id/layout_main"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:paddingBottom="@dimen/activity_vertical_margin"    android:paddingLeft="@dimen/activity_horizontal_margin"    android:paddingRight="@dimen/activity_horizontal_margin"    android:paddingTop="@dimen/activity_vertical_margin"    tools:context=".MainActivity" >    <TextView        android:id="@+id/textview_hello"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="@string/hello_world" />    <ImageView        android:id="@+id/imgview"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_below="@id/textview_hello" />    <Button        android:id="@+id/btn_detect_face"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_below="@id/imgview"        android:layout_centerHorizontal="true"        android:text="检测人脸" /></RelativeLayout>

注意:ImageView四周的padding由布局文件里的这四句话决定:

    android:paddingBottom="@dimen/activity_vertical_margin"    android:paddingLeft="@dimen/activity_horizontal_margin"    android:paddingRight="@dimen/activity_horizontal_margin"    android:paddingTop="@dimen/activity_vertical_margin"

而上面的两个margin定义在dimens.xml文件里:

<resources>    <!-- Default screen margins, per the Android Design guidelines. -->    <dimen name="activity_horizontal_margin">16dp</dimen>    
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值