Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> OpenCV4Android開發 人臉識別篇

OpenCV4Android開發 人臉識別篇

編輯:關於Android編程

最近在android上用opencv搞人臉識別的

現在簡單展示下代碼。環境搭建我前面有寫,不會的自己看可以。

這個事用java api直接調用的更簡單了就,搭建都不需要直接下載opencv解壓就好。

現在貼上程序

首先布局

xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >


android:id="@+id/image"
android:layout_width="fill_parent"
android:layout_height="400dp" />


android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >


android:id="@+id/text"
android:layout_width="100dp"
android:layout_height="wrap_content" />




android:layout_marginLeft="10dp"
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="detection" />

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved