├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── libs │ └── dlib-v1.0.4.aar ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── simoncherry │ │ └── averageface │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── simoncherry │ │ │ └── averageface │ │ │ ├── BitmapUtils.java │ │ │ ├── FileUtils.java │ │ │ ├── JNIUtils.java │ │ │ ├── Landmark.java │ │ │ ├── MainActivity.java │ │ │ └── MediaScanner.java │ ├── jni │ │ ├── Android.mk │ │ ├── Application.mk │ │ ├── jni_app.cpp │ │ ├── jni_app.h │ │ ├── json │ │ │ ├── json-forwards.h │ │ │ └── json.h │ │ ├── jsoncpp.cpp │ │ ├── md5.cpp │ │ └── md5.h │ ├── libs │ │ ├── armeabi-v7a │ │ │ ├── libJNI_APP.so │ │ │ └── libjsoncpp.so │ │ └── armeabi │ │ │ ├── libJNI_APP.so │ │ │ └── libjsoncpp.so │ ├── obj │ │ └── local │ │ │ ├── armeabi-v7a │ │ │ ├── libJNI_APP.so │ │ │ ├── libjsoncpp.so │ │ │ └── objs │ │ │ │ ├── JNI_APP │ │ │ │ ├── jni_app.o │ │ │ │ ├── jni_app.o.d │ │ │ │ ├── md5.o │ │ │ │ └── md5.o.d │ │ │ │ └── jsoncpp │ │ │ │ ├── jsoncpp.o │ │ │ │ └── jsoncpp.o.d │ │ │ └── armeabi │ │ │ ├── libJNI_APP.so │ │ │ ├── libjsoncpp.so │ │ │ └── objs │ │ │ ├── JNI_APP │ │ │ ├── jni_app.o │ │ │ ├── jni_app.o.d │ │ │ ├── md5.o │ │ │ └── md5.o.d │ │ │ └── jsoncpp │ │ │ ├── jsoncpp.o │ │ │ └── jsoncpp.o.d │ └── res │ │ ├── drawable-xxhdpi │ │ ├── add_icon.png │ │ └── mock_img.jpg │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── simoncherry │ └── averageface │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── native ├── 3rdparty │ └── libs │ │ ├── armeabi-v7a │ │ ├── libIlmImf.a │ │ ├── liblibjasper.a │ │ ├── liblibjpeg.a │ │ ├── liblibpng.a │ │ ├── liblibtiff.a │ │ ├── liblibwebp.a │ │ ├── libtbb.a │ │ └── libtegra_hal.a │ │ └── armeabi │ │ ├── libIlmImf.a │ │ ├── liblibjasper.a │ │ ├── liblibjpeg.a │ │ ├── liblibpng.a │ │ ├── liblibtiff.a │ │ ├── liblibwebp.a │ │ ├── libtbb.a │ │ └── libtegra_hal.a ├── jni │ ├── OpenCV-armeabi-v7a.mk │ ├── OpenCV-armeabi.mk │ ├── OpenCV.mk │ ├── OpenCVConfig-version.cmake │ ├── OpenCVConfig.cmake │ ├── abi-armeabi-v7a │ │ ├── OpenCVConfig-version.cmake │ │ ├── OpenCVConfig.cmake │ │ ├── OpenCVModules-release.cmake │ │ └── OpenCVModules.cmake │ ├── abi-armeabi │ │ ├── OpenCVConfig-version.cmake │ │ ├── OpenCVConfig.cmake │ │ ├── OpenCVModules-release.cmake │ │ └── OpenCVModules.cmake │ ├── android.toolchain.cmake │ └── include │ │ ├── opencv │ │ ├── cv.h │ │ ├── cv.hpp │ │ ├── cvaux.h │ │ ├── cvaux.hpp │ │ ├── cvwimage.h │ │ ├── cxcore.h │ │ ├── cxcore.hpp │ │ ├── cxeigen.hpp │ │ ├── cxmisc.h │ │ ├── highgui.h │ │ └── ml.h │ │ └── opencv2 │ │ ├── calib3d.hpp │ │ ├── calib3d │ │ ├── calib3d.hpp │ │ └── calib3d_c.h │ │ ├── core.hpp │ │ ├── core │ │ ├── affine.hpp │ │ ├── base.hpp │ │ ├── bufferpool.hpp │ │ ├── core.hpp │ │ ├── core_c.h │ │ ├── cuda.hpp │ │ ├── cuda.inl.hpp │ │ ├── cuda │ │ │ ├── block.hpp │ │ │ ├── border_interpolate.hpp │ │ │ ├── color.hpp │ │ │ ├── common.hpp │ │ │ ├── datamov_utils.hpp │ │ │ ├── detail │ │ │ │ ├── color_detail.hpp │ │ │ │ ├── reduce.hpp │ │ │ │ ├── reduce_key_val.hpp │ │ │ │ ├── transform_detail.hpp │ │ │ │ ├── type_traits_detail.hpp │ │ │ │ └── vec_distance_detail.hpp │ │ │ ├── dynamic_smem.hpp │ │ │ ├── emulation.hpp │ │ │ ├── filters.hpp │ │ │ ├── funcattrib.hpp │ │ │ ├── functional.hpp │ │ │ ├── limits.hpp │ │ │ ├── reduce.hpp │ │ │ ├── saturate_cast.hpp │ │ │ ├── scan.hpp │ │ │ ├── simd_functions.hpp │ │ │ ├── transform.hpp │ │ │ ├── type_traits.hpp │ │ │ ├── utility.hpp │ │ │ ├── vec_distance.hpp │ │ │ ├── vec_math.hpp │ │ │ ├── vec_traits.hpp │ │ │ ├── warp.hpp │ │ │ ├── warp_reduce.hpp │ │ │ └── warp_shuffle.hpp │ │ ├── cuda_stream_accessor.hpp │ │ ├── cuda_types.hpp │ │ ├── cvdef.h │ │ ├── cvstd.hpp │ │ ├── cvstd.inl.hpp │ │ ├── directx.hpp │ │ ├── eigen.hpp │ │ ├── fast_math.hpp │ │ ├── hal │ │ │ ├── hal.hpp │ │ │ ├── interface.h │ │ │ ├── intrin.hpp │ │ │ ├── intrin_cpp.hpp │ │ │ ├── intrin_neon.hpp │ │ │ └── intrin_sse.hpp │ │ ├── ippasync.hpp │ │ ├── mat.hpp │ │ ├── mat.inl.hpp │ │ ├── matx.hpp │ │ ├── neon_utils.hpp │ │ ├── ocl.hpp │ │ ├── ocl_genbase.hpp │ │ ├── opengl.hpp │ │ ├── operations.hpp │ │ ├── optim.hpp │ │ ├── ovx.hpp │ │ ├── persistence.hpp │ │ ├── private.cuda.hpp │ │ ├── private.hpp │ │ ├── ptr.inl.hpp │ │ ├── saturate.hpp │ │ ├── sse_utils.hpp │ │ ├── traits.hpp │ │ ├── types.hpp │ │ ├── types_c.h │ │ ├── utility.hpp │ │ ├── va_intel.hpp │ │ ├── version.hpp │ │ └── wimage.hpp │ │ ├── cvconfig.h │ │ ├── features2d.hpp │ │ ├── features2d │ │ └── features2d.hpp │ │ ├── flann.hpp │ │ ├── flann │ │ ├── all_indices.h │ │ ├── allocator.h │ │ ├── any.h │ │ ├── autotuned_index.h │ │ ├── composite_index.h │ │ ├── config.h │ │ ├── defines.h │ │ ├── dist.h │ │ ├── dummy.h │ │ ├── dynamic_bitset.h │ │ ├── flann.hpp │ │ ├── flann_base.hpp │ │ ├── general.h │ │ ├── ground_truth.h │ │ ├── hdf5.h │ │ ├── heap.h │ │ ├── hierarchical_clustering_index.h │ │ ├── index_testing.h │ │ ├── kdtree_index.h │ │ ├── kdtree_single_index.h │ │ ├── kmeans_index.h │ │ ├── linear_index.h │ │ ├── logger.h │ │ ├── lsh_index.h │ │ ├── lsh_table.h │ │ ├── matrix.h │ │ ├── miniflann.hpp │ │ ├── nn_index.h │ │ ├── object_factory.h │ │ ├── params.h │ │ ├── random.h │ │ ├── result_set.h │ │ ├── sampling.h │ │ ├── saving.h │ │ ├── simplex_downhill.h │ │ └── timer.h │ │ ├── highgui.hpp │ │ ├── highgui │ │ ├── highgui.hpp │ │ └── highgui_c.h │ │ ├── imgcodecs.hpp │ │ ├── imgcodecs │ │ ├── imgcodecs.hpp │ │ ├── imgcodecs_c.h │ │ └── ios.h │ │ ├── imgproc.hpp │ │ ├── imgproc │ │ ├── detail │ │ │ └── distortion_model.hpp │ │ ├── hal │ │ │ ├── hal.hpp │ │ │ └── interface.h │ │ ├── imgproc.hpp │ │ ├── imgproc_c.h │ │ └── types_c.h │ │ ├── ml.hpp │ │ ├── ml │ │ └── ml.hpp │ │ ├── objdetect.hpp │ │ ├── objdetect │ │ ├── detection_based_tracker.hpp │ │ ├── objdetect.hpp │ │ └── objdetect_c.h │ │ ├── opencv.hpp │ │ ├── opencv_modules.hpp │ │ ├── photo.hpp │ │ ├── photo │ │ ├── cuda.hpp │ │ ├── photo.hpp │ │ └── photo_c.h │ │ ├── shape.hpp │ │ ├── shape │ │ ├── emdL1.hpp │ │ ├── hist_cost.hpp │ │ ├── shape.hpp │ │ ├── shape_distance.hpp │ │ └── shape_transformer.hpp │ │ ├── stitching.hpp │ │ ├── stitching │ │ ├── detail │ │ │ ├── autocalib.hpp │ │ │ ├── blenders.hpp │ │ │ ├── camera.hpp │ │ │ ├── exposure_compensate.hpp │ │ │ ├── matchers.hpp │ │ │ ├── motion_estimators.hpp │ │ │ ├── seam_finders.hpp │ │ │ ├── timelapsers.hpp │ │ │ ├── util.hpp │ │ │ ├── util_inl.hpp │ │ │ ├── warpers.hpp │ │ │ └── warpers_inl.hpp │ │ └── warpers.hpp │ │ ├── superres.hpp │ │ ├── superres │ │ └── optical_flow.hpp │ │ ├── video.hpp │ │ ├── video │ │ ├── background_segm.hpp │ │ ├── tracking.hpp │ │ ├── tracking_c.h │ │ └── video.hpp │ │ ├── videoio.hpp │ │ ├── videoio │ │ ├── cap_ios.h │ │ ├── videoio.hpp │ │ └── videoio_c.h │ │ ├── videostab.hpp │ │ └── videostab │ │ ├── deblurring.hpp │ │ ├── fast_marching.hpp │ │ ├── fast_marching_inl.hpp │ │ ├── frame_source.hpp │ │ ├── global_motion.hpp │ │ ├── inpainting.hpp │ │ ├── log.hpp │ │ ├── motion_core.hpp │ │ ├── motion_stabilizing.hpp │ │ ├── optical_flow.hpp │ │ ├── outlier_rejection.hpp │ │ ├── ring_buffer.hpp │ │ ├── stabilizer.hpp │ │ └── wobble_suppression.hpp └── libs │ ├── armeabi-v7a │ ├── libopencv_calib3d.a │ ├── libopencv_core.a │ ├── libopencv_features2d.a │ ├── libopencv_flann.a │ ├── libopencv_highgui.a │ ├── libopencv_imgcodecs.a │ ├── libopencv_imgproc.a │ ├── libopencv_java3.so │ ├── libopencv_ml.a │ ├── libopencv_objdetect.a │ ├── libopencv_photo.a │ ├── libopencv_shape.a │ ├── libopencv_stitching.a │ ├── libopencv_superres.a │ ├── libopencv_video.a │ ├── libopencv_videoio.a │ └── libopencv_videostab.a │ └── armeabi │ ├── libopencv_calib3d.a │ ├── libopencv_core.a │ ├── libopencv_features2d.a │ ├── libopencv_flann.a │ ├── libopencv_highgui.a │ ├── libopencv_imgcodecs.a │ ├── libopencv_imgproc.a │ ├── libopencv_java3.so │ ├── libopencv_ml.a │ ├── libopencv_objdetect.a │ ├── libopencv_photo.a │ ├── libopencv_shape.a │ ├── libopencv_stitching.a │ ├── libopencv_superres.a │ ├── libopencv_video.a │ ├── libopencv_videoio.a │ └── libopencv_videostab.a ├── screenshots ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png └── 6.png └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/libs/dlib-v1.0.4.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/libs/dlib-v1.0.4.aar -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/simoncherry/averageface/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/androidTest/java/com/simoncherry/averageface/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/simoncherry/averageface/BitmapUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/java/com/simoncherry/averageface/BitmapUtils.java -------------------------------------------------------------------------------- /app/src/main/java/com/simoncherry/averageface/FileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/java/com/simoncherry/averageface/FileUtils.java -------------------------------------------------------------------------------- /app/src/main/java/com/simoncherry/averageface/JNIUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/java/com/simoncherry/averageface/JNIUtils.java -------------------------------------------------------------------------------- /app/src/main/java/com/simoncherry/averageface/Landmark.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/java/com/simoncherry/averageface/Landmark.java -------------------------------------------------------------------------------- /app/src/main/java/com/simoncherry/averageface/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/java/com/simoncherry/averageface/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/simoncherry/averageface/MediaScanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/java/com/simoncherry/averageface/MediaScanner.java -------------------------------------------------------------------------------- /app/src/main/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/jni/Android.mk -------------------------------------------------------------------------------- /app/src/main/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/jni/Application.mk -------------------------------------------------------------------------------- /app/src/main/jni/jni_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/jni/jni_app.cpp -------------------------------------------------------------------------------- /app/src/main/jni/jni_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/jni/jni_app.h -------------------------------------------------------------------------------- /app/src/main/jni/json/json-forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/jni/json/json-forwards.h -------------------------------------------------------------------------------- /app/src/main/jni/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/jni/json/json.h -------------------------------------------------------------------------------- /app/src/main/jni/jsoncpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/jni/jsoncpp.cpp -------------------------------------------------------------------------------- /app/src/main/jni/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/jni/md5.cpp -------------------------------------------------------------------------------- /app/src/main/jni/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/jni/md5.h -------------------------------------------------------------------------------- /app/src/main/libs/armeabi-v7a/libJNI_APP.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/libs/armeabi-v7a/libJNI_APP.so -------------------------------------------------------------------------------- /app/src/main/libs/armeabi-v7a/libjsoncpp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/libs/armeabi-v7a/libjsoncpp.so -------------------------------------------------------------------------------- /app/src/main/libs/armeabi/libJNI_APP.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/libs/armeabi/libJNI_APP.so -------------------------------------------------------------------------------- /app/src/main/libs/armeabi/libjsoncpp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/libs/armeabi/libjsoncpp.so -------------------------------------------------------------------------------- /app/src/main/obj/local/armeabi-v7a/libJNI_APP.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/obj/local/armeabi-v7a/libJNI_APP.so -------------------------------------------------------------------------------- /app/src/main/obj/local/armeabi-v7a/libjsoncpp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/obj/local/armeabi-v7a/libjsoncpp.so -------------------------------------------------------------------------------- /app/src/main/obj/local/armeabi-v7a/objs/JNI_APP/jni_app.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/obj/local/armeabi-v7a/objs/JNI_APP/jni_app.o -------------------------------------------------------------------------------- /app/src/main/obj/local/armeabi-v7a/objs/JNI_APP/jni_app.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/obj/local/armeabi-v7a/objs/JNI_APP/jni_app.o.d -------------------------------------------------------------------------------- /app/src/main/obj/local/armeabi-v7a/objs/JNI_APP/md5.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/obj/local/armeabi-v7a/objs/JNI_APP/md5.o -------------------------------------------------------------------------------- /app/src/main/obj/local/armeabi-v7a/objs/JNI_APP/md5.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/obj/local/armeabi-v7a/objs/JNI_APP/md5.o.d -------------------------------------------------------------------------------- /app/src/main/obj/local/armeabi-v7a/objs/jsoncpp/jsoncpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/obj/local/armeabi-v7a/objs/jsoncpp/jsoncpp.o -------------------------------------------------------------------------------- /app/src/main/obj/local/armeabi-v7a/objs/jsoncpp/jsoncpp.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/obj/local/armeabi-v7a/objs/jsoncpp/jsoncpp.o.d -------------------------------------------------------------------------------- /app/src/main/obj/local/armeabi/libJNI_APP.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/obj/local/armeabi/libJNI_APP.so -------------------------------------------------------------------------------- /app/src/main/obj/local/armeabi/libjsoncpp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/obj/local/armeabi/libjsoncpp.so -------------------------------------------------------------------------------- /app/src/main/obj/local/armeabi/objs/JNI_APP/jni_app.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/obj/local/armeabi/objs/JNI_APP/jni_app.o -------------------------------------------------------------------------------- /app/src/main/obj/local/armeabi/objs/JNI_APP/jni_app.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/obj/local/armeabi/objs/JNI_APP/jni_app.o.d -------------------------------------------------------------------------------- /app/src/main/obj/local/armeabi/objs/JNI_APP/md5.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/obj/local/armeabi/objs/JNI_APP/md5.o -------------------------------------------------------------------------------- /app/src/main/obj/local/armeabi/objs/JNI_APP/md5.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/obj/local/armeabi/objs/JNI_APP/md5.o.d -------------------------------------------------------------------------------- /app/src/main/obj/local/armeabi/objs/jsoncpp/jsoncpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/obj/local/armeabi/objs/jsoncpp/jsoncpp.o -------------------------------------------------------------------------------- /app/src/main/obj/local/armeabi/objs/jsoncpp/jsoncpp.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/obj/local/armeabi/objs/jsoncpp/jsoncpp.o.d -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/add_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/res/drawable-xxhdpi/add_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mock_img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/res/drawable-xxhdpi/mock_img.jpg -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/simoncherry/averageface/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/app/src/test/java/com/simoncherry/averageface/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/gradlew.bat -------------------------------------------------------------------------------- /native/3rdparty/libs/armeabi-v7a/libIlmImf.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/3rdparty/libs/armeabi-v7a/libIlmImf.a -------------------------------------------------------------------------------- /native/3rdparty/libs/armeabi-v7a/liblibjasper.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/3rdparty/libs/armeabi-v7a/liblibjasper.a -------------------------------------------------------------------------------- /native/3rdparty/libs/armeabi-v7a/liblibjpeg.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/3rdparty/libs/armeabi-v7a/liblibjpeg.a -------------------------------------------------------------------------------- /native/3rdparty/libs/armeabi-v7a/liblibpng.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/3rdparty/libs/armeabi-v7a/liblibpng.a -------------------------------------------------------------------------------- /native/3rdparty/libs/armeabi-v7a/liblibtiff.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/3rdparty/libs/armeabi-v7a/liblibtiff.a -------------------------------------------------------------------------------- /native/3rdparty/libs/armeabi-v7a/liblibwebp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/3rdparty/libs/armeabi-v7a/liblibwebp.a -------------------------------------------------------------------------------- /native/3rdparty/libs/armeabi-v7a/libtbb.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/3rdparty/libs/armeabi-v7a/libtbb.a -------------------------------------------------------------------------------- /native/3rdparty/libs/armeabi-v7a/libtegra_hal.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/3rdparty/libs/armeabi-v7a/libtegra_hal.a -------------------------------------------------------------------------------- /native/3rdparty/libs/armeabi/libIlmImf.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/3rdparty/libs/armeabi/libIlmImf.a -------------------------------------------------------------------------------- /native/3rdparty/libs/armeabi/liblibjasper.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/3rdparty/libs/armeabi/liblibjasper.a -------------------------------------------------------------------------------- /native/3rdparty/libs/armeabi/liblibjpeg.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/3rdparty/libs/armeabi/liblibjpeg.a -------------------------------------------------------------------------------- /native/3rdparty/libs/armeabi/liblibpng.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/3rdparty/libs/armeabi/liblibpng.a -------------------------------------------------------------------------------- /native/3rdparty/libs/armeabi/liblibtiff.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/3rdparty/libs/armeabi/liblibtiff.a -------------------------------------------------------------------------------- /native/3rdparty/libs/armeabi/liblibwebp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/3rdparty/libs/armeabi/liblibwebp.a -------------------------------------------------------------------------------- /native/3rdparty/libs/armeabi/libtbb.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/3rdparty/libs/armeabi/libtbb.a -------------------------------------------------------------------------------- /native/3rdparty/libs/armeabi/libtegra_hal.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/3rdparty/libs/armeabi/libtegra_hal.a -------------------------------------------------------------------------------- /native/jni/OpenCV-armeabi-v7a.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/OpenCV-armeabi-v7a.mk -------------------------------------------------------------------------------- /native/jni/OpenCV-armeabi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/OpenCV-armeabi.mk -------------------------------------------------------------------------------- /native/jni/OpenCV.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/OpenCV.mk -------------------------------------------------------------------------------- /native/jni/OpenCVConfig-version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/OpenCVConfig-version.cmake -------------------------------------------------------------------------------- /native/jni/OpenCVConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/OpenCVConfig.cmake -------------------------------------------------------------------------------- /native/jni/abi-armeabi-v7a/OpenCVConfig-version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/abi-armeabi-v7a/OpenCVConfig-version.cmake -------------------------------------------------------------------------------- /native/jni/abi-armeabi-v7a/OpenCVConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/abi-armeabi-v7a/OpenCVConfig.cmake -------------------------------------------------------------------------------- /native/jni/abi-armeabi-v7a/OpenCVModules-release.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/abi-armeabi-v7a/OpenCVModules-release.cmake -------------------------------------------------------------------------------- /native/jni/abi-armeabi-v7a/OpenCVModules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/abi-armeabi-v7a/OpenCVModules.cmake -------------------------------------------------------------------------------- /native/jni/abi-armeabi/OpenCVConfig-version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/abi-armeabi/OpenCVConfig-version.cmake -------------------------------------------------------------------------------- /native/jni/abi-armeabi/OpenCVConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/abi-armeabi/OpenCVConfig.cmake -------------------------------------------------------------------------------- /native/jni/abi-armeabi/OpenCVModules-release.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/abi-armeabi/OpenCVModules-release.cmake -------------------------------------------------------------------------------- /native/jni/abi-armeabi/OpenCVModules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/abi-armeabi/OpenCVModules.cmake -------------------------------------------------------------------------------- /native/jni/android.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/android.toolchain.cmake -------------------------------------------------------------------------------- /native/jni/include/opencv/cv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv/cv.h -------------------------------------------------------------------------------- /native/jni/include/opencv/cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv/cv.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv/cvaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv/cvaux.h -------------------------------------------------------------------------------- /native/jni/include/opencv/cvaux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv/cvaux.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv/cvwimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv/cvwimage.h -------------------------------------------------------------------------------- /native/jni/include/opencv/cxcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv/cxcore.h -------------------------------------------------------------------------------- /native/jni/include/opencv/cxcore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv/cxcore.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv/cxeigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv/cxeigen.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv/cxmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv/cxmisc.h -------------------------------------------------------------------------------- /native/jni/include/opencv/highgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv/highgui.h -------------------------------------------------------------------------------- /native/jni/include/opencv/ml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv/ml.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/calib3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/calib3d.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/calib3d/calib3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/calib3d/calib3d.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/calib3d/calib3d_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/calib3d/calib3d_c.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/affine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/affine.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/base.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/bufferpool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/bufferpool.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/core.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/core_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/core_c.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda.inl.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/block.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/border_interpolate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/border_interpolate.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/color.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/common.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/datamov_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/datamov_utils.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/detail/color_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/detail/color_detail.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/detail/reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/detail/reduce.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/detail/reduce_key_val.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/detail/reduce_key_val.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/detail/transform_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/detail/transform_detail.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/detail/type_traits_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/detail/type_traits_detail.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/detail/vec_distance_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/detail/vec_distance_detail.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/dynamic_smem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/dynamic_smem.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/emulation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/emulation.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/filters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/filters.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/funcattrib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/funcattrib.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/functional.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/limits.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/reduce.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/saturate_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/saturate_cast.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/scan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/scan.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/simd_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/simd_functions.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/transform.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/type_traits.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/utility.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/vec_distance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/vec_distance.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/vec_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/vec_math.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/vec_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/vec_traits.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/warp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/warp.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/warp_reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/warp_reduce.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda/warp_shuffle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda/warp_shuffle.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda_stream_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda_stream_accessor.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cuda_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cuda_types.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cvdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cvdef.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cvstd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cvstd.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/cvstd.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/cvstd.inl.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/directx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/directx.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/eigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/eigen.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/fast_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/fast_math.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/hal/hal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/hal/hal.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/hal/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/hal/interface.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/hal/intrin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/hal/intrin.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/hal/intrin_cpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/hal/intrin_cpp.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/hal/intrin_neon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/hal/intrin_neon.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/hal/intrin_sse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/hal/intrin_sse.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/ippasync.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/ippasync.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/mat.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/mat.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/mat.inl.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/matx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/matx.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/neon_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/neon_utils.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/ocl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/ocl.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/ocl_genbase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/ocl_genbase.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/opengl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/opengl.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/operations.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/optim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/optim.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/ovx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/ovx.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/persistence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/persistence.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/private.cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/private.cuda.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/private.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/ptr.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/ptr.inl.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/saturate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/saturate.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/sse_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/sse_utils.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/traits.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/types.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/types_c.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/utility.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/va_intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/va_intel.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/version.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/core/wimage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/core/wimage.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/cvconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/cvconfig.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/features2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/features2d.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/features2d/features2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/features2d/features2d.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/all_indices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/all_indices.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/allocator.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/any.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/autotuned_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/autotuned_index.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/composite_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/composite_index.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/config.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/defines.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/dist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/dist.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/dummy.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/dynamic_bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/dynamic_bitset.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/flann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/flann.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/flann_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/flann_base.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/general.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/ground_truth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/ground_truth.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/hdf5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/hdf5.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/heap.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/hierarchical_clustering_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/hierarchical_clustering_index.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/index_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/index_testing.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/kdtree_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/kdtree_index.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/kdtree_single_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/kdtree_single_index.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/kmeans_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/kmeans_index.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/linear_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/linear_index.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/logger.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/lsh_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/lsh_index.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/lsh_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/lsh_table.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/matrix.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/miniflann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/miniflann.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/nn_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/nn_index.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/object_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/object_factory.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/params.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/random.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/result_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/result_set.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/sampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/sampling.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/saving.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/saving.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/simplex_downhill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/simplex_downhill.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/flann/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/flann/timer.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/highgui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/highgui.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/highgui/highgui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/highgui/highgui.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/highgui/highgui_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/highgui/highgui_c.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/imgcodecs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/imgcodecs.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/imgcodecs/imgcodecs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/imgcodecs/imgcodecs.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/imgcodecs/imgcodecs_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/imgcodecs/imgcodecs_c.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/imgcodecs/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/imgcodecs/ios.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/imgproc.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/imgproc/detail/distortion_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/imgproc/detail/distortion_model.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/imgproc/hal/hal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/imgproc/hal/hal.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/imgproc/hal/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/imgproc/hal/interface.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/imgproc/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/imgproc/imgproc.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/imgproc/imgproc_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/imgproc/imgproc_c.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/imgproc/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/imgproc/types_c.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/ml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/ml.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/ml/ml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/ml/ml.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/objdetect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/objdetect.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/objdetect/detection_based_tracker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/objdetect/detection_based_tracker.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/objdetect/objdetect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/objdetect/objdetect.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/objdetect/objdetect_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/objdetect/objdetect_c.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/opencv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/opencv.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/opencv_modules.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/opencv_modules.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/photo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/photo.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/photo/cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/photo/cuda.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/photo/photo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/photo/photo.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/photo/photo_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/photo/photo_c.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/shape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/shape.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/shape/emdL1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/shape/emdL1.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/shape/hist_cost.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/shape/hist_cost.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/shape/shape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/shape/shape.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/shape/shape_distance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/shape/shape_distance.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/shape/shape_transformer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/shape/shape_transformer.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/stitching.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/stitching.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/stitching/detail/autocalib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/stitching/detail/autocalib.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/stitching/detail/blenders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/stitching/detail/blenders.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/stitching/detail/camera.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/stitching/detail/camera.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/stitching/detail/exposure_compensate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/stitching/detail/exposure_compensate.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/stitching/detail/matchers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/stitching/detail/matchers.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/stitching/detail/motion_estimators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/stitching/detail/motion_estimators.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/stitching/detail/seam_finders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/stitching/detail/seam_finders.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/stitching/detail/timelapsers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/stitching/detail/timelapsers.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/stitching/detail/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/stitching/detail/util.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/stitching/detail/util_inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/stitching/detail/util_inl.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/stitching/detail/warpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/stitching/detail/warpers.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/stitching/detail/warpers_inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/stitching/detail/warpers_inl.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/stitching/warpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/stitching/warpers.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/superres.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/superres.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/superres/optical_flow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/superres/optical_flow.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/video.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/video/background_segm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/video/background_segm.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/video/tracking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/video/tracking.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/video/tracking_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/video/tracking_c.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/video/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/video/video.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/videoio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/videoio.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/videoio/cap_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/videoio/cap_ios.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/videoio/videoio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/videoio/videoio.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/videoio/videoio_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/videoio/videoio_c.h -------------------------------------------------------------------------------- /native/jni/include/opencv2/videostab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/videostab.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/videostab/deblurring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/videostab/deblurring.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/videostab/fast_marching.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/videostab/fast_marching.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/videostab/fast_marching_inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/videostab/fast_marching_inl.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/videostab/frame_source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/videostab/frame_source.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/videostab/global_motion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/videostab/global_motion.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/videostab/inpainting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/videostab/inpainting.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/videostab/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/videostab/log.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/videostab/motion_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/videostab/motion_core.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/videostab/motion_stabilizing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/videostab/motion_stabilizing.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/videostab/optical_flow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/videostab/optical_flow.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/videostab/outlier_rejection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/videostab/outlier_rejection.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/videostab/ring_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/videostab/ring_buffer.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/videostab/stabilizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/videostab/stabilizer.hpp -------------------------------------------------------------------------------- /native/jni/include/opencv2/videostab/wobble_suppression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/jni/include/opencv2/videostab/wobble_suppression.hpp -------------------------------------------------------------------------------- /native/libs/armeabi-v7a/libopencv_calib3d.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi-v7a/libopencv_calib3d.a -------------------------------------------------------------------------------- /native/libs/armeabi-v7a/libopencv_core.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi-v7a/libopencv_core.a -------------------------------------------------------------------------------- /native/libs/armeabi-v7a/libopencv_features2d.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi-v7a/libopencv_features2d.a -------------------------------------------------------------------------------- /native/libs/armeabi-v7a/libopencv_flann.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi-v7a/libopencv_flann.a -------------------------------------------------------------------------------- /native/libs/armeabi-v7a/libopencv_highgui.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi-v7a/libopencv_highgui.a -------------------------------------------------------------------------------- /native/libs/armeabi-v7a/libopencv_imgcodecs.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi-v7a/libopencv_imgcodecs.a -------------------------------------------------------------------------------- /native/libs/armeabi-v7a/libopencv_imgproc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi-v7a/libopencv_imgproc.a -------------------------------------------------------------------------------- /native/libs/armeabi-v7a/libopencv_java3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi-v7a/libopencv_java3.so -------------------------------------------------------------------------------- /native/libs/armeabi-v7a/libopencv_ml.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi-v7a/libopencv_ml.a -------------------------------------------------------------------------------- /native/libs/armeabi-v7a/libopencv_objdetect.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi-v7a/libopencv_objdetect.a -------------------------------------------------------------------------------- /native/libs/armeabi-v7a/libopencv_photo.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi-v7a/libopencv_photo.a -------------------------------------------------------------------------------- /native/libs/armeabi-v7a/libopencv_shape.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi-v7a/libopencv_shape.a -------------------------------------------------------------------------------- /native/libs/armeabi-v7a/libopencv_stitching.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi-v7a/libopencv_stitching.a -------------------------------------------------------------------------------- /native/libs/armeabi-v7a/libopencv_superres.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi-v7a/libopencv_superres.a -------------------------------------------------------------------------------- /native/libs/armeabi-v7a/libopencv_video.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi-v7a/libopencv_video.a -------------------------------------------------------------------------------- /native/libs/armeabi-v7a/libopencv_videoio.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi-v7a/libopencv_videoio.a -------------------------------------------------------------------------------- /native/libs/armeabi-v7a/libopencv_videostab.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi-v7a/libopencv_videostab.a -------------------------------------------------------------------------------- /native/libs/armeabi/libopencv_calib3d.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi/libopencv_calib3d.a -------------------------------------------------------------------------------- /native/libs/armeabi/libopencv_core.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi/libopencv_core.a -------------------------------------------------------------------------------- /native/libs/armeabi/libopencv_features2d.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi/libopencv_features2d.a -------------------------------------------------------------------------------- /native/libs/armeabi/libopencv_flann.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi/libopencv_flann.a -------------------------------------------------------------------------------- /native/libs/armeabi/libopencv_highgui.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi/libopencv_highgui.a -------------------------------------------------------------------------------- /native/libs/armeabi/libopencv_imgcodecs.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi/libopencv_imgcodecs.a -------------------------------------------------------------------------------- /native/libs/armeabi/libopencv_imgproc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi/libopencv_imgproc.a -------------------------------------------------------------------------------- /native/libs/armeabi/libopencv_java3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi/libopencv_java3.so -------------------------------------------------------------------------------- /native/libs/armeabi/libopencv_ml.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi/libopencv_ml.a -------------------------------------------------------------------------------- /native/libs/armeabi/libopencv_objdetect.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi/libopencv_objdetect.a -------------------------------------------------------------------------------- /native/libs/armeabi/libopencv_photo.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi/libopencv_photo.a -------------------------------------------------------------------------------- /native/libs/armeabi/libopencv_shape.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi/libopencv_shape.a -------------------------------------------------------------------------------- /native/libs/armeabi/libopencv_stitching.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi/libopencv_stitching.a -------------------------------------------------------------------------------- /native/libs/armeabi/libopencv_superres.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi/libopencv_superres.a -------------------------------------------------------------------------------- /native/libs/armeabi/libopencv_video.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi/libopencv_video.a -------------------------------------------------------------------------------- /native/libs/armeabi/libopencv_videoio.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi/libopencv_videoio.a -------------------------------------------------------------------------------- /native/libs/armeabi/libopencv_videostab.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/native/libs/armeabi/libopencv_videostab.a -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/screenshots/4.png -------------------------------------------------------------------------------- /screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/screenshots/5.png -------------------------------------------------------------------------------- /screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCherryGZ/AverageFaceDemo/HEAD/screenshots/6.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------