在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → Android自带SDK进行人脸识别

Android自带SDK进行人脸识别

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:14.38M
  • 下载次数:6
  • 浏览次数:107
  • 发布时间:2020-10-22
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
现在市面上有很多人脸识别以及人变对比的SDK,比如说FACE++(旷世)、阿里云、百度云、科大讯飞、云从科技等等,基本上都是通过API调用返回相应的数据,经过资料查询以及体验部分第三方的API,最后我选择了Android 自带的人脸识别的SDK,亲测有效,话不多说,代码走起。
【实例截图】
【核心代码】
Android自带SDK进行人脸识别
└── FaceRecognition-master
├── app
│   ├── app.iml
│   ├── build
│   │   ├── generated
│   │   │   ├── mockable-android-25.v3.jar
│   │   │   └── source
│   │   │   ├── buildConfig
│   │   │   │   ├── androidTest
│   │   │   │   │   └── debug
│   │   │   │   │   └── com
│   │   │   │   │   └── demo
│   │   │   │   │   └── face
│   │   │   │   │   └── test
│   │   │   │   │   └── BuildConfig.java
│   │   │   │   └── debug
│   │   │   │   └── com
│   │   │   │   └── demo
│   │   │   │   └── face
│   │   │   │   └── BuildConfig.java
│   │   │   └── r
│   │   │   ├── androidTest
│   │   │   │   └── debug
│   │   │   │   └── com
│   │   │   │   └── demo
│   │   │   │   └── face
│   │   │   │   └── test
│   │   │   │   └── R.java
│   │   │   └── debug
│   │   │   └── com
│   │   │   └── demo
│   │   │   └── face
│   │   │   └── R.java
│   │   ├── intermediates
│   │   │   ├── blame
│   │   │   │   └── res
│   │   │   │   └── debug
│   │   │   │   ├── multi
│   │   │   │   │   └── values.json
│   │   │   │   ├── multi-v2
│   │   │   │   │   ├── debug.json
│   │   │   │   │   └── values.json
│   │   │   │   └── single
│   │   │   │   ├── debug.json
│   │   │   │   ├── drawable-hdpi.json
│   │   │   │   ├── drawable.json
│   │   │   │   ├── drawable-ldpi.json
│   │   │   │   ├── drawable-mdpi.json
│   │   │   │   └── layout.json
│   │   │   ├── build-info
│   │   │   │   └── debug
│   │   │   │   └── build-info.xml
│   │   │   ├── builds
│   │   │   │   └── debug
│   │   │   │   └── 30194899139796
│   │   │   │   └── classes.dex
│   │   │   ├── classes
│   │   │   │   └── debug
│   │   │   │   └── com
│   │   │   │   └── demo
│   │   │   │   └── face
│   │   │   │   ├── BuildConfig.class
│   │   │   │   ├── FaceRecognitionDemoActivity$1.class
│   │   │   │   ├── FaceRecognitionDemoActivity$MyPictureCallback.class
│   │   │   │   ├── FaceRecognitionDemoActivity$MyPreviewCallback.class
│   │   │   │   ├── FaceRecognitionDemoActivity$SurfaceCallback.class
│   │   │   │   ├── FaceRecognitionDemoActivity.class
│   │   │   │   ├── FindFaceView.class
│   │   │   │   ├── R$attr.class
│   │   │   │   ├── R$drawable.class
│   │   │   │   ├── R$id.class
│   │   │   │   ├── R$layout.class
│   │   │   │   ├── R$string.class
│   │   │   │   └── R.class
│   │   │   ├── incremental
│   │   │   │   ├── compileDebugAidl
│   │   │   │   │   └── dependency.store
│   │   │   │   ├── compileDebugAndroidTestAidl
│   │   │   │   │   └── dependency.store
│   │   │   │   ├── debug-mergeJavaRes
│   │   │   │   │   └── merge-state
│   │   │   │   ├── debug-mergeJniLibs
│   │   │   │   │   └── merge-state
│   │   │   │   ├── mergeDebugAndroidTestResources
│   │   │   │   │   ├── compile-file-map.properties
│   │   │   │   │   └── merger.xml
│   │   │   │   ├── mergeDebugAssets
│   │   │   │   │   └── merger.xml
│   │   │   │   ├── mergeDebugJniLibFolders
│   │   │   │   │   └── merger.xml
│   │   │   │   ├── mergeDebugResources
│   │   │   │   │   ├── compile-file-map.properties
│   │   │   │   │   ├── merged.dir
│   │   │   │   │   │   └── values
│   │   │   │   │   │   └── values.xml
│   │   │   │   │   └── merger.xml
│   │   │   │   ├── mergeDebugShaders
│   │   │   │   │   └── merger.xml
│   │   │   │   ├── packageDebug
│   │   │   │   │   ├── debug
│   │   │   │   │   │   ├── dex-renamer-state.txt
│   │   │   │   │   │   ├── file-input-save-data.txt
│   │   │   │   │   │   └── zip-cache
│   │   │   │   │   │   └── 9K+bVeAEWzPAmEd7Y5TUlynbhwc=
│   │   │   │   │   ├── dex-renamer-state.txt
│   │   │   │   │   ├── file-input-save-data.txt
│   │   │   │   │   └── zip-cache
│   │   │   │   │   └── B3sW3E3yHZeRuBJabT_i_3cmMW4=
│   │   │   │   └── packageInstantRunResourcesDebug
│   │   │   │   ├── debug
│   │   │   │   │   ├── dex-renamer-state.txt
│   │   │   │   │   └── zip-cache
│   │   │   │   │   └── 9K+bVeAEWzPAmEd7Y5TUlynbhwc=
│   │   │   │   ├── dex-renamer-state.txt
│   │   │   │   ├── file-input-save-data.txt
│   │   │   │   └── zip-cache
│   │   │   │   └── B3sW3E3yHZeRuBJabT_i_3cmMW4=
│   │   │   ├── incremental-classes
│   │   │   │   └── debug
│   │   │   │   └── instant-run-bootstrap.jar
│   │   │   ├── incremental-runtime-classes
│   │   │   │   └── debug
│   │   │   │   └── instant-run.jar
│   │   │   ├── incremental-safeguard
│   │   │   │   └── debug
│   │   │   │   └── tag.txt
│   │   │   ├── incremental-verifier
│   │   │   │   └── debug
│   │   │   │   └── com
│   │   │   │   └── demo
│   │   │   │   └── face
│   │   │   │   ├── BuildConfig.class
│   │   │   │   ├── FaceRecognitionDemoActivity$1.class
│   │   │   │   ├── FaceRecognitionDemoActivity$MyPictureCallback.class
│   │   │   │   ├── FaceRecognitionDemoActivity$MyPreviewCallback.class
│   │   │   │   ├── FaceRecognitionDemoActivity$SurfaceCallback.class
│   │   │   │   ├── FaceRecognitionDemoActivity.class
│   │   │   │   ├── FindFaceView.class
│   │   │   │   ├── R$attr.class
│   │   │   │   ├── R$drawable.class
│   │   │   │   ├── R$id.class
│   │   │   │   ├── R$layout.class
│   │   │   │   ├── R$string.class
│   │   │   │   └── R.class
│   │   │   ├── instant-run-resources
│   │   │   │   ├── output.json
│   │   │   │   └── resources-debug.ir.ap_
│   │   │   ├── instant-run-support
│   │   │   │   └── debug
│   │   │   │   ├── manifestChecker
│   │   │   │   │   ├── manifest.crc
│   │   │   │   │   └── manifest.xml
│   │   │   │   ├── manifest.crc
│   │   │   │   ├── manifest.xml
│   │   │   │   ├── package_slice_0
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_1
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_2
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_3
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_4
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_5
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_6
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_7
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_8
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_9
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── slice_0
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── slice_1
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── slice_2
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── slice_3
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── slice_4
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── slice_5
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── slice_6
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── slice_7
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── slice_8
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   └── slice_9
│   │   │   │   └── AndroidManifest.xml
│   │   │   ├── javaPrecompile
│   │   │   │   └── debug
│   │   │   │   └── annotationProcessors.json
│   │   │   ├── manifest
│   │   │   │   └── androidTest
│   │   │   │   └── debug
│   │   │   │   ├── AndroidManifest.xml
│   │   │   │   └── output.json
│   │   │   ├── manifests
│   │   │   │   ├── density
│   │   │   │   │   └── debug
│   │   │   │   │   └── output.json
│   │   │   │   ├── full
│   │   │   │   │   └── debug
│   │   │   │   │   ├── AndroidManifest.xml
│   │   │   │   │   └── output.json
│   │   │   │   └── instant-run
│   │   │   │   └── debug
│   │   │   │   ├── AndroidManifest.xml
│   │   │   │   └── output.json
│   │   │   ├── pre-dexed
│   │   │   │   └── debug
│   │   │   │   ├── instant-run_6f2aaa974fce034bdcce38e0f7b8e6abef718f0a.jar
│   │   │   │   ├── instant-run-bootstrap_50f193f8aff21e1dd6eaa79fabb0f347351ec81b.jar
│   │   │   │   └── main_49ea578716d63837c0d15740b539970cc66d58ab.jar
│   │   │   ├── res
│   │   │   │   ├── androidTest
│   │   │   │   │   └── debug
│   │   │   │   │   ├── output.json
│   │   │   │   │   └── resources-debugAndroidTest.ap_
│   │   │   │   ├── debug
│   │   │   │   │   ├── output.json
│   │   │   │   │   └── resources-debug.ap_
│   │   │   │   ├── merged
│   │   │   │   │   └── debug
│   │   │   │   │   ├── drawable_camera_button_selector.xml.flat
│   │   │   │   │   ├── drawable-hdpi_camera_normal.png.flat
│   │   │   │   │   ├── drawable-hdpi_camera_press.png.flat
│   │   │   │   │   ├── drawable-hdpi_ic_launcher.png.flat
│   │   │   │   │   ├── drawable-ldpi_ic_launcher.png.flat
│   │   │   │   │   ├── drawable-mdpi_ic_launcher.png.flat
│   │   │   │   │   ├── layout_main.xml.flat
│   │   │   │   │   └── values_values.arsc.flat
│   │   │   │   ├── resources-debug-androidTest.ap_
│   │   │   │   └── resources-debug.ap_
│   │   │   ├── restart-dex
│   │   │   │   └── debug
│   │   │   │   └── build-info.xml
│   │   │   ├── split-apk
│   │   │   │   └── debug
│   │   │   │   └── slices
│   │   │   │   ├── slice_0.apk
│   │   │   │   ├── slice_1.apk
│   │   │   │   ├── slice_2.apk
│   │   │   │   ├── slice_3.apk
│   │   │   │   ├── slice_4.apk
│   │   │   │   ├── slice_5.apk
│   │   │   │   ├── slice_6.apk
│   │   │   │   ├── slice_7.apk
│   │   │   │   ├── slice_8.apk
│   │   │   │   └── slice_9.apk
│   │   │   ├── splits-support
│   │   │   │   ├── androidTest
│   │   │   │   │   └── debug
│   │   │   │   │   └── split-list.gson
│   │   │   │   └── debug
│   │   │   │   └── split-list.gson
│   │   │   └── transforms
│   │   │   ├── dex
│   │   │   │   └── debug
│   │   │   │   └── folders
│   │   │   │   └── 1000
│   │   │   │   └── 1f
│   │   │   │   └── main
│   │   │   │   └── classes.dex
│   │   │   ├── dexBuilder
│   │   │   │   └── debug
│   │   │   │   ├── 41
│   │   │   │   │   └── com
│   │   │   │   │   └── demo
│   │   │   │   │   └── face
│   │   │   │   │   ├── BuildConfig.dex
│   │   │   │   │   ├── FaceRecognitionDemoActivity$1.dex
│   │   │   │   │   ├── FaceRecognitionDemoActivity$MyPictureCallback.dex
│   │   │   │   │   ├── FaceRecognitionDemoActivity$MyPreviewCallback.dex
│   │   │   │   │   ├── FaceRecognitionDemoActivity$SurfaceCallback.dex
│   │   │   │   │   ├── FaceRecognitionDemoActivity.dex
│   │   │   │   │   ├── FindFaceView.dex
│   │   │   │   │   ├── R$attr.dex
│   │   │   │   │   ├── R$drawable.dex
│   │   │   │   │   ├── R$id.dex
│   │   │   │   │   ├── R$layout.dex
│   │   │   │   │   ├── R$string.dex
│   │   │   │   │   └── R.dex
│   │   │   │   └── __content__.json
│   │   │   ├── dexMerger
│   │   │   │   └── debug
│   │   │   │   ├── 37
│   │   │   │   │   └── classes.dex
│   │   │   │   └── __content__.json
│   │   │   ├── externalLibsDexMerger
│   │   │   │   └── debug
│   │   │   │   └── __content__.json
│   │   │   ├── extractJars
│   │   │   │   └── debug
│   │   │   │   └── __content__.json
│   │   │   ├── instantRun
│   │   │   │   └── debug
│   │   │   │   ├── 0
│   │   │   │   │   └── com
│   │   │   │   │   └── demo
│   │   │   │   │   └── face
│   │   │   │   │   ├── BuildConfig.class
│   │   │   │   │   ├── FaceRecognitionDemoActivity$1.class
│   │   │   │   │   ├── FaceRecognitionDemoActivity$MyPictureCallback.class
│   │   │   │   │   ├── FaceRecognitionDemoActivity$MyPreviewCallback.class
│   │   │   │   │   ├── FaceRecognitionDemoActivity$SurfaceCallback.class
│   │   │   │   │   ├── FaceRecognitionDemoActivity.class
│   │   │   │   │   ├── FindFaceView.class
│   │   │   │   │   ├── R$attr.class
│   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   ├── R$id.class
│   │   │   │   │   ├── R$layout.class
│   │   │   │   │   ├── R$string.class
│   │   │   │   │   └── R.class
│   │   │   │   ├── __content__.json
│   │   │   │   └── folders
│   │   │   │   ├── 1
│   │   │   │   │   └── 5
│   │   │   │   │   └── main
│   │   │   │   │   └── com
│   │   │   │   │   └── demo
│   │   │   │   │   └── face
│   │   │   │   │   ├── BuildConfig.class
│   │   │   │   │   ├── FaceRecognitionDemoActivity$1.class
│   │   │   │   │   ├── FaceRecognitionDemoActivity$MyPictureCallback.class
│   │   │   │   │   ├── FaceRecognitionDemoActivity$MyPreviewCallback.class
│   │   │   │   │   ├── FaceRecognitionDemoActivity$SurfaceCallback.class
│   │   │   │   │   ├── FaceRecognitionDemoActivity.class
│   │   │   │   │   ├── FindFaceView.class
│   │   │   │   │   ├── R$attr.class
│   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   ├── R$id.class
│   │   │   │   │   ├── R$layout.class
│   │   │   │   │   ├── R$string.class
│   │   │   │   │   └── R.class
│   │   │   │   └── 4000
│   │   │   │   └── 5
│   │   │   │   └── enhanced
│   │   │   │   └── com
│   │   │   │   ├── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── fd
│   │   │   │   │   └── runtime
│   │   │   │   │   └── AppPatchesLoaderImpl.class
│   │   │   │   └── demo
│   │   │   │   └── face
│   │   │   │   └── FindFaceView$override.class
│   │   │   ├── instantRunDependenciesApk
│   │   │   │   └── debug
│   │   │   │   └── __content__.json
│   │   │   ├── instantRunSlicer
│   │   │   │   └── debug
│   │   │   │   ├── 0
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_0.class
│   │   │   │   ├── 1
│   │   │   │   │   ├── buildId.txt
│   │   │   │   │   └── com
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── tools
│   │   │   │   │   │   └── ir
│   │   │   │   │   │   └── dummy
│   │   │   │   │   │   └── slice_1.class
│   │   │   │   │   └── demo
│   │   │   │   │   └── face
│   │   │   │   │   ├── BuildConfig.class
│   │   │   │   │   ├── FaceRecognitionDemoActivity$1.class
│   │   │   │   │   ├── FaceRecognitionDemoActivity$MyPictureCallback.class
│   │   │   │   │   ├── FaceRecognitionDemoActivity$MyPreviewCallback.class
│   │   │   │   │   ├── FaceRecognitionDemoActivity$SurfaceCallback.class
│   │   │   │   │   ├── FaceRecognitionDemoActivity.class
│   │   │   │   │   ├── FindFaceView.class
│   │   │   │   │   ├── R$attr.class
│   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   ├── R$id.class
│   │   │   │   │   ├── R$layout.class
│   │   │   │   │   ├── R$string.class
│   │   │   │   │   └── R.class
│   │   │   │   ├── 2
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_2.class
│   │   │   │   ├── 3
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_3.class
│   │   │   │   ├── 4
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_4.class
│   │   │   │   ├── 5
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_5.class
│   │   │   │   ├── 6
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_6.class
│   │   │   │   ├── 7
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_7.class
│   │   │   │   ├── 8
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_8.class
│   │   │   │   ├── 9
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_9.class
│   │   │   │   └── __content__.json
│   │   │   ├── instantRunSlicesApk
│   │   │   │   └── debug
│   │   │   │   └── __content__.json
│   │   │   ├── mergeJavaRes
│   │   │   │   └── debug
│   │   │   │   ├── 0.jar
│   │   │   │   └── __content__.json
│   │   │   └── mergeJniLibs
│   │   │   └── debug
│   │   │   └── __content__.json
│   │   └── outputs
│   │   ├── apk
│   │   │   ├── app-debug.apk
│   │   │   └── debug
│   │   │   ├── app-debug.apk
│   │   │   └── output.json
│   │   └── logs
│   │   └── manifest-merger-debug-report.txt
│   ├── build.gradle
│   └── src
│   └── main
│   ├── AndroidManifest.xml
│   ├── java
│   │   └── com
│   │   └── demo
│   │   └── face
│   │   ├── FaceRecognitionDemoActivity.java
│   │   └── FindFaceView.java
│   └── res
│   ├── drawable
│   │   └── camera_button_selector.xml
│   ├── drawable-hdpi
│   │   ├── camera_normal.png
│   │   ├── camera_press.png
│   │   └── ic_launcher.png
│   ├── drawable-ldpi
│   │   └── ic_launcher.png
│   ├── drawable-mdpi
│   │   └── ic_launcher.png
│   ├── layout
│   │   └── main.xml
│   └── values
│   └── strings.xml
├── build
│   ├── android-profile
│   │   ├── profile-2017-12-13-09-14-02-208.json
│   │   ├── profile-2017-12-13-09-14-02-208.rawproto
│   │   ├── profile-2017-12-13-09-14-37-122.json
│   │   ├── profile-2017-12-13-09-14-37-122.rawproto
│   │   ├── profile-2017-12-13-09-15-00-135.json
│   │   ├── profile-2017-12-13-09-15-00-135.rawproto
│   │   ├── profile-2017-12-13-09-15-49-691.json
│   │   ├── profile-2017-12-13-09-15-49-691.rawproto
│   │   ├── profile-2017-12-13-09-34-16-965.json
│   │   ├── profile-2017-12-13-09-34-16-965.rawproto
│   │   ├── profile-2017-12-13-09-34-41-791.json
│   │   ├── profile-2017-12-13-09-34-41-791.rawproto
│   │   ├── profile-2017-12-13-09-46-45-117.json
│   │   ├── profile-2017-12-13-09-46-45-117.rawproto
│   │   ├── profile-2017-12-13-09-47-54-054.json
│   │   ├── profile-2017-12-13-09-47-54-054.rawproto
│   │   ├── profile-2017-12-13-10-11-06-129.json
│   │   ├── profile-2017-12-13-10-11-06-129.rawproto
│   │   ├── profile-2017-12-13-10-11-38-329.json
│   │   ├── profile-2017-12-13-10-11-38-329.rawproto
│   │   ├── profile-2017-12-13-10-13-28-900.json
│   │   ├── profile-2017-12-13-10-13-28-900.rawproto
│   │   ├── profile-2017-12-13-10-14-26-576.json
│   │   ├── profile-2017-12-13-10-14-26-576.rawproto
│   │   ├── profile-2017-12-13-10-14-39-798.json
│   │   ├── profile-2017-12-13-10-14-39-798.rawproto
│   │   ├── profile-2017-12-13-10-19-27-135.json
│   │   ├── profile-2017-12-13-10-19-27-135.rawproto
│   │   ├── profile-2017-12-13-10-20-02-968.json
│   │   ├── profile-2017-12-13-10-20-02-968.rawproto
│   │   ├── profile-2017-12-13-10-22-52-381.json
│   │   ├── profile-2017-12-13-10-22-52-381.rawproto
│   │   ├── profile-2017-12-13-10-25-50-399.json
│   │   ├── profile-2017-12-13-10-25-50-399.rawproto
│   │   ├── profile-2017-12-13-10-30-24-390.json
│   │   ├── profile-2017-12-13-10-30-24-390.rawproto
│   │   ├── profile-2017-12-13-10-35-22-831.json
│   │   ├── profile-2017-12-13-10-35-22-831.rawproto
│   │   ├── profile-2017-12-13-10-38-27-058.json
│   │   ├── profile-2017-12-13-10-38-27-058.rawproto
│   │   ├── profile-2017-12-13-10-43-57-722.json
│   │   ├── profile-2017-12-13-10-43-57-722.rawproto
│   │   ├── profile-2017-12-13-10-44-21-913.json
│   │   ├── profile-2017-12-13-10-44-21-913.rawproto
│   │   ├── profile-2017-12-13-10-44-39-421.json
│   │   ├── profile-2017-12-13-10-44-39-421.rawproto
│   │   ├── profile-2017-12-13-10-48-16-861.json
│   │   ├── profile-2017-12-13-10-48-16-861.rawproto
│   │   ├── profile-2017-12-13-10-54-37-971.json
│   │   ├── profile-2017-12-13-10-54-37-971.rawproto
│   │   ├── profile-2017-12-13-10-59-42-930.json
│   │   ├── profile-2017-12-13-10-59-42-930.rawproto
│   │   ├── profile-2017-12-13-10-59-52-382.json
│   │   ├── profile-2017-12-13-10-59-52-382.rawproto
│   │   ├── profile-2017-12-13-11-00-09-158.json
│   │   ├── profile-2017-12-13-11-00-09-158.rawproto
│   │   ├── profile-2017-12-13-11-00-58-923.json
│   │   ├── profile-2017-12-13-11-00-58-923.rawproto
│   │   ├── profile-2017-12-13-11-03-17-453.json
│   │   ├── profile-2017-12-13-11-03-17-453.rawproto
│   │   ├── profile-2017-12-13-11-04-32-524.json
│   │   ├── profile-2017-12-13-11-04-32-524.rawproto
│   │   ├── profile-2017-12-13-11-05-44-550.json
│   │   ├── profile-2017-12-13-11-05-44-550.rawproto
│   │   ├── profile-2017-12-13-11-07-19-822.json
│   │   ├── profile-2017-12-13-11-07-19-822.rawproto
│   │   ├── profile-2017-12-13-11-37-13-570.json
│   │   ├── profile-2017-12-13-11-37-13-570.rawproto
│   │   ├── profile-2017-12-13-16-42-05-453.json
│   │   └── profile-2017-12-13-16-42-05-453.rawproto
│   ├── generated
│   │   └── mockable-android-16.jar
│   └── intermediates
│   └── dex-cache
│   └── cache.xml
├── build.gradle
├── FaceRecognition-master.iml
├── gradle
│   └── wrapper
│   ├── gradle-wrapper.jar
│   └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
├── import-summary.txt
├── local.properties
├── README.md
└── settings.gradle

267 directories, 309 files

标签:

实例下载地址

Android自带SDK进行人脸识别

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警