├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── app.iml ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── chenty │ │ └── testncnn │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── arcface │ │ │ ├── arcface.cpp │ │ │ ├── arcface.h │ │ │ ├── base.cpp │ │ │ ├── base.h │ │ │ ├── det1.h │ │ │ ├── det1.id.h │ │ │ ├── det2.h │ │ │ ├── det2.id.h │ │ │ ├── det3.h │ │ │ ├── det3.id.h │ │ │ ├── det4.h │ │ │ ├── det4.id.h │ │ │ ├── interface.cpp │ │ │ ├── interface.h │ │ │ ├── mobilefacenet.h │ │ │ ├── mobilefacenet.id.h │ │ │ ├── mtcnn.cpp │ │ │ └── mtcnn.h │ │ ├── jni.cpp │ │ └── ncnn-android-lib │ │ │ ├── arm64-v8a │ │ │ └── libncnn.a │ │ │ ├── armeabi-v7a │ │ │ └── libncnn.a │ │ │ └── include │ │ │ └── ncnn │ │ │ ├── allocator.h │ │ │ ├── benchmark.h │ │ │ ├── blob.h │ │ │ ├── command.h │ │ │ ├── cpu.h │ │ │ ├── datareader.h │ │ │ ├── gpu.h │ │ │ ├── layer.h │ │ │ ├── layer_type.h │ │ │ ├── layer_type_enum.h │ │ │ ├── mat.h │ │ │ ├── modelbin.h │ │ │ ├── net.h │ │ │ ├── opencv.h │ │ │ ├── option.h │ │ │ ├── paramdict.h │ │ │ ├── pipeline.h │ │ │ └── platform.h │ ├── java │ │ └── com │ │ │ └── chenty │ │ │ └── testncnn │ │ │ ├── AutoFitSurfaceView.java │ │ │ ├── CameraNcnnFragment.java │ │ │ └── MainActivity.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_action_info.png │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ └── fragment_camera2_basic.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── raw │ │ ├── fragment.glsl │ │ └── vertex.glsl │ │ ├── values-zh │ │ └── strings.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── chenty │ └── testncnn │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── imgs ├── Screenshot_2019-08-16-12-07-00-002_com.chenty.tes.png ├── Screenshot_2019-08-16-13-54-38-377_com.chenty.tes.png └── sample.gif └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/app.iml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/chenty/testncnn/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/androidTest/java/com/chenty/testncnn/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/arcface/arcface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/arcface/arcface.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/arcface/arcface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/arcface/arcface.h -------------------------------------------------------------------------------- /app/src/main/cpp/arcface/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/arcface/base.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/arcface/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/arcface/base.h -------------------------------------------------------------------------------- /app/src/main/cpp/arcface/det1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/arcface/det1.h -------------------------------------------------------------------------------- /app/src/main/cpp/arcface/det1.id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/arcface/det1.id.h -------------------------------------------------------------------------------- /app/src/main/cpp/arcface/det2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/arcface/det2.h -------------------------------------------------------------------------------- /app/src/main/cpp/arcface/det2.id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/arcface/det2.id.h -------------------------------------------------------------------------------- /app/src/main/cpp/arcface/det3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/arcface/det3.h -------------------------------------------------------------------------------- /app/src/main/cpp/arcface/det3.id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/arcface/det3.id.h -------------------------------------------------------------------------------- /app/src/main/cpp/arcface/det4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/arcface/det4.h -------------------------------------------------------------------------------- /app/src/main/cpp/arcface/det4.id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/arcface/det4.id.h -------------------------------------------------------------------------------- /app/src/main/cpp/arcface/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/arcface/interface.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/arcface/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/arcface/interface.h -------------------------------------------------------------------------------- /app/src/main/cpp/arcface/mobilefacenet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/arcface/mobilefacenet.h -------------------------------------------------------------------------------- /app/src/main/cpp/arcface/mobilefacenet.id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/arcface/mobilefacenet.id.h -------------------------------------------------------------------------------- /app/src/main/cpp/arcface/mtcnn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/arcface/mtcnn.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/arcface/mtcnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/arcface/mtcnn.h -------------------------------------------------------------------------------- /app/src/main/cpp/jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/jni.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/ncnn-android-lib/arm64-v8a/libncnn.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/ncnn-android-lib/arm64-v8a/libncnn.a -------------------------------------------------------------------------------- /app/src/main/cpp/ncnn-android-lib/armeabi-v7a/libncnn.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/ncnn-android-lib/armeabi-v7a/libncnn.a -------------------------------------------------------------------------------- /app/src/main/cpp/ncnn-android-lib/include/ncnn/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/ncnn-android-lib/include/ncnn/allocator.h -------------------------------------------------------------------------------- /app/src/main/cpp/ncnn-android-lib/include/ncnn/benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/ncnn-android-lib/include/ncnn/benchmark.h -------------------------------------------------------------------------------- /app/src/main/cpp/ncnn-android-lib/include/ncnn/blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/ncnn-android-lib/include/ncnn/blob.h -------------------------------------------------------------------------------- /app/src/main/cpp/ncnn-android-lib/include/ncnn/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/ncnn-android-lib/include/ncnn/command.h -------------------------------------------------------------------------------- /app/src/main/cpp/ncnn-android-lib/include/ncnn/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/ncnn-android-lib/include/ncnn/cpu.h -------------------------------------------------------------------------------- /app/src/main/cpp/ncnn-android-lib/include/ncnn/datareader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/ncnn-android-lib/include/ncnn/datareader.h -------------------------------------------------------------------------------- /app/src/main/cpp/ncnn-android-lib/include/ncnn/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/ncnn-android-lib/include/ncnn/gpu.h -------------------------------------------------------------------------------- /app/src/main/cpp/ncnn-android-lib/include/ncnn/layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/ncnn-android-lib/include/ncnn/layer.h -------------------------------------------------------------------------------- /app/src/main/cpp/ncnn-android-lib/include/ncnn/layer_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/ncnn-android-lib/include/ncnn/layer_type.h -------------------------------------------------------------------------------- /app/src/main/cpp/ncnn-android-lib/include/ncnn/layer_type_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/ncnn-android-lib/include/ncnn/layer_type_enum.h -------------------------------------------------------------------------------- /app/src/main/cpp/ncnn-android-lib/include/ncnn/mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/ncnn-android-lib/include/ncnn/mat.h -------------------------------------------------------------------------------- /app/src/main/cpp/ncnn-android-lib/include/ncnn/modelbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/ncnn-android-lib/include/ncnn/modelbin.h -------------------------------------------------------------------------------- /app/src/main/cpp/ncnn-android-lib/include/ncnn/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/ncnn-android-lib/include/ncnn/net.h -------------------------------------------------------------------------------- /app/src/main/cpp/ncnn-android-lib/include/ncnn/opencv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/ncnn-android-lib/include/ncnn/opencv.h -------------------------------------------------------------------------------- /app/src/main/cpp/ncnn-android-lib/include/ncnn/option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/ncnn-android-lib/include/ncnn/option.h -------------------------------------------------------------------------------- /app/src/main/cpp/ncnn-android-lib/include/ncnn/paramdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/ncnn-android-lib/include/ncnn/paramdict.h -------------------------------------------------------------------------------- /app/src/main/cpp/ncnn-android-lib/include/ncnn/pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/ncnn-android-lib/include/ncnn/pipeline.h -------------------------------------------------------------------------------- /app/src/main/cpp/ncnn-android-lib/include/ncnn/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/cpp/ncnn-android-lib/include/ncnn/platform.h -------------------------------------------------------------------------------- /app/src/main/java/com/chenty/testncnn/AutoFitSurfaceView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/java/com/chenty/testncnn/AutoFitSurfaceView.java -------------------------------------------------------------------------------- /app/src/main/java/com/chenty/testncnn/CameraNcnnFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/java/com/chenty/testncnn/CameraNcnnFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/chenty/testncnn/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/java/com/chenty/testncnn/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_action_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/res/drawable/ic_action_info.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_camera2_basic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/res/layout/fragment_camera2_basic.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/raw/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/res/raw/fragment.glsl -------------------------------------------------------------------------------- /app/src/main/res/raw/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/res/raw/vertex.glsl -------------------------------------------------------------------------------- /app/src/main/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/res/values-zh/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/chenty/testncnn/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/app/src/test/java/com/chenty/testncnn/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/gradlew.bat -------------------------------------------------------------------------------- /imgs/Screenshot_2019-08-16-12-07-00-002_com.chenty.tes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/imgs/Screenshot_2019-08-16-12-07-00-002_com.chenty.tes.png -------------------------------------------------------------------------------- /imgs/Screenshot_2019-08-16-13-54-38-377_com.chenty.tes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/imgs/Screenshot_2019-08-16-13-54-38-377_com.chenty.tes.png -------------------------------------------------------------------------------- /imgs/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chentyjpm/InsightFaceRecognition_Demo_AndroidNCNN/HEAD/imgs/sample.gif -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------