diff --git a/.gitignore b/.gitignore index cc6ccda..cb0b9db 100755 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,134 @@ *.iml .gradle /local.properties -/.idea/caches/build_file_checksums.ser +/.idea/caches /.idea/libraries /.idea/modules.xml /.idea/workspace.xml +/.idea/navEditor.xml +/.idea/assetWizardSettings.xml .DS_Store /build /captures .externalNativeBuild +.cxx +local.properties +# Created by .ignore support plugin (hsz.mobi) +### NetBeans template +nbproject/private/ +build/ +nbbuild/ +dist/ +nbdist/ +nbactions.xml +nb-configuration.xml + +# Mac OS X Garbage +.DS_Store +Thumbs.db + +.idea/ + +### Android Studio +/jniLibs +mobile/mobile.iml +mobile/mobile.iml +tv/tv.iml +app/app.iml +app/*.iml +*.iml +mobile/*.iml +tv/*.iml +.idea/workspace.xml +.idea/libraries +.idea/ +.idea +/build +/captures +### Android template +# Built application files +*.apk +*.ap_ +/build +/captures +# Files for the Dalvik VM +*.dex + +# Java class files +*.class + +# Generated files +bin/ +gen/ + +# Gradle files +.gradle/ + +# Local configuration file (sdk path, etc) +local.properties + +# Proguard folder generated by Eclipse +proguard/ + +# Log Files +*.log + + +### Java template +*.class + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.ear + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* + + +### Eclipse template +*.pydevproject +.metadata +.gradle +bin/ +tmp/ +*.tmp +*.bak +*.swp +*~.nib +.settings/ +.loadpath +/build +/captures +# External tool builders +.externalToolBuilders/ + +# Locally stored "Eclipse launch configurations" +*.launch + +# CDT-specific +.cproject + +# PDT-specific +.buildpath + +# sbteclipse plugin +.target + +# TeXlipse plugin +.texlipse + +# Android Studio +*.iml + +# Keep external libs +!app/libs/*.jar + +# script output +check-dpi.txt* + +# spring output +target \ No newline at end of file diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml deleted file mode 100644 index 30aa626..0000000 --- a/.idea/codeStyles/Project.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml deleted file mode 100644 index 7ac24c7..0000000 --- a/.idea/gradle.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index b0c7b20..0000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml deleted file mode 100644 index 7f68460..0000000 --- a/.idea/runConfigurations.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 35eb1dd..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle index 4af2c9f..5b5f228 100755 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,20 +1,15 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 28 + compileSdkVersion 32 defaultConfig { applicationId "com.lightweh.facedetection" minSdkVersion 21 - targetSdkVersion 28 + targetSdkVersion 32 versionCode 1 versionName "1.0" - testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" - externalNativeBuild { - cmake { - arguments "-DCMAKE_BUILD_TYPE=Release" - cppFlags "-std=c++11 -frtti -fexceptions" - } - } + testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' + ndk { abiFilters "armeabi", "armeabi-v7a", "arm64-v8a" } } buildTypes { release { @@ -22,23 +17,15 @@ android { proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } - externalNativeBuild { - cmake { - path "CMakeLists.txt" - } - } - sourceSets { - main { - jniLibs.srcDirs = ["libs"] - } - } } dependencies { - implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation 'com.android.support:appcompat-v7:28.0.0-alpha1' - implementation 'com.android.support.constraint:constraint-layout:1.1.3' testImplementation 'junit:junit:4.12' - androidTestImplementation 'com.android.support.test:runner:1.0.2' - androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' + androidTestImplementation 'androidx.test.ext:junit:1.1.1' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0' + implementation fileTree(dir: 'libs', include: ['*.jar']) + implementation 'androidx.appcompat:appcompat:1.0.0' + implementation 'androidx.constraintlayout:constraintlayout:1.1.3' + implementation project(path: ':opencv_face_detect')//local + implementation 'com.github.xGonZh10n:opencv_face_detect:0.0.1'//maven repo : github or mavenLocal or mavenCentral or nexus } diff --git a/app/src/androidTest/java/com/lightweh/facedetection/ExampleInstrumentedTest.java b/app/src/androidTest/java/com/lightweh/facedetection/ExampleInstrumentedTest.java index 4473b6d..3f39577 100755 --- a/app/src/androidTest/java/com/lightweh/facedetection/ExampleInstrumentedTest.java +++ b/app/src/androidTest/java/com/lightweh/facedetection/ExampleInstrumentedTest.java @@ -1,8 +1,8 @@ package com.lightweh.facedetection; import android.content.Context; -import android.support.test.InstrumentationRegistry; -import android.support.test.runner.AndroidJUnit4; +import androidx.test.platform.app.InstrumentationRegistry; +import androidx.test.ext.junit.runners.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 776e82c..c0415c8 100755 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -11,7 +11,8 @@ android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/MaterialTheme"> - + diff --git a/app/src/main/java/com/lightweh/facedetection/CameraFragment.java b/app/src/main/java/com/lightweh/facedetection/CameraFragment.java index 0c517e0..ef6002f 100755 --- a/app/src/main/java/com/lightweh/facedetection/CameraFragment.java +++ b/app/src/main/java/com/lightweh/facedetection/CameraFragment.java @@ -23,9 +23,9 @@ import android.os.Bundle; import android.os.Handler; import android.os.HandlerThread; -import android.support.annotation.NonNull; -import android.support.v4.app.Fragment; -import android.support.v4.content.ContextCompat; +import androidx.annotation.NonNull; +import androidx.fragment.app.Fragment; +import androidx.core.content.ContextCompat; import android.util.Log; import android.util.Size; import android.util.SparseIntArray; diff --git a/app/src/main/java/com/lightweh/facedetection/MainActivity.java b/app/src/main/java/com/lightweh/facedetection/MainActivity.java index 584b86a..1432d33 100755 --- a/app/src/main/java/com/lightweh/facedetection/MainActivity.java +++ b/app/src/main/java/com/lightweh/facedetection/MainActivity.java @@ -3,7 +3,7 @@ import android.Manifest; import android.content.pm.PackageManager; import android.os.Build; -import android.support.v7.app.AppCompatActivity; +import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.widget.Toast; diff --git a/build.gradle b/build.gradle index 879b613..40550ed 100755 --- a/build.gradle +++ b/build.gradle @@ -1,17 +1,21 @@ -// Top-level build file where you can add configuration options common to all sub-projects/modules. - buildscript { - + ext { + agp_gradle = '7.0.4' + android_gradle_plugin_version = agp_gradle + kotlin_version = "1.7.20" + // coroutine + coroutine_version = "1.6.0" + kotlin_coroutines_version = coroutine_version + } repositories { + gradlePluginPortal() google() + mavenCentral() jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:3.2.1' - - - // NOTE: Do not place your application dependencies here; they belong - // in the individual module build.gradle files + classpath "com.android.tools.build:gradle:$agp_gradle" + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } @@ -19,6 +23,7 @@ allprojects { repositories { google() jcenter() + mavenCentral() } } diff --git a/gradle.properties b/gradle.properties index 9f85f38..461e8f6 100755 --- a/gradle.properties +++ b/gradle.properties @@ -6,6 +6,8 @@ # http://www.gradle.org/docs/current/userguide/build_environment.html # Specifies the JVM arguments used for the daemon process. # The setting is particularly useful for tweaking memory settings. +android.enableJetifier=true +android.useAndroidX=true org.gradle.jvmargs=-Xmx1536m # When configured, Gradle will run in incubating parallel mode. # This option should only be used with decoupled projects. More details, visit diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 9a4163a..aa991fc 100755 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/opencv_face_detect/.gitignore b/opencv_face_detect/.gitignore new file mode 100644 index 0000000..796b96d --- /dev/null +++ b/opencv_face_detect/.gitignore @@ -0,0 +1 @@ +/build diff --git a/app/CMakeLists.txt b/opencv_face_detect/CMakeLists.txt old mode 100755 new mode 100644 similarity index 95% rename from app/CMakeLists.txt rename to opencv_face_detect/CMakeLists.txt index f1234a2..bcb7f82 --- a/app/CMakeLists.txt +++ b/opencv_face_detect/CMakeLists.txt @@ -1,78 +1,78 @@ -# For more information about using CMake with Android Studio, read the -# documentation: https://d.android.com/studio/projects/add-native-code.html - -# Sets the minimum version of CMake required to build the native library. - -cmake_minimum_required(VERSION 3.4.1) - -# Creates and names a library, sets it as either STATIC -# or SHARED, and provides the relative paths to its source code. -# You can define multiple libraries, and CMake builds them for you. -# Gradle automatically packages shared libraries with your APK. - -# 设置native目录 -set(NATIVE_DIR ${CMAKE_SOURCE_DIR}/src/main/cpp) - -# 设置dlib -include(${NATIVE_DIR}/dlib/cmake) - -# 设置opencv include文件夹 -include_directories(${NATIVE_DIR}/opencv/jni/include) - -# 设置opencv so库 -add_library( - libopencv_java3 - SHARED - IMPORTED) - -set_target_properties( - libopencv_java3 - PROPERTIES - IMPORTED_LOCATION - ${NATIVE_DIR}/opencv/libs/${ANDROID_ABI}/libopencv_java3.so) - -# 将jni_common目录中所有文件名,存至SRC_LIST中 -AUX_SOURCE_DIRECTORY(${NATIVE_DIR}/jni_common SRC_LIST) - -add_library( # Sets the name of the library. - native-lib - - # Sets the library as a shared library. - SHARED - - # Provides a relative path to your source file(s). - - ${SRC_LIST} - src/main/cpp/face_detector.h - src/main/cpp/face_detector.cpp - src/main/cpp/native-lib.cpp) - -# Searches for a specified prebuilt library and stores the path as a -# variable. Because CMake includes system libraries in the search path by -# default, you only need to specify the name of the public NDK library -# you want to add. CMake verifies that the library exists before -# completing its build. - -find_library( # Sets the name of the path variable. - log-lib - - # Specifies the name of the NDK library that - # you want CMake to locate. - log) - -# Specifies libraries CMake should link to your target library. You -# can link multiple libraries, such as libraries you define in this -# build script, prebuilt third-party libraries, or system libraries. - -target_link_libraries( # Specifies the target library. - native-lib - dlib - libopencv_java3 - jnigraphics - # Links the target library to the log library - # included in the NDK. - ${log-lib}) - -# 指定release编译选项 -set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -s -O3 -Wall") +# For more information about using CMake with Android Studio, read the +# documentation: https://d.android.com/studio/projects/add-native-code.html + +# Sets the minimum version of CMake required to build the native library. + +cmake_minimum_required(VERSION 3.4.1) + +# Creates and names a library, sets it as either STATIC +# or SHARED, and provides the relative paths to its source code. +# You can define multiple libraries, and CMake builds them for you. +# Gradle automatically packages shared libraries with your APK. + +# 设置native目录 +set(NATIVE_DIR ${CMAKE_SOURCE_DIR}/src/main/cpp) + +# 设置dlib +include(${NATIVE_DIR}/dlib/cmake) + +# 设置opencv include文件夹 +include_directories(${NATIVE_DIR}/opencv/jni/include) + +# 设置opencv so库 +add_library( + libopencv_java3 + SHARED + IMPORTED) + +set_target_properties( + libopencv_java3 + PROPERTIES + IMPORTED_LOCATION + ${NATIVE_DIR}/opencv/libs/${ANDROID_ABI}/libopencv_java3.so) + +# 将jni_common目录中所有文件名,存至SRC_LIST中 +AUX_SOURCE_DIRECTORY(${NATIVE_DIR}/jni_common SRC_LIST) + +add_library( # Sets the name of the library. + facedetec-lib + + # Sets the library as a shared library. + SHARED + + # Provides a relative path to your source file(s). + + ${SRC_LIST} + src/main/cpp/face_detector.h + src/main/cpp/face_detector.cpp + src/main/cpp/native-lib.cpp) + +# Searches for a specified prebuilt library and stores the path as a +# variable. Because CMake includes system libraries in the search path by +# default, you only need to specify the name of the public NDK library +# you want to add. CMake verifies that the library exists before +# completing its build. + +find_library( # Sets the name of the path variable. + log-lib + + # Specifies the name of the NDK library that + # you want CMake to locate. + log) + +# Specifies libraries CMake should link to your target library. You +# can link multiple libraries, such as libraries you define in this +# build script, prebuilt third-party libraries, or system libraries. + +target_link_libraries( # Specifies the target library. + facedetec-lib + dlib + libopencv_java3 + jnigraphics + # Links the target library to the log library + # included in the NDK. + ${log-lib}) + +# 指定release编译选项 +set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -s -O3 -Wall") set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -s -O3 -Wall") \ No newline at end of file diff --git a/opencv_face_detect/build.gradle b/opencv_face_detect/build.gradle new file mode 100644 index 0000000..1cd1ae9 --- /dev/null +++ b/opencv_face_detect/build.gradle @@ -0,0 +1,106 @@ +apply plugin: 'com.android.library' +apply from: 'https://raw.githubusercontent.com/CKS-ROC/Useful_Gradle/master/version.gradle' +def version = this.ext.default_version() +this.project.version = version.versionName + +this.project.group = 'com.github.xGonZh10n' +this.description = this.project.name +this.archivesBaseName = 'opencv_face_detect' +ext { +// maven_properties_file = "properties_file path" +// maven_repo_name = 'XXXX' +// Sonatype_NexusUrl_Url="Nexus Url"+maven_repo_name + + isToRemoteRepo =true + isToInternalRepo = true + isToMavenLocal = true + isToGit = false + isSonatype_Nexus = true + + mavPublishToInternalRepo = true + mavRepoInternalUrl = "path/to/internal/repo" + + //FIXME library POM please modify those + scmUrl = 'https://github.com/xGonZh10n/FaceDetection' +// project git + developerid = 'xGonZh10n' + developername = 'xGonZh10n' + developeremail = 'hncl18@gmail.com' + scmConnectionUrl = 'https://github.com/xGonZh10n' + scmDeveloperConnectionUrl = 'https://github.com/xGonZh10n' + + mavDevelopers = ["xGonZh10n": "hncl18@gmail.com"] + mavSiteUrl = "https://github.com/xGonZh10n/FaceDetection" + mavGitUrl = mavSiteUrl + '.git' + mavLibraryLicenses = ["Apache-2.0": 'http://www.apache.org/licenses/LICENSE-2.0.txt'] + mavLibraryDescription = "opencv face detector" +} +android { + compileSdkVersion 32 + //TODO the NDK must pass build must set spec ndkVersion , can not over 21.X.XXXXXXX + ndkVersion "21.4.7075529"//20.0.5594570 21.0.6113669 21.1.6352462 21.4.7075529 21.4.7075529 //Ref : https://developer.android.com/studio/projects/install-ndk + defaultConfig { + minSdkVersion 21 + targetSdkVersion 32 + versionCode version.versionCode.toInteger() + versionName version.versionName + testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' + externalNativeBuild { + cmake { + arguments "-DCMAKE_BUILD_TYPE=Release" + cppFlags "-std=c++11 -frtti -fexceptions" + } + } + } + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } + externalNativeBuild { + cmake { + path "CMakeLists.txt" + } + } + sourceSets { + main { + } + } +} + +dependencies { + testImplementation 'junit:junit:4.12' + androidTestImplementation 'androidx.test.ext:junit:1.1.1' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0' + implementation fileTree(dir: 'libs', include: ['*.jar']) + implementation 'androidx.annotation:annotation:1.5.0' +} + +apply from: 'https://raw.githubusercontent.com/CMingTseng/Useful_Gradle/master/install.gradle' + +task increaseVersion { + group "version Tasks" + doLast { + this.project.ext.increaseVersion("") + } +} + +task increaseHotfixVersion { + group "version Tasks" + doLast { + this.project.ext.increaseHotfixVersion("") + } +} + +task decreaseVersion { + group "version Tasks" + doLast { + this.project.ext.decreaseVersion("") + } +} + +task showCurrentVersion { + group "version Tasks" + this.project.ext.currentVersion("") +} diff --git a/app/libs/arm64-v8a/libopencv_calib3d.a b/opencv_face_detect/libs/arm64-v8a/libopencv_calib3d.a similarity index 100% rename from app/libs/arm64-v8a/libopencv_calib3d.a rename to opencv_face_detect/libs/arm64-v8a/libopencv_calib3d.a diff --git a/app/libs/arm64-v8a/libopencv_core.a b/opencv_face_detect/libs/arm64-v8a/libopencv_core.a similarity index 100% rename from app/libs/arm64-v8a/libopencv_core.a rename to opencv_face_detect/libs/arm64-v8a/libopencv_core.a diff --git a/app/libs/arm64-v8a/libopencv_features2d.a b/opencv_face_detect/libs/arm64-v8a/libopencv_features2d.a similarity index 100% rename from app/libs/arm64-v8a/libopencv_features2d.a rename to opencv_face_detect/libs/arm64-v8a/libopencv_features2d.a diff --git a/app/libs/arm64-v8a/libopencv_flann.a b/opencv_face_detect/libs/arm64-v8a/libopencv_flann.a similarity index 100% rename from app/libs/arm64-v8a/libopencv_flann.a rename to opencv_face_detect/libs/arm64-v8a/libopencv_flann.a diff --git a/app/libs/arm64-v8a/libopencv_highgui.a b/opencv_face_detect/libs/arm64-v8a/libopencv_highgui.a similarity index 100% rename from app/libs/arm64-v8a/libopencv_highgui.a rename to opencv_face_detect/libs/arm64-v8a/libopencv_highgui.a diff --git a/app/libs/arm64-v8a/libopencv_imgcodecs.a b/opencv_face_detect/libs/arm64-v8a/libopencv_imgcodecs.a similarity index 100% rename from app/libs/arm64-v8a/libopencv_imgcodecs.a rename to opencv_face_detect/libs/arm64-v8a/libopencv_imgcodecs.a diff --git a/app/libs/arm64-v8a/libopencv_imgproc.a b/opencv_face_detect/libs/arm64-v8a/libopencv_imgproc.a similarity index 100% rename from app/libs/arm64-v8a/libopencv_imgproc.a rename to opencv_face_detect/libs/arm64-v8a/libopencv_imgproc.a diff --git a/app/libs/arm64-v8a/libopencv_java3.so b/opencv_face_detect/libs/arm64-v8a/libopencv_java3.so similarity index 100% rename from app/libs/arm64-v8a/libopencv_java3.so rename to opencv_face_detect/libs/arm64-v8a/libopencv_java3.so diff --git a/app/libs/arm64-v8a/libopencv_ml.a b/opencv_face_detect/libs/arm64-v8a/libopencv_ml.a similarity index 100% rename from app/libs/arm64-v8a/libopencv_ml.a rename to opencv_face_detect/libs/arm64-v8a/libopencv_ml.a diff --git a/app/libs/arm64-v8a/libopencv_objdetect.a b/opencv_face_detect/libs/arm64-v8a/libopencv_objdetect.a similarity index 100% rename from app/libs/arm64-v8a/libopencv_objdetect.a rename to opencv_face_detect/libs/arm64-v8a/libopencv_objdetect.a diff --git a/app/libs/arm64-v8a/libopencv_photo.a b/opencv_face_detect/libs/arm64-v8a/libopencv_photo.a similarity index 100% rename from app/libs/arm64-v8a/libopencv_photo.a rename to opencv_face_detect/libs/arm64-v8a/libopencv_photo.a diff --git a/app/libs/arm64-v8a/libopencv_shape.a b/opencv_face_detect/libs/arm64-v8a/libopencv_shape.a similarity index 100% rename from app/libs/arm64-v8a/libopencv_shape.a rename to opencv_face_detect/libs/arm64-v8a/libopencv_shape.a diff --git a/app/libs/arm64-v8a/libopencv_stitching.a b/opencv_face_detect/libs/arm64-v8a/libopencv_stitching.a similarity index 100% rename from app/libs/arm64-v8a/libopencv_stitching.a rename to opencv_face_detect/libs/arm64-v8a/libopencv_stitching.a diff --git a/app/libs/arm64-v8a/libopencv_superres.a b/opencv_face_detect/libs/arm64-v8a/libopencv_superres.a similarity index 100% rename from app/libs/arm64-v8a/libopencv_superres.a rename to opencv_face_detect/libs/arm64-v8a/libopencv_superres.a diff --git a/app/libs/arm64-v8a/libopencv_video.a b/opencv_face_detect/libs/arm64-v8a/libopencv_video.a similarity index 100% rename from app/libs/arm64-v8a/libopencv_video.a rename to opencv_face_detect/libs/arm64-v8a/libopencv_video.a diff --git a/app/libs/arm64-v8a/libopencv_videoio.a b/opencv_face_detect/libs/arm64-v8a/libopencv_videoio.a similarity index 100% rename from app/libs/arm64-v8a/libopencv_videoio.a rename to opencv_face_detect/libs/arm64-v8a/libopencv_videoio.a diff --git a/app/libs/arm64-v8a/libopencv_videostab.a b/opencv_face_detect/libs/arm64-v8a/libopencv_videostab.a similarity index 100% rename from app/libs/arm64-v8a/libopencv_videostab.a rename to opencv_face_detect/libs/arm64-v8a/libopencv_videostab.a diff --git a/app/libs/armeabi-v7a/libopencv_calib3d.a b/opencv_face_detect/libs/armeabi-v7a/libopencv_calib3d.a similarity index 100% rename from app/libs/armeabi-v7a/libopencv_calib3d.a rename to opencv_face_detect/libs/armeabi-v7a/libopencv_calib3d.a diff --git a/app/libs/armeabi-v7a/libopencv_core.a b/opencv_face_detect/libs/armeabi-v7a/libopencv_core.a similarity index 100% rename from app/libs/armeabi-v7a/libopencv_core.a rename to opencv_face_detect/libs/armeabi-v7a/libopencv_core.a diff --git a/app/libs/armeabi-v7a/libopencv_features2d.a b/opencv_face_detect/libs/armeabi-v7a/libopencv_features2d.a similarity index 100% rename from app/libs/armeabi-v7a/libopencv_features2d.a rename to opencv_face_detect/libs/armeabi-v7a/libopencv_features2d.a diff --git a/app/libs/armeabi-v7a/libopencv_flann.a b/opencv_face_detect/libs/armeabi-v7a/libopencv_flann.a similarity index 100% rename from app/libs/armeabi-v7a/libopencv_flann.a rename to opencv_face_detect/libs/armeabi-v7a/libopencv_flann.a diff --git a/app/libs/armeabi-v7a/libopencv_highgui.a b/opencv_face_detect/libs/armeabi-v7a/libopencv_highgui.a similarity index 100% rename from app/libs/armeabi-v7a/libopencv_highgui.a rename to opencv_face_detect/libs/armeabi-v7a/libopencv_highgui.a diff --git a/app/libs/armeabi-v7a/libopencv_imgcodecs.a b/opencv_face_detect/libs/armeabi-v7a/libopencv_imgcodecs.a similarity index 100% rename from app/libs/armeabi-v7a/libopencv_imgcodecs.a rename to opencv_face_detect/libs/armeabi-v7a/libopencv_imgcodecs.a diff --git a/app/libs/armeabi-v7a/libopencv_imgproc.a b/opencv_face_detect/libs/armeabi-v7a/libopencv_imgproc.a similarity index 100% rename from app/libs/armeabi-v7a/libopencv_imgproc.a rename to opencv_face_detect/libs/armeabi-v7a/libopencv_imgproc.a diff --git a/app/libs/armeabi-v7a/libopencv_java3.so b/opencv_face_detect/libs/armeabi-v7a/libopencv_java3.so similarity index 100% rename from app/libs/armeabi-v7a/libopencv_java3.so rename to opencv_face_detect/libs/armeabi-v7a/libopencv_java3.so diff --git a/app/libs/armeabi-v7a/libopencv_ml.a b/opencv_face_detect/libs/armeabi-v7a/libopencv_ml.a similarity index 100% rename from app/libs/armeabi-v7a/libopencv_ml.a rename to opencv_face_detect/libs/armeabi-v7a/libopencv_ml.a diff --git a/app/libs/armeabi-v7a/libopencv_objdetect.a b/opencv_face_detect/libs/armeabi-v7a/libopencv_objdetect.a similarity index 100% rename from app/libs/armeabi-v7a/libopencv_objdetect.a rename to opencv_face_detect/libs/armeabi-v7a/libopencv_objdetect.a diff --git a/app/libs/armeabi-v7a/libopencv_photo.a b/opencv_face_detect/libs/armeabi-v7a/libopencv_photo.a similarity index 100% rename from app/libs/armeabi-v7a/libopencv_photo.a rename to opencv_face_detect/libs/armeabi-v7a/libopencv_photo.a diff --git a/app/libs/armeabi-v7a/libopencv_shape.a b/opencv_face_detect/libs/armeabi-v7a/libopencv_shape.a similarity index 100% rename from app/libs/armeabi-v7a/libopencv_shape.a rename to opencv_face_detect/libs/armeabi-v7a/libopencv_shape.a diff --git a/app/libs/armeabi-v7a/libopencv_stitching.a b/opencv_face_detect/libs/armeabi-v7a/libopencv_stitching.a similarity index 100% rename from app/libs/armeabi-v7a/libopencv_stitching.a rename to opencv_face_detect/libs/armeabi-v7a/libopencv_stitching.a diff --git a/app/libs/armeabi-v7a/libopencv_superres.a b/opencv_face_detect/libs/armeabi-v7a/libopencv_superres.a similarity index 100% rename from app/libs/armeabi-v7a/libopencv_superres.a rename to opencv_face_detect/libs/armeabi-v7a/libopencv_superres.a diff --git a/app/libs/armeabi-v7a/libopencv_ts.a b/opencv_face_detect/libs/armeabi-v7a/libopencv_ts.a similarity index 100% rename from app/libs/armeabi-v7a/libopencv_ts.a rename to opencv_face_detect/libs/armeabi-v7a/libopencv_ts.a diff --git a/app/libs/armeabi-v7a/libopencv_video.a b/opencv_face_detect/libs/armeabi-v7a/libopencv_video.a similarity index 100% rename from app/libs/armeabi-v7a/libopencv_video.a rename to opencv_face_detect/libs/armeabi-v7a/libopencv_video.a diff --git a/app/libs/armeabi-v7a/libopencv_videoio.a b/opencv_face_detect/libs/armeabi-v7a/libopencv_videoio.a similarity index 100% rename from app/libs/armeabi-v7a/libopencv_videoio.a rename to opencv_face_detect/libs/armeabi-v7a/libopencv_videoio.a diff --git a/app/libs/armeabi-v7a/libopencv_videostab.a b/opencv_face_detect/libs/armeabi-v7a/libopencv_videostab.a similarity index 100% rename from app/libs/armeabi-v7a/libopencv_videostab.a rename to opencv_face_detect/libs/armeabi-v7a/libopencv_videostab.a diff --git a/app/libs/armeabi/libopencv_calib3d.a b/opencv_face_detect/libs/armeabi/libopencv_calib3d.a similarity index 100% rename from app/libs/armeabi/libopencv_calib3d.a rename to opencv_face_detect/libs/armeabi/libopencv_calib3d.a diff --git a/app/libs/armeabi/libopencv_core.a b/opencv_face_detect/libs/armeabi/libopencv_core.a similarity index 100% rename from app/libs/armeabi/libopencv_core.a rename to opencv_face_detect/libs/armeabi/libopencv_core.a diff --git a/app/libs/armeabi/libopencv_features2d.a b/opencv_face_detect/libs/armeabi/libopencv_features2d.a similarity index 100% rename from app/libs/armeabi/libopencv_features2d.a rename to opencv_face_detect/libs/armeabi/libopencv_features2d.a diff --git a/app/libs/armeabi/libopencv_flann.a b/opencv_face_detect/libs/armeabi/libopencv_flann.a similarity index 100% rename from app/libs/armeabi/libopencv_flann.a rename to opencv_face_detect/libs/armeabi/libopencv_flann.a diff --git a/app/libs/armeabi/libopencv_highgui.a b/opencv_face_detect/libs/armeabi/libopencv_highgui.a similarity index 100% rename from app/libs/armeabi/libopencv_highgui.a rename to opencv_face_detect/libs/armeabi/libopencv_highgui.a diff --git a/app/libs/armeabi/libopencv_imgcodecs.a b/opencv_face_detect/libs/armeabi/libopencv_imgcodecs.a similarity index 100% rename from app/libs/armeabi/libopencv_imgcodecs.a rename to opencv_face_detect/libs/armeabi/libopencv_imgcodecs.a diff --git a/app/libs/armeabi/libopencv_imgproc.a b/opencv_face_detect/libs/armeabi/libopencv_imgproc.a similarity index 100% rename from app/libs/armeabi/libopencv_imgproc.a rename to opencv_face_detect/libs/armeabi/libopencv_imgproc.a diff --git a/app/libs/armeabi/libopencv_java3.so b/opencv_face_detect/libs/armeabi/libopencv_java3.so similarity index 100% rename from app/libs/armeabi/libopencv_java3.so rename to opencv_face_detect/libs/armeabi/libopencv_java3.so diff --git a/app/libs/armeabi/libopencv_ml.a b/opencv_face_detect/libs/armeabi/libopencv_ml.a similarity index 100% rename from app/libs/armeabi/libopencv_ml.a rename to opencv_face_detect/libs/armeabi/libopencv_ml.a diff --git a/app/libs/armeabi/libopencv_objdetect.a b/opencv_face_detect/libs/armeabi/libopencv_objdetect.a similarity index 100% rename from app/libs/armeabi/libopencv_objdetect.a rename to opencv_face_detect/libs/armeabi/libopencv_objdetect.a diff --git a/app/libs/armeabi/libopencv_photo.a b/opencv_face_detect/libs/armeabi/libopencv_photo.a similarity index 100% rename from app/libs/armeabi/libopencv_photo.a rename to opencv_face_detect/libs/armeabi/libopencv_photo.a diff --git a/app/libs/armeabi/libopencv_shape.a b/opencv_face_detect/libs/armeabi/libopencv_shape.a similarity index 100% rename from app/libs/armeabi/libopencv_shape.a rename to opencv_face_detect/libs/armeabi/libopencv_shape.a diff --git a/app/libs/armeabi/libopencv_stitching.a b/opencv_face_detect/libs/armeabi/libopencv_stitching.a similarity index 100% rename from app/libs/armeabi/libopencv_stitching.a rename to opencv_face_detect/libs/armeabi/libopencv_stitching.a diff --git a/app/libs/armeabi/libopencv_superres.a b/opencv_face_detect/libs/armeabi/libopencv_superres.a similarity index 100% rename from app/libs/armeabi/libopencv_superres.a rename to opencv_face_detect/libs/armeabi/libopencv_superres.a diff --git a/app/libs/armeabi/libopencv_video.a b/opencv_face_detect/libs/armeabi/libopencv_video.a similarity index 100% rename from app/libs/armeabi/libopencv_video.a rename to opencv_face_detect/libs/armeabi/libopencv_video.a diff --git a/app/libs/armeabi/libopencv_videoio.a b/opencv_face_detect/libs/armeabi/libopencv_videoio.a similarity index 100% rename from app/libs/armeabi/libopencv_videoio.a rename to opencv_face_detect/libs/armeabi/libopencv_videoio.a diff --git a/app/libs/armeabi/libopencv_videostab.a b/opencv_face_detect/libs/armeabi/libopencv_videostab.a similarity index 100% rename from app/libs/armeabi/libopencv_videostab.a rename to opencv_face_detect/libs/armeabi/libopencv_videostab.a diff --git a/app/libs/mips/libopencv_calib3d.a b/opencv_face_detect/libs/mips/libopencv_calib3d.a similarity index 100% rename from app/libs/mips/libopencv_calib3d.a rename to opencv_face_detect/libs/mips/libopencv_calib3d.a diff --git a/app/libs/mips/libopencv_core.a b/opencv_face_detect/libs/mips/libopencv_core.a similarity index 100% rename from app/libs/mips/libopencv_core.a rename to opencv_face_detect/libs/mips/libopencv_core.a diff --git a/app/libs/mips/libopencv_features2d.a b/opencv_face_detect/libs/mips/libopencv_features2d.a similarity index 100% rename from app/libs/mips/libopencv_features2d.a rename to opencv_face_detect/libs/mips/libopencv_features2d.a diff --git a/app/libs/mips/libopencv_flann.a b/opencv_face_detect/libs/mips/libopencv_flann.a similarity index 100% rename from app/libs/mips/libopencv_flann.a rename to opencv_face_detect/libs/mips/libopencv_flann.a diff --git a/app/libs/mips/libopencv_highgui.a b/opencv_face_detect/libs/mips/libopencv_highgui.a similarity index 100% rename from app/libs/mips/libopencv_highgui.a rename to opencv_face_detect/libs/mips/libopencv_highgui.a diff --git a/app/libs/mips/libopencv_imgcodecs.a b/opencv_face_detect/libs/mips/libopencv_imgcodecs.a similarity index 100% rename from app/libs/mips/libopencv_imgcodecs.a rename to opencv_face_detect/libs/mips/libopencv_imgcodecs.a diff --git a/app/libs/mips/libopencv_imgproc.a b/opencv_face_detect/libs/mips/libopencv_imgproc.a similarity index 100% rename from app/libs/mips/libopencv_imgproc.a rename to opencv_face_detect/libs/mips/libopencv_imgproc.a diff --git a/app/libs/mips/libopencv_java3.so b/opencv_face_detect/libs/mips/libopencv_java3.so similarity index 100% rename from app/libs/mips/libopencv_java3.so rename to opencv_face_detect/libs/mips/libopencv_java3.so diff --git a/app/libs/mips/libopencv_ml.a b/opencv_face_detect/libs/mips/libopencv_ml.a similarity index 100% rename from app/libs/mips/libopencv_ml.a rename to opencv_face_detect/libs/mips/libopencv_ml.a diff --git a/app/libs/mips/libopencv_objdetect.a b/opencv_face_detect/libs/mips/libopencv_objdetect.a similarity index 100% rename from app/libs/mips/libopencv_objdetect.a rename to opencv_face_detect/libs/mips/libopencv_objdetect.a diff --git a/app/libs/mips/libopencv_photo.a b/opencv_face_detect/libs/mips/libopencv_photo.a similarity index 100% rename from app/libs/mips/libopencv_photo.a rename to opencv_face_detect/libs/mips/libopencv_photo.a diff --git a/app/libs/mips/libopencv_shape.a b/opencv_face_detect/libs/mips/libopencv_shape.a similarity index 100% rename from app/libs/mips/libopencv_shape.a rename to opencv_face_detect/libs/mips/libopencv_shape.a diff --git a/app/libs/mips/libopencv_stitching.a b/opencv_face_detect/libs/mips/libopencv_stitching.a similarity index 100% rename from app/libs/mips/libopencv_stitching.a rename to opencv_face_detect/libs/mips/libopencv_stitching.a diff --git a/app/libs/mips/libopencv_superres.a b/opencv_face_detect/libs/mips/libopencv_superres.a similarity index 100% rename from app/libs/mips/libopencv_superres.a rename to opencv_face_detect/libs/mips/libopencv_superres.a diff --git a/app/libs/mips/libopencv_video.a b/opencv_face_detect/libs/mips/libopencv_video.a similarity index 100% rename from app/libs/mips/libopencv_video.a rename to opencv_face_detect/libs/mips/libopencv_video.a diff --git a/app/libs/mips/libopencv_videoio.a b/opencv_face_detect/libs/mips/libopencv_videoio.a similarity index 100% rename from app/libs/mips/libopencv_videoio.a rename to opencv_face_detect/libs/mips/libopencv_videoio.a diff --git a/app/libs/mips/libopencv_videostab.a b/opencv_face_detect/libs/mips/libopencv_videostab.a similarity index 100% rename from app/libs/mips/libopencv_videostab.a rename to opencv_face_detect/libs/mips/libopencv_videostab.a diff --git a/app/libs/mips64/libopencv_calib3d.a b/opencv_face_detect/libs/mips64/libopencv_calib3d.a similarity index 100% rename from app/libs/mips64/libopencv_calib3d.a rename to opencv_face_detect/libs/mips64/libopencv_calib3d.a diff --git a/app/libs/mips64/libopencv_core.a b/opencv_face_detect/libs/mips64/libopencv_core.a similarity index 100% rename from app/libs/mips64/libopencv_core.a rename to opencv_face_detect/libs/mips64/libopencv_core.a diff --git a/app/libs/mips64/libopencv_features2d.a b/opencv_face_detect/libs/mips64/libopencv_features2d.a similarity index 100% rename from app/libs/mips64/libopencv_features2d.a rename to opencv_face_detect/libs/mips64/libopencv_features2d.a diff --git a/app/libs/mips64/libopencv_flann.a b/opencv_face_detect/libs/mips64/libopencv_flann.a similarity index 100% rename from app/libs/mips64/libopencv_flann.a rename to opencv_face_detect/libs/mips64/libopencv_flann.a diff --git a/app/libs/mips64/libopencv_highgui.a b/opencv_face_detect/libs/mips64/libopencv_highgui.a similarity index 100% rename from app/libs/mips64/libopencv_highgui.a rename to opencv_face_detect/libs/mips64/libopencv_highgui.a diff --git a/app/libs/mips64/libopencv_imgcodecs.a b/opencv_face_detect/libs/mips64/libopencv_imgcodecs.a similarity index 100% rename from app/libs/mips64/libopencv_imgcodecs.a rename to opencv_face_detect/libs/mips64/libopencv_imgcodecs.a diff --git a/app/libs/mips64/libopencv_imgproc.a b/opencv_face_detect/libs/mips64/libopencv_imgproc.a similarity index 100% rename from app/libs/mips64/libopencv_imgproc.a rename to opencv_face_detect/libs/mips64/libopencv_imgproc.a diff --git a/app/libs/mips64/libopencv_java3.so b/opencv_face_detect/libs/mips64/libopencv_java3.so similarity index 100% rename from app/libs/mips64/libopencv_java3.so rename to opencv_face_detect/libs/mips64/libopencv_java3.so diff --git a/app/libs/mips64/libopencv_ml.a b/opencv_face_detect/libs/mips64/libopencv_ml.a similarity index 100% rename from app/libs/mips64/libopencv_ml.a rename to opencv_face_detect/libs/mips64/libopencv_ml.a diff --git a/app/libs/mips64/libopencv_objdetect.a b/opencv_face_detect/libs/mips64/libopencv_objdetect.a similarity index 100% rename from app/libs/mips64/libopencv_objdetect.a rename to opencv_face_detect/libs/mips64/libopencv_objdetect.a diff --git a/app/libs/mips64/libopencv_photo.a b/opencv_face_detect/libs/mips64/libopencv_photo.a similarity index 100% rename from app/libs/mips64/libopencv_photo.a rename to opencv_face_detect/libs/mips64/libopencv_photo.a diff --git a/app/libs/mips64/libopencv_shape.a b/opencv_face_detect/libs/mips64/libopencv_shape.a similarity index 100% rename from app/libs/mips64/libopencv_shape.a rename to opencv_face_detect/libs/mips64/libopencv_shape.a diff --git a/app/libs/mips64/libopencv_stitching.a b/opencv_face_detect/libs/mips64/libopencv_stitching.a similarity index 100% rename from app/libs/mips64/libopencv_stitching.a rename to opencv_face_detect/libs/mips64/libopencv_stitching.a diff --git a/app/libs/mips64/libopencv_superres.a b/opencv_face_detect/libs/mips64/libopencv_superres.a similarity index 100% rename from app/libs/mips64/libopencv_superres.a rename to opencv_face_detect/libs/mips64/libopencv_superres.a diff --git a/app/libs/mips64/libopencv_video.a b/opencv_face_detect/libs/mips64/libopencv_video.a similarity index 100% rename from app/libs/mips64/libopencv_video.a rename to opencv_face_detect/libs/mips64/libopencv_video.a diff --git a/app/libs/mips64/libopencv_videoio.a b/opencv_face_detect/libs/mips64/libopencv_videoio.a similarity index 100% rename from app/libs/mips64/libopencv_videoio.a rename to opencv_face_detect/libs/mips64/libopencv_videoio.a diff --git a/app/libs/mips64/libopencv_videostab.a b/opencv_face_detect/libs/mips64/libopencv_videostab.a similarity index 100% rename from app/libs/mips64/libopencv_videostab.a rename to opencv_face_detect/libs/mips64/libopencv_videostab.a diff --git a/app/libs/x86/libopencv_calib3d.a b/opencv_face_detect/libs/x86/libopencv_calib3d.a similarity index 100% rename from app/libs/x86/libopencv_calib3d.a rename to opencv_face_detect/libs/x86/libopencv_calib3d.a diff --git a/app/libs/x86/libopencv_core.a b/opencv_face_detect/libs/x86/libopencv_core.a similarity index 100% rename from app/libs/x86/libopencv_core.a rename to opencv_face_detect/libs/x86/libopencv_core.a diff --git a/app/libs/x86/libopencv_features2d.a b/opencv_face_detect/libs/x86/libopencv_features2d.a similarity index 100% rename from app/libs/x86/libopencv_features2d.a rename to opencv_face_detect/libs/x86/libopencv_features2d.a diff --git a/app/libs/x86/libopencv_flann.a b/opencv_face_detect/libs/x86/libopencv_flann.a similarity index 100% rename from app/libs/x86/libopencv_flann.a rename to opencv_face_detect/libs/x86/libopencv_flann.a diff --git a/app/libs/x86/libopencv_highgui.a b/opencv_face_detect/libs/x86/libopencv_highgui.a similarity index 100% rename from app/libs/x86/libopencv_highgui.a rename to opencv_face_detect/libs/x86/libopencv_highgui.a diff --git a/app/libs/x86/libopencv_imgcodecs.a b/opencv_face_detect/libs/x86/libopencv_imgcodecs.a similarity index 100% rename from app/libs/x86/libopencv_imgcodecs.a rename to opencv_face_detect/libs/x86/libopencv_imgcodecs.a diff --git a/app/libs/x86/libopencv_imgproc.a b/opencv_face_detect/libs/x86/libopencv_imgproc.a similarity index 100% rename from app/libs/x86/libopencv_imgproc.a rename to opencv_face_detect/libs/x86/libopencv_imgproc.a diff --git a/app/libs/x86/libopencv_java3.so b/opencv_face_detect/libs/x86/libopencv_java3.so similarity index 100% rename from app/libs/x86/libopencv_java3.so rename to opencv_face_detect/libs/x86/libopencv_java3.so diff --git a/app/libs/x86/libopencv_ml.a b/opencv_face_detect/libs/x86/libopencv_ml.a similarity index 100% rename from app/libs/x86/libopencv_ml.a rename to opencv_face_detect/libs/x86/libopencv_ml.a diff --git a/app/libs/x86/libopencv_objdetect.a b/opencv_face_detect/libs/x86/libopencv_objdetect.a similarity index 100% rename from app/libs/x86/libopencv_objdetect.a rename to opencv_face_detect/libs/x86/libopencv_objdetect.a diff --git a/app/libs/x86/libopencv_photo.a b/opencv_face_detect/libs/x86/libopencv_photo.a similarity index 100% rename from app/libs/x86/libopencv_photo.a rename to opencv_face_detect/libs/x86/libopencv_photo.a diff --git a/app/libs/x86/libopencv_shape.a b/opencv_face_detect/libs/x86/libopencv_shape.a similarity index 100% rename from app/libs/x86/libopencv_shape.a rename to opencv_face_detect/libs/x86/libopencv_shape.a diff --git a/app/libs/x86/libopencv_stitching.a b/opencv_face_detect/libs/x86/libopencv_stitching.a similarity index 100% rename from app/libs/x86/libopencv_stitching.a rename to opencv_face_detect/libs/x86/libopencv_stitching.a diff --git a/app/libs/x86/libopencv_superres.a b/opencv_face_detect/libs/x86/libopencv_superres.a similarity index 100% rename from app/libs/x86/libopencv_superres.a rename to opencv_face_detect/libs/x86/libopencv_superres.a diff --git a/app/libs/x86/libopencv_video.a b/opencv_face_detect/libs/x86/libopencv_video.a similarity index 100% rename from app/libs/x86/libopencv_video.a rename to opencv_face_detect/libs/x86/libopencv_video.a diff --git a/app/libs/x86/libopencv_videoio.a b/opencv_face_detect/libs/x86/libopencv_videoio.a similarity index 100% rename from app/libs/x86/libopencv_videoio.a rename to opencv_face_detect/libs/x86/libopencv_videoio.a diff --git a/app/libs/x86/libopencv_videostab.a b/opencv_face_detect/libs/x86/libopencv_videostab.a similarity index 100% rename from app/libs/x86/libopencv_videostab.a rename to opencv_face_detect/libs/x86/libopencv_videostab.a diff --git a/app/libs/x86_64/libopencv_calib3d.a b/opencv_face_detect/libs/x86_64/libopencv_calib3d.a similarity index 100% rename from app/libs/x86_64/libopencv_calib3d.a rename to opencv_face_detect/libs/x86_64/libopencv_calib3d.a diff --git a/app/libs/x86_64/libopencv_core.a b/opencv_face_detect/libs/x86_64/libopencv_core.a similarity index 100% rename from app/libs/x86_64/libopencv_core.a rename to opencv_face_detect/libs/x86_64/libopencv_core.a diff --git a/app/libs/x86_64/libopencv_features2d.a b/opencv_face_detect/libs/x86_64/libopencv_features2d.a similarity index 100% rename from app/libs/x86_64/libopencv_features2d.a rename to opencv_face_detect/libs/x86_64/libopencv_features2d.a diff --git a/app/libs/x86_64/libopencv_flann.a b/opencv_face_detect/libs/x86_64/libopencv_flann.a similarity index 100% rename from app/libs/x86_64/libopencv_flann.a rename to opencv_face_detect/libs/x86_64/libopencv_flann.a diff --git a/app/libs/x86_64/libopencv_highgui.a b/opencv_face_detect/libs/x86_64/libopencv_highgui.a similarity index 100% rename from app/libs/x86_64/libopencv_highgui.a rename to opencv_face_detect/libs/x86_64/libopencv_highgui.a diff --git a/app/libs/x86_64/libopencv_imgcodecs.a b/opencv_face_detect/libs/x86_64/libopencv_imgcodecs.a similarity index 100% rename from app/libs/x86_64/libopencv_imgcodecs.a rename to opencv_face_detect/libs/x86_64/libopencv_imgcodecs.a diff --git a/app/libs/x86_64/libopencv_imgproc.a b/opencv_face_detect/libs/x86_64/libopencv_imgproc.a similarity index 100% rename from app/libs/x86_64/libopencv_imgproc.a rename to opencv_face_detect/libs/x86_64/libopencv_imgproc.a diff --git a/app/libs/x86_64/libopencv_java3.so b/opencv_face_detect/libs/x86_64/libopencv_java3.so similarity index 100% rename from app/libs/x86_64/libopencv_java3.so rename to opencv_face_detect/libs/x86_64/libopencv_java3.so diff --git a/app/libs/x86_64/libopencv_ml.a b/opencv_face_detect/libs/x86_64/libopencv_ml.a similarity index 100% rename from app/libs/x86_64/libopencv_ml.a rename to opencv_face_detect/libs/x86_64/libopencv_ml.a diff --git a/app/libs/x86_64/libopencv_objdetect.a b/opencv_face_detect/libs/x86_64/libopencv_objdetect.a similarity index 100% rename from app/libs/x86_64/libopencv_objdetect.a rename to opencv_face_detect/libs/x86_64/libopencv_objdetect.a diff --git a/app/libs/x86_64/libopencv_photo.a b/opencv_face_detect/libs/x86_64/libopencv_photo.a similarity index 100% rename from app/libs/x86_64/libopencv_photo.a rename to opencv_face_detect/libs/x86_64/libopencv_photo.a diff --git a/app/libs/x86_64/libopencv_shape.a b/opencv_face_detect/libs/x86_64/libopencv_shape.a similarity index 100% rename from app/libs/x86_64/libopencv_shape.a rename to opencv_face_detect/libs/x86_64/libopencv_shape.a diff --git a/app/libs/x86_64/libopencv_stitching.a b/opencv_face_detect/libs/x86_64/libopencv_stitching.a similarity index 100% rename from app/libs/x86_64/libopencv_stitching.a rename to opencv_face_detect/libs/x86_64/libopencv_stitching.a diff --git a/app/libs/x86_64/libopencv_superres.a b/opencv_face_detect/libs/x86_64/libopencv_superres.a similarity index 100% rename from app/libs/x86_64/libopencv_superres.a rename to opencv_face_detect/libs/x86_64/libopencv_superres.a diff --git a/app/libs/x86_64/libopencv_video.a b/opencv_face_detect/libs/x86_64/libopencv_video.a similarity index 100% rename from app/libs/x86_64/libopencv_video.a rename to opencv_face_detect/libs/x86_64/libopencv_video.a diff --git a/app/libs/x86_64/libopencv_videoio.a b/opencv_face_detect/libs/x86_64/libopencv_videoio.a similarity index 100% rename from app/libs/x86_64/libopencv_videoio.a rename to opencv_face_detect/libs/x86_64/libopencv_videoio.a diff --git a/app/libs/x86_64/libopencv_videostab.a b/opencv_face_detect/libs/x86_64/libopencv_videostab.a similarity index 100% rename from app/libs/x86_64/libopencv_videostab.a rename to opencv_face_detect/libs/x86_64/libopencv_videostab.a diff --git a/opencv_face_detect/proguard-rules.pro b/opencv_face_detect/proguard-rules.pro new file mode 100644 index 0000000..f1b4245 --- /dev/null +++ b/opencv_face_detect/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile diff --git a/opencv_face_detect/src/main/AndroidManifest.xml b/opencv_face_detect/src/main/AndroidManifest.xml new file mode 100644 index 0000000..e94275c --- /dev/null +++ b/opencv_face_detect/src/main/AndroidManifest.xml @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/app/src/main/cpp/dlib/CMakeLists.txt b/opencv_face_detect/src/main/cpp/dlib/CMakeLists.txt similarity index 100% rename from app/src/main/cpp/dlib/CMakeLists.txt rename to opencv_face_detect/src/main/cpp/dlib/CMakeLists.txt diff --git a/app/src/main/cpp/dlib/LICENSE.txt b/opencv_face_detect/src/main/cpp/dlib/LICENSE.txt similarity index 100% rename from app/src/main/cpp/dlib/LICENSE.txt rename to opencv_face_detect/src/main/cpp/dlib/LICENSE.txt diff --git a/app/src/main/cpp/dlib/algs.h b/opencv_face_detect/src/main/cpp/dlib/algs.h similarity index 100% rename from app/src/main/cpp/dlib/algs.h rename to opencv_face_detect/src/main/cpp/dlib/algs.h diff --git a/app/src/main/cpp/dlib/all/source.cpp b/opencv_face_detect/src/main/cpp/dlib/all/source.cpp similarity index 100% rename from app/src/main/cpp/dlib/all/source.cpp rename to opencv_face_detect/src/main/cpp/dlib/all/source.cpp diff --git a/app/src/main/cpp/dlib/any.h b/opencv_face_detect/src/main/cpp/dlib/any.h similarity index 100% rename from app/src/main/cpp/dlib/any.h rename to opencv_face_detect/src/main/cpp/dlib/any.h diff --git a/app/src/main/cpp/dlib/any/any.h b/opencv_face_detect/src/main/cpp/dlib/any/any.h similarity index 100% rename from app/src/main/cpp/dlib/any/any.h rename to opencv_face_detect/src/main/cpp/dlib/any/any.h diff --git a/app/src/main/cpp/dlib/any/any_abstract.h b/opencv_face_detect/src/main/cpp/dlib/any/any_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/any/any_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/any/any_abstract.h diff --git a/app/src/main/cpp/dlib/any/any_decision_function.h b/opencv_face_detect/src/main/cpp/dlib/any/any_decision_function.h similarity index 100% rename from app/src/main/cpp/dlib/any/any_decision_function.h rename to opencv_face_detect/src/main/cpp/dlib/any/any_decision_function.h diff --git a/app/src/main/cpp/dlib/any/any_decision_function_abstract.h b/opencv_face_detect/src/main/cpp/dlib/any/any_decision_function_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/any/any_decision_function_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/any/any_decision_function_abstract.h diff --git a/app/src/main/cpp/dlib/any/any_function.h b/opencv_face_detect/src/main/cpp/dlib/any/any_function.h similarity index 100% rename from app/src/main/cpp/dlib/any/any_function.h rename to opencv_face_detect/src/main/cpp/dlib/any/any_function.h diff --git a/app/src/main/cpp/dlib/any/any_function_abstract.h b/opencv_face_detect/src/main/cpp/dlib/any/any_function_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/any/any_function_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/any/any_function_abstract.h diff --git a/app/src/main/cpp/dlib/any/any_function_impl.h b/opencv_face_detect/src/main/cpp/dlib/any/any_function_impl.h similarity index 99% rename from app/src/main/cpp/dlib/any/any_function_impl.h rename to opencv_face_detect/src/main/cpp/dlib/any/any_function_impl.h index fec66cd..f9a4568 100644 --- a/app/src/main/cpp/dlib/any/any_function_impl.h +++ b/opencv_face_detect/src/main/cpp/dlib/any/any_function_impl.h @@ -4,9 +4,9 @@ #error "You aren't supposed to directly #include this file. #include instead." #endif -#ifdef _MSC_VER -// When using visual studio 2012, disable the warning "warning C4180: qualifier applied to function type has no meaning; ignored" -// that you get about some template expansions applying & to function types. +#ifdef _MSC_VER +// When using visual studio 2012, disable the warning "warning C4180: qualifier applied to function type has no meaning; ignored" +// that you get about some template expansions applying & to function types. #pragma warning(disable : 4180) #endif diff --git a/app/src/main/cpp/dlib/any/any_function_impl2.h b/opencv_face_detect/src/main/cpp/dlib/any/any_function_impl2.h similarity index 100% rename from app/src/main/cpp/dlib/any/any_function_impl2.h rename to opencv_face_detect/src/main/cpp/dlib/any/any_function_impl2.h diff --git a/app/src/main/cpp/dlib/any/any_trainer.h b/opencv_face_detect/src/main/cpp/dlib/any/any_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/any/any_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/any/any_trainer.h diff --git a/app/src/main/cpp/dlib/any/any_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/any/any_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/any/any_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/any/any_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/appveyor/dtest.yml b/opencv_face_detect/src/main/cpp/dlib/appveyor/dtest.yml similarity index 100% rename from app/src/main/cpp/dlib/appveyor/dtest.yml rename to opencv_face_detect/src/main/cpp/dlib/appveyor/dtest.yml diff --git a/app/src/main/cpp/dlib/appveyor/dtest_vc2017.yml b/opencv_face_detect/src/main/cpp/dlib/appveyor/dtest_vc2017.yml similarity index 100% rename from app/src/main/cpp/dlib/appveyor/dtest_vc2017.yml rename to opencv_face_detect/src/main/cpp/dlib/appveyor/dtest_vc2017.yml diff --git a/app/src/main/cpp/dlib/appveyor/examples.yml b/opencv_face_detect/src/main/cpp/dlib/appveyor/examples.yml similarity index 100% rename from app/src/main/cpp/dlib/appveyor/examples.yml rename to opencv_face_detect/src/main/cpp/dlib/appveyor/examples.yml diff --git a/app/src/main/cpp/dlib/appveyor/python.yml b/opencv_face_detect/src/main/cpp/dlib/appveyor/python.yml similarity index 100% rename from app/src/main/cpp/dlib/appveyor/python.yml rename to opencv_face_detect/src/main/cpp/dlib/appveyor/python.yml diff --git a/app/src/main/cpp/dlib/array.h b/opencv_face_detect/src/main/cpp/dlib/array.h similarity index 100% rename from app/src/main/cpp/dlib/array.h rename to opencv_face_detect/src/main/cpp/dlib/array.h diff --git a/app/src/main/cpp/dlib/array/array_kernel.h b/opencv_face_detect/src/main/cpp/dlib/array/array_kernel.h similarity index 100% rename from app/src/main/cpp/dlib/array/array_kernel.h rename to opencv_face_detect/src/main/cpp/dlib/array/array_kernel.h diff --git a/app/src/main/cpp/dlib/array/array_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/array/array_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/array/array_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/array/array_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/array/array_tools.h b/opencv_face_detect/src/main/cpp/dlib/array/array_tools.h similarity index 100% rename from app/src/main/cpp/dlib/array/array_tools.h rename to opencv_face_detect/src/main/cpp/dlib/array/array_tools.h diff --git a/app/src/main/cpp/dlib/array/array_tools_abstract.h b/opencv_face_detect/src/main/cpp/dlib/array/array_tools_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/array/array_tools_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/array/array_tools_abstract.h diff --git a/app/src/main/cpp/dlib/array2d.h b/opencv_face_detect/src/main/cpp/dlib/array2d.h similarity index 100% rename from app/src/main/cpp/dlib/array2d.h rename to opencv_face_detect/src/main/cpp/dlib/array2d.h diff --git a/app/src/main/cpp/dlib/array2d/array2d_generic_image.h b/opencv_face_detect/src/main/cpp/dlib/array2d/array2d_generic_image.h similarity index 100% rename from app/src/main/cpp/dlib/array2d/array2d_generic_image.h rename to opencv_face_detect/src/main/cpp/dlib/array2d/array2d_generic_image.h diff --git a/app/src/main/cpp/dlib/array2d/array2d_kernel.h b/opencv_face_detect/src/main/cpp/dlib/array2d/array2d_kernel.h similarity index 100% rename from app/src/main/cpp/dlib/array2d/array2d_kernel.h rename to opencv_face_detect/src/main/cpp/dlib/array2d/array2d_kernel.h diff --git a/app/src/main/cpp/dlib/array2d/array2d_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/array2d/array2d_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/array2d/array2d_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/array2d/array2d_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/array2d/serialize_pixel_overloads.h b/opencv_face_detect/src/main/cpp/dlib/array2d/serialize_pixel_overloads.h similarity index 100% rename from app/src/main/cpp/dlib/array2d/serialize_pixel_overloads.h rename to opencv_face_detect/src/main/cpp/dlib/array2d/serialize_pixel_overloads.h diff --git a/app/src/main/cpp/dlib/assert.h b/opencv_face_detect/src/main/cpp/dlib/assert.h similarity index 100% rename from app/src/main/cpp/dlib/assert.h rename to opencv_face_detect/src/main/cpp/dlib/assert.h diff --git a/app/src/main/cpp/dlib/base64.h b/opencv_face_detect/src/main/cpp/dlib/base64.h similarity index 100% rename from app/src/main/cpp/dlib/base64.h rename to opencv_face_detect/src/main/cpp/dlib/base64.h diff --git a/app/src/main/cpp/dlib/base64/base64_kernel_1.cpp b/opencv_face_detect/src/main/cpp/dlib/base64/base64_kernel_1.cpp similarity index 100% rename from app/src/main/cpp/dlib/base64/base64_kernel_1.cpp rename to opencv_face_detect/src/main/cpp/dlib/base64/base64_kernel_1.cpp diff --git a/app/src/main/cpp/dlib/base64/base64_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/base64/base64_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/base64/base64_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/base64/base64_kernel_1.h diff --git a/app/src/main/cpp/dlib/base64/base64_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/base64/base64_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/base64/base64_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/base64/base64_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/bayes_utils.h b/opencv_face_detect/src/main/cpp/dlib/bayes_utils.h similarity index 100% rename from app/src/main/cpp/dlib/bayes_utils.h rename to opencv_face_detect/src/main/cpp/dlib/bayes_utils.h diff --git a/app/src/main/cpp/dlib/bayes_utils/bayes_utils.h b/opencv_face_detect/src/main/cpp/dlib/bayes_utils/bayes_utils.h similarity index 100% rename from app/src/main/cpp/dlib/bayes_utils/bayes_utils.h rename to opencv_face_detect/src/main/cpp/dlib/bayes_utils/bayes_utils.h diff --git a/app/src/main/cpp/dlib/bayes_utils/bayes_utils_abstract.h b/opencv_face_detect/src/main/cpp/dlib/bayes_utils/bayes_utils_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/bayes_utils/bayes_utils_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/bayes_utils/bayes_utils_abstract.h diff --git a/app/src/main/cpp/dlib/bigint.h b/opencv_face_detect/src/main/cpp/dlib/bigint.h similarity index 100% rename from app/src/main/cpp/dlib/bigint.h rename to opencv_face_detect/src/main/cpp/dlib/bigint.h diff --git a/app/src/main/cpp/dlib/bigint/bigint_kernel_1.cpp b/opencv_face_detect/src/main/cpp/dlib/bigint/bigint_kernel_1.cpp similarity index 100% rename from app/src/main/cpp/dlib/bigint/bigint_kernel_1.cpp rename to opencv_face_detect/src/main/cpp/dlib/bigint/bigint_kernel_1.cpp diff --git a/app/src/main/cpp/dlib/bigint/bigint_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/bigint/bigint_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/bigint/bigint_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/bigint/bigint_kernel_1.h diff --git a/app/src/main/cpp/dlib/bigint/bigint_kernel_2.cpp b/opencv_face_detect/src/main/cpp/dlib/bigint/bigint_kernel_2.cpp similarity index 100% rename from app/src/main/cpp/dlib/bigint/bigint_kernel_2.cpp rename to opencv_face_detect/src/main/cpp/dlib/bigint/bigint_kernel_2.cpp diff --git a/app/src/main/cpp/dlib/bigint/bigint_kernel_2.h b/opencv_face_detect/src/main/cpp/dlib/bigint/bigint_kernel_2.h similarity index 100% rename from app/src/main/cpp/dlib/bigint/bigint_kernel_2.h rename to opencv_face_detect/src/main/cpp/dlib/bigint/bigint_kernel_2.h diff --git a/app/src/main/cpp/dlib/bigint/bigint_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/bigint/bigint_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/bigint/bigint_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/bigint/bigint_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/bigint/bigint_kernel_c.h b/opencv_face_detect/src/main/cpp/dlib/bigint/bigint_kernel_c.h similarity index 100% rename from app/src/main/cpp/dlib/bigint/bigint_kernel_c.h rename to opencv_face_detect/src/main/cpp/dlib/bigint/bigint_kernel_c.h diff --git a/app/src/main/cpp/dlib/binary_search_tree.h b/opencv_face_detect/src/main/cpp/dlib/binary_search_tree.h similarity index 100% rename from app/src/main/cpp/dlib/binary_search_tree.h rename to opencv_face_detect/src/main/cpp/dlib/binary_search_tree.h diff --git a/app/src/main/cpp/dlib/binary_search_tree/binary_search_tree_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/binary_search_tree/binary_search_tree_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/binary_search_tree/binary_search_tree_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/binary_search_tree/binary_search_tree_kernel_1.h diff --git a/app/src/main/cpp/dlib/binary_search_tree/binary_search_tree_kernel_2.h b/opencv_face_detect/src/main/cpp/dlib/binary_search_tree/binary_search_tree_kernel_2.h similarity index 100% rename from app/src/main/cpp/dlib/binary_search_tree/binary_search_tree_kernel_2.h rename to opencv_face_detect/src/main/cpp/dlib/binary_search_tree/binary_search_tree_kernel_2.h diff --git a/app/src/main/cpp/dlib/binary_search_tree/binary_search_tree_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/binary_search_tree/binary_search_tree_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/binary_search_tree/binary_search_tree_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/binary_search_tree/binary_search_tree_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/binary_search_tree/binary_search_tree_kernel_c.h b/opencv_face_detect/src/main/cpp/dlib/binary_search_tree/binary_search_tree_kernel_c.h similarity index 100% rename from app/src/main/cpp/dlib/binary_search_tree/binary_search_tree_kernel_c.h rename to opencv_face_detect/src/main/cpp/dlib/binary_search_tree/binary_search_tree_kernel_c.h diff --git a/app/src/main/cpp/dlib/bit_stream.h b/opencv_face_detect/src/main/cpp/dlib/bit_stream.h similarity index 100% rename from app/src/main/cpp/dlib/bit_stream.h rename to opencv_face_detect/src/main/cpp/dlib/bit_stream.h diff --git a/app/src/main/cpp/dlib/bit_stream/bit_stream_kernel_1.cpp b/opencv_face_detect/src/main/cpp/dlib/bit_stream/bit_stream_kernel_1.cpp similarity index 100% rename from app/src/main/cpp/dlib/bit_stream/bit_stream_kernel_1.cpp rename to opencv_face_detect/src/main/cpp/dlib/bit_stream/bit_stream_kernel_1.cpp diff --git a/app/src/main/cpp/dlib/bit_stream/bit_stream_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/bit_stream/bit_stream_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/bit_stream/bit_stream_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/bit_stream/bit_stream_kernel_1.h diff --git a/app/src/main/cpp/dlib/bit_stream/bit_stream_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/bit_stream/bit_stream_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/bit_stream/bit_stream_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/bit_stream/bit_stream_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/bit_stream/bit_stream_kernel_c.h b/opencv_face_detect/src/main/cpp/dlib/bit_stream/bit_stream_kernel_c.h similarity index 100% rename from app/src/main/cpp/dlib/bit_stream/bit_stream_kernel_c.h rename to opencv_face_detect/src/main/cpp/dlib/bit_stream/bit_stream_kernel_c.h diff --git a/app/src/main/cpp/dlib/bit_stream/bit_stream_multi_1.h b/opencv_face_detect/src/main/cpp/dlib/bit_stream/bit_stream_multi_1.h similarity index 100% rename from app/src/main/cpp/dlib/bit_stream/bit_stream_multi_1.h rename to opencv_face_detect/src/main/cpp/dlib/bit_stream/bit_stream_multi_1.h diff --git a/app/src/main/cpp/dlib/bit_stream/bit_stream_multi_abstract.h b/opencv_face_detect/src/main/cpp/dlib/bit_stream/bit_stream_multi_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/bit_stream/bit_stream_multi_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/bit_stream/bit_stream_multi_abstract.h diff --git a/app/src/main/cpp/dlib/bit_stream/bit_stream_multi_c.h b/opencv_face_detect/src/main/cpp/dlib/bit_stream/bit_stream_multi_c.h similarity index 100% rename from app/src/main/cpp/dlib/bit_stream/bit_stream_multi_c.h rename to opencv_face_detect/src/main/cpp/dlib/bit_stream/bit_stream_multi_c.h diff --git a/app/src/main/cpp/dlib/bits/c++config.h b/opencv_face_detect/src/main/cpp/dlib/bits/c++config.h similarity index 100% rename from app/src/main/cpp/dlib/bits/c++config.h rename to opencv_face_detect/src/main/cpp/dlib/bits/c++config.h diff --git a/app/src/main/cpp/dlib/bound_function_pointer.h b/opencv_face_detect/src/main/cpp/dlib/bound_function_pointer.h similarity index 100% rename from app/src/main/cpp/dlib/bound_function_pointer.h rename to opencv_face_detect/src/main/cpp/dlib/bound_function_pointer.h diff --git a/app/src/main/cpp/dlib/bound_function_pointer/bound_function_pointer_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/bound_function_pointer/bound_function_pointer_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/bound_function_pointer/bound_function_pointer_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/bound_function_pointer/bound_function_pointer_kernel_1.h diff --git a/app/src/main/cpp/dlib/bound_function_pointer/bound_function_pointer_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/bound_function_pointer/bound_function_pointer_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/bound_function_pointer/bound_function_pointer_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/bound_function_pointer/bound_function_pointer_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/bridge.h b/opencv_face_detect/src/main/cpp/dlib/bridge.h similarity index 100% rename from app/src/main/cpp/dlib/bridge.h rename to opencv_face_detect/src/main/cpp/dlib/bridge.h diff --git a/app/src/main/cpp/dlib/bridge/bridge.h b/opencv_face_detect/src/main/cpp/dlib/bridge/bridge.h similarity index 100% rename from app/src/main/cpp/dlib/bridge/bridge.h rename to opencv_face_detect/src/main/cpp/dlib/bridge/bridge.h diff --git a/app/src/main/cpp/dlib/bridge/bridge_abstract.h b/opencv_face_detect/src/main/cpp/dlib/bridge/bridge_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/bridge/bridge_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/bridge/bridge_abstract.h diff --git a/app/src/main/cpp/dlib/bsp.h b/opencv_face_detect/src/main/cpp/dlib/bsp.h similarity index 100% rename from app/src/main/cpp/dlib/bsp.h rename to opencv_face_detect/src/main/cpp/dlib/bsp.h diff --git a/app/src/main/cpp/dlib/bsp/bsp.cpp b/opencv_face_detect/src/main/cpp/dlib/bsp/bsp.cpp similarity index 100% rename from app/src/main/cpp/dlib/bsp/bsp.cpp rename to opencv_face_detect/src/main/cpp/dlib/bsp/bsp.cpp diff --git a/app/src/main/cpp/dlib/bsp/bsp.h b/opencv_face_detect/src/main/cpp/dlib/bsp/bsp.h similarity index 100% rename from app/src/main/cpp/dlib/bsp/bsp.h rename to opencv_face_detect/src/main/cpp/dlib/bsp/bsp.h diff --git a/app/src/main/cpp/dlib/bsp/bsp_abstract.h b/opencv_face_detect/src/main/cpp/dlib/bsp/bsp_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/bsp/bsp_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/bsp/bsp_abstract.h diff --git a/app/src/main/cpp/dlib/byte_orderer.h b/opencv_face_detect/src/main/cpp/dlib/byte_orderer.h similarity index 100% rename from app/src/main/cpp/dlib/byte_orderer.h rename to opencv_face_detect/src/main/cpp/dlib/byte_orderer.h diff --git a/app/src/main/cpp/dlib/byte_orderer/byte_orderer_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/byte_orderer/byte_orderer_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/byte_orderer/byte_orderer_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/byte_orderer/byte_orderer_kernel_1.h diff --git a/app/src/main/cpp/dlib/byte_orderer/byte_orderer_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/byte_orderer/byte_orderer_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/byte_orderer/byte_orderer_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/byte_orderer/byte_orderer_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/cassert b/opencv_face_detect/src/main/cpp/dlib/cassert similarity index 100% rename from app/src/main/cpp/dlib/cassert rename to opencv_face_detect/src/main/cpp/dlib/cassert diff --git a/app/src/main/cpp/dlib/clustering.h b/opencv_face_detect/src/main/cpp/dlib/clustering.h similarity index 100% rename from app/src/main/cpp/dlib/clustering.h rename to opencv_face_detect/src/main/cpp/dlib/clustering.h diff --git a/app/src/main/cpp/dlib/clustering/bottom_up_cluster.h b/opencv_face_detect/src/main/cpp/dlib/clustering/bottom_up_cluster.h similarity index 100% rename from app/src/main/cpp/dlib/clustering/bottom_up_cluster.h rename to opencv_face_detect/src/main/cpp/dlib/clustering/bottom_up_cluster.h diff --git a/app/src/main/cpp/dlib/clustering/bottom_up_cluster_abstract.h b/opencv_face_detect/src/main/cpp/dlib/clustering/bottom_up_cluster_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/clustering/bottom_up_cluster_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/clustering/bottom_up_cluster_abstract.h diff --git a/app/src/main/cpp/dlib/clustering/chinese_whispers.h b/opencv_face_detect/src/main/cpp/dlib/clustering/chinese_whispers.h similarity index 100% rename from app/src/main/cpp/dlib/clustering/chinese_whispers.h rename to opencv_face_detect/src/main/cpp/dlib/clustering/chinese_whispers.h diff --git a/app/src/main/cpp/dlib/clustering/chinese_whispers_abstract.h b/opencv_face_detect/src/main/cpp/dlib/clustering/chinese_whispers_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/clustering/chinese_whispers_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/clustering/chinese_whispers_abstract.h diff --git a/app/src/main/cpp/dlib/clustering/modularity_clustering.h b/opencv_face_detect/src/main/cpp/dlib/clustering/modularity_clustering.h similarity index 100% rename from app/src/main/cpp/dlib/clustering/modularity_clustering.h rename to opencv_face_detect/src/main/cpp/dlib/clustering/modularity_clustering.h diff --git a/app/src/main/cpp/dlib/clustering/modularity_clustering_abstract.h b/opencv_face_detect/src/main/cpp/dlib/clustering/modularity_clustering_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/clustering/modularity_clustering_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/clustering/modularity_clustering_abstract.h diff --git a/app/src/main/cpp/dlib/clustering/spectral_cluster.h b/opencv_face_detect/src/main/cpp/dlib/clustering/spectral_cluster.h similarity index 100% rename from app/src/main/cpp/dlib/clustering/spectral_cluster.h rename to opencv_face_detect/src/main/cpp/dlib/clustering/spectral_cluster.h diff --git a/app/src/main/cpp/dlib/clustering/spectral_cluster_abstract.h b/opencv_face_detect/src/main/cpp/dlib/clustering/spectral_cluster_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/clustering/spectral_cluster_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/clustering/spectral_cluster_abstract.h diff --git a/app/src/main/cpp/dlib/cmake b/opencv_face_detect/src/main/cpp/dlib/cmake similarity index 100% rename from app/src/main/cpp/dlib/cmake rename to opencv_face_detect/src/main/cpp/dlib/cmake diff --git a/app/src/main/cpp/dlib/cmake_utils/add_global_compiler_switch.cmake b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/add_global_compiler_switch.cmake similarity index 100% rename from app/src/main/cpp/dlib/cmake_utils/add_global_compiler_switch.cmake rename to opencv_face_detect/src/main/cpp/dlib/cmake_utils/add_global_compiler_switch.cmake diff --git a/app/src/main/cpp/dlib/cmake_utils/check_if_avx_instructions_executable_on_host.cmake b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/check_if_avx_instructions_executable_on_host.cmake similarity index 100% rename from app/src/main/cpp/dlib/cmake_utils/check_if_avx_instructions_executable_on_host.cmake rename to opencv_face_detect/src/main/cpp/dlib/cmake_utils/check_if_avx_instructions_executable_on_host.cmake diff --git a/app/src/main/cpp/dlib/cmake_utils/check_if_neon_available.cmake b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/check_if_neon_available.cmake similarity index 100% rename from app/src/main/cpp/dlib/cmake_utils/check_if_neon_available.cmake rename to opencv_face_detect/src/main/cpp/dlib/cmake_utils/check_if_neon_available.cmake diff --git a/app/src/main/cpp/dlib/cmake_utils/check_if_sse4_instructions_executable_on_host.cmake b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/check_if_sse4_instructions_executable_on_host.cmake similarity index 100% rename from app/src/main/cpp/dlib/cmake_utils/check_if_sse4_instructions_executable_on_host.cmake rename to opencv_face_detect/src/main/cpp/dlib/cmake_utils/check_if_sse4_instructions_executable_on_host.cmake diff --git a/app/src/main/cpp/dlib/cmake_utils/dlib.pc.in b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/dlib.pc.in similarity index 100% rename from app/src/main/cpp/dlib/cmake_utils/dlib.pc.in rename to opencv_face_detect/src/main/cpp/dlib/cmake_utils/dlib.pc.in diff --git a/app/src/main/cpp/dlib/cmake_utils/dlibConfig.cmake.in b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/dlibConfig.cmake.in similarity index 100% rename from app/src/main/cpp/dlib/cmake_utils/dlibConfig.cmake.in rename to opencv_face_detect/src/main/cpp/dlib/cmake_utils/dlibConfig.cmake.in diff --git a/app/src/main/cpp/dlib/cmake_utils/find_blas.cmake b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/find_blas.cmake similarity index 100% rename from app/src/main/cpp/dlib/cmake_utils/find_blas.cmake rename to opencv_face_detect/src/main/cpp/dlib/cmake_utils/find_blas.cmake diff --git a/app/src/main/cpp/dlib/cmake_utils/release_build_by_default b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/release_build_by_default similarity index 100% rename from app/src/main/cpp/dlib/cmake_utils/release_build_by_default rename to opencv_face_detect/src/main/cpp/dlib/cmake_utils/release_build_by_default diff --git a/app/src/main/cpp/dlib/cmake_utils/set_compiler_specific_options.cmake b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/set_compiler_specific_options.cmake similarity index 100% rename from app/src/main/cpp/dlib/cmake_utils/set_compiler_specific_options.cmake rename to opencv_face_detect/src/main/cpp/dlib/cmake_utils/set_compiler_specific_options.cmake diff --git a/app/src/main/cpp/dlib/cmake_utils/tell_visual_studio_to_use_static_runtime.cmake b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/tell_visual_studio_to_use_static_runtime.cmake similarity index 96% rename from app/src/main/cpp/dlib/cmake_utils/tell_visual_studio_to_use_static_runtime.cmake rename to opencv_face_detect/src/main/cpp/dlib/cmake_utils/tell_visual_studio_to_use_static_runtime.cmake index e5fb091..8cab322 100644 --- a/app/src/main/cpp/dlib/cmake_utils/tell_visual_studio_to_use_static_runtime.cmake +++ b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/tell_visual_studio_to_use_static_runtime.cmake @@ -1,19 +1,19 @@ - -# Including this cmake script into your cmake project will cause visual studio -# to build your project against the static C runtime. - -cmake_minimum_required(VERSION 2.8.12) -if (POLICY CMP0054) - cmake_policy(SET CMP0054 NEW) -endif() - -if (MSVC OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC") - foreach(flag_var - CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_RELEASE - CMAKE_CXX_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_RELWITHDEBINFO) - if(${flag_var} MATCHES "/MD") - string(REGEX REPLACE "/MD" "/MT" ${flag_var} "${${flag_var}}") - endif() - endforeach(flag_var) -endif() - + +# Including this cmake script into your cmake project will cause visual studio +# to build your project against the static C runtime. + +cmake_minimum_required(VERSION 2.8.12) +if (POLICY CMP0054) + cmake_policy(SET CMP0054 NEW) +endif() + +if (MSVC OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC") + foreach(flag_var + CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_RELEASE + CMAKE_CXX_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_RELWITHDEBINFO) + if(${flag_var} MATCHES "/MD") + string(REGEX REPLACE "/MD" "/MT" ${flag_var} "${${flag_var}}") + endif() + endforeach(flag_var) +endif() + diff --git a/app/src/main/cpp/dlib/cmake_utils/test_for_avx/CMakeLists.txt b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_avx/CMakeLists.txt similarity index 100% rename from app/src/main/cpp/dlib/cmake_utils/test_for_avx/CMakeLists.txt rename to opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_avx/CMakeLists.txt diff --git a/app/src/main/cpp/dlib/cmake_utils/test_for_avx/avx_test.cpp b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_avx/avx_test.cpp similarity index 100% rename from app/src/main/cpp/dlib/cmake_utils/test_for_avx/avx_test.cpp rename to opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_avx/avx_test.cpp diff --git a/app/src/main/cpp/dlib/cmake_utils/test_for_avx/this_file_doesnt_compile.cpp b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_avx/this_file_doesnt_compile.cpp similarity index 100% rename from app/src/main/cpp/dlib/cmake_utils/test_for_avx/this_file_doesnt_compile.cpp rename to opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_avx/this_file_doesnt_compile.cpp diff --git a/app/src/main/cpp/dlib/cmake_utils/test_for_cpp11/CMakeLists.txt b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_cpp11/CMakeLists.txt similarity index 100% rename from app/src/main/cpp/dlib/cmake_utils/test_for_cpp11/CMakeLists.txt rename to opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_cpp11/CMakeLists.txt diff --git a/app/src/main/cpp/dlib/cmake_utils/test_for_cpp11/cpp11_test.cpp b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_cpp11/cpp11_test.cpp similarity index 100% rename from app/src/main/cpp/dlib/cmake_utils/test_for_cpp11/cpp11_test.cpp rename to opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_cpp11/cpp11_test.cpp diff --git a/app/src/main/cpp/dlib/cmake_utils/test_for_cuda/CMakeLists.txt b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_cuda/CMakeLists.txt similarity index 100% rename from app/src/main/cpp/dlib/cmake_utils/test_for_cuda/CMakeLists.txt rename to opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_cuda/CMakeLists.txt diff --git a/app/src/main/cpp/dlib/cmake_utils/test_for_cuda/cuda_test.cu b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_cuda/cuda_test.cu similarity index 100% rename from app/src/main/cpp/dlib/cmake_utils/test_for_cuda/cuda_test.cu rename to opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_cuda/cuda_test.cu diff --git a/app/src/main/cpp/dlib/cmake_utils/test_for_cudnn/CMakeLists.txt b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_cudnn/CMakeLists.txt similarity index 97% rename from app/src/main/cpp/dlib/cmake_utils/test_for_cudnn/CMakeLists.txt rename to opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_cudnn/CMakeLists.txt index 0832059..ce75435 100644 --- a/app/src/main/cpp/dlib/cmake_utils/test_for_cudnn/CMakeLists.txt +++ b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_cudnn/CMakeLists.txt @@ -1,19 +1,19 @@ - -cmake_minimum_required(VERSION 2.8.12) -project(cudnn_test) -include(../use_cpp_11.cmake) - -# Override the FindCUDA.cmake setting to avoid duplication of host flags if using a toolchain: -option(CUDA_PROPAGATE_HOST_FLAGS "Propage C/CXX_FLAGS and friends to the host compiler via -Xcompile" OFF) -find_package(CUDA 7.5 REQUIRED) -set(CUDA_HOST_COMPILATION_CPP ON) -list(APPEND CUDA_NVCC_FLAGS "-arch=sm_30;-std=c++11;-D__STRICT_ANSI__") -add_definitions(-DDLIB_USE_CUDA) - -include(find_cudnn.txt) - -if (cudnn_include AND cudnn) - include_directories(${cudnn_include}) - cuda_add_library(cudnn_test STATIC ../../cuda/cudnn_dlibapi.cpp ${cudnn} ) - enable_cpp11_for_target(cudnn_test) -endif() + +cmake_minimum_required(VERSION 2.8.12) +project(cudnn_test) +include(../use_cpp_11.cmake) + +# Override the FindCUDA.cmake setting to avoid duplication of host flags if using a toolchain: +option(CUDA_PROPAGATE_HOST_FLAGS "Propage C/CXX_FLAGS and friends to the host compiler via -Xcompile" OFF) +find_package(CUDA 7.5 REQUIRED) +set(CUDA_HOST_COMPILATION_CPP ON) +list(APPEND CUDA_NVCC_FLAGS "-arch=sm_30;-std=c++11;-D__STRICT_ANSI__") +add_definitions(-DDLIB_USE_CUDA) + +include(find_cudnn.txt) + +if (cudnn_include AND cudnn) + include_directories(${cudnn_include}) + cuda_add_library(cudnn_test STATIC ../../cuda/cudnn_dlibapi.cpp ${cudnn} ) + enable_cpp11_for_target(cudnn_test) +endif() diff --git a/app/src/main/cpp/dlib/cmake_utils/test_for_cudnn/find_cudnn.txt b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_cudnn/find_cudnn.txt similarity index 100% rename from app/src/main/cpp/dlib/cmake_utils/test_for_cudnn/find_cudnn.txt rename to opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_cudnn/find_cudnn.txt diff --git a/app/src/main/cpp/dlib/cmake_utils/test_for_neon/CMakeLists.txt b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_neon/CMakeLists.txt similarity index 100% rename from app/src/main/cpp/dlib/cmake_utils/test_for_neon/CMakeLists.txt rename to opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_neon/CMakeLists.txt diff --git a/app/src/main/cpp/dlib/cmake_utils/test_for_neon/neon_test.cpp b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_neon/neon_test.cpp similarity index 100% rename from app/src/main/cpp/dlib/cmake_utils/test_for_neon/neon_test.cpp rename to opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_neon/neon_test.cpp diff --git a/app/src/main/cpp/dlib/cmake_utils/test_for_sse4/CMakeLists.txt b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_sse4/CMakeLists.txt similarity index 100% rename from app/src/main/cpp/dlib/cmake_utils/test_for_sse4/CMakeLists.txt rename to opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_sse4/CMakeLists.txt diff --git a/app/src/main/cpp/dlib/cmake_utils/test_for_sse4/sse4_test.cpp b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_sse4/sse4_test.cpp similarity index 100% rename from app/src/main/cpp/dlib/cmake_utils/test_for_sse4/sse4_test.cpp rename to opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_sse4/sse4_test.cpp diff --git a/app/src/main/cpp/dlib/cmake_utils/test_for_sse4/this_file_doesnt_compile.cpp b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_sse4/this_file_doesnt_compile.cpp similarity index 100% rename from app/src/main/cpp/dlib/cmake_utils/test_for_sse4/this_file_doesnt_compile.cpp rename to opencv_face_detect/src/main/cpp/dlib/cmake_utils/test_for_sse4/this_file_doesnt_compile.cpp diff --git a/app/src/main/cpp/dlib/cmake_utils/use_cpp_11.cmake b/opencv_face_detect/src/main/cpp/dlib/cmake_utils/use_cpp_11.cmake similarity index 100% rename from app/src/main/cpp/dlib/cmake_utils/use_cpp_11.cmake rename to opencv_face_detect/src/main/cpp/dlib/cmake_utils/use_cpp_11.cmake diff --git a/app/src/main/cpp/dlib/cmd_line_parser.h b/opencv_face_detect/src/main/cpp/dlib/cmd_line_parser.h similarity index 100% rename from app/src/main/cpp/dlib/cmd_line_parser.h rename to opencv_face_detect/src/main/cpp/dlib/cmd_line_parser.h diff --git a/app/src/main/cpp/dlib/cmd_line_parser/cmd_line_parser_check_1.h b/opencv_face_detect/src/main/cpp/dlib/cmd_line_parser/cmd_line_parser_check_1.h similarity index 100% rename from app/src/main/cpp/dlib/cmd_line_parser/cmd_line_parser_check_1.h rename to opencv_face_detect/src/main/cpp/dlib/cmd_line_parser/cmd_line_parser_check_1.h diff --git a/app/src/main/cpp/dlib/cmd_line_parser/cmd_line_parser_check_c.h b/opencv_face_detect/src/main/cpp/dlib/cmd_line_parser/cmd_line_parser_check_c.h similarity index 100% rename from app/src/main/cpp/dlib/cmd_line_parser/cmd_line_parser_check_c.h rename to opencv_face_detect/src/main/cpp/dlib/cmd_line_parser/cmd_line_parser_check_c.h diff --git a/app/src/main/cpp/dlib/cmd_line_parser/cmd_line_parser_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/cmd_line_parser/cmd_line_parser_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/cmd_line_parser/cmd_line_parser_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/cmd_line_parser/cmd_line_parser_kernel_1.h diff --git a/app/src/main/cpp/dlib/cmd_line_parser/cmd_line_parser_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/cmd_line_parser/cmd_line_parser_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/cmd_line_parser/cmd_line_parser_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/cmd_line_parser/cmd_line_parser_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/cmd_line_parser/cmd_line_parser_kernel_c.h b/opencv_face_detect/src/main/cpp/dlib/cmd_line_parser/cmd_line_parser_kernel_c.h similarity index 100% rename from app/src/main/cpp/dlib/cmd_line_parser/cmd_line_parser_kernel_c.h rename to opencv_face_detect/src/main/cpp/dlib/cmd_line_parser/cmd_line_parser_kernel_c.h diff --git a/app/src/main/cpp/dlib/cmd_line_parser/cmd_line_parser_print_1.h b/opencv_face_detect/src/main/cpp/dlib/cmd_line_parser/cmd_line_parser_print_1.h similarity index 100% rename from app/src/main/cpp/dlib/cmd_line_parser/cmd_line_parser_print_1.h rename to opencv_face_detect/src/main/cpp/dlib/cmd_line_parser/cmd_line_parser_print_1.h diff --git a/app/src/main/cpp/dlib/cmd_line_parser/get_option.h b/opencv_face_detect/src/main/cpp/dlib/cmd_line_parser/get_option.h similarity index 100% rename from app/src/main/cpp/dlib/cmd_line_parser/get_option.h rename to opencv_face_detect/src/main/cpp/dlib/cmd_line_parser/get_option.h diff --git a/app/src/main/cpp/dlib/cmd_line_parser/get_option_abstract.h b/opencv_face_detect/src/main/cpp/dlib/cmd_line_parser/get_option_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/cmd_line_parser/get_option_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/cmd_line_parser/get_option_abstract.h diff --git a/app/src/main/cpp/dlib/compress_stream.h b/opencv_face_detect/src/main/cpp/dlib/compress_stream.h similarity index 100% rename from app/src/main/cpp/dlib/compress_stream.h rename to opencv_face_detect/src/main/cpp/dlib/compress_stream.h diff --git a/app/src/main/cpp/dlib/compress_stream/compress_stream_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/compress_stream/compress_stream_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/compress_stream/compress_stream_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/compress_stream/compress_stream_kernel_1.h diff --git a/app/src/main/cpp/dlib/compress_stream/compress_stream_kernel_2.h b/opencv_face_detect/src/main/cpp/dlib/compress_stream/compress_stream_kernel_2.h similarity index 100% rename from app/src/main/cpp/dlib/compress_stream/compress_stream_kernel_2.h rename to opencv_face_detect/src/main/cpp/dlib/compress_stream/compress_stream_kernel_2.h diff --git a/app/src/main/cpp/dlib/compress_stream/compress_stream_kernel_3.h b/opencv_face_detect/src/main/cpp/dlib/compress_stream/compress_stream_kernel_3.h similarity index 100% rename from app/src/main/cpp/dlib/compress_stream/compress_stream_kernel_3.h rename to opencv_face_detect/src/main/cpp/dlib/compress_stream/compress_stream_kernel_3.h diff --git a/app/src/main/cpp/dlib/compress_stream/compress_stream_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/compress_stream/compress_stream_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/compress_stream/compress_stream_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/compress_stream/compress_stream_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/conditioning_class.h b/opencv_face_detect/src/main/cpp/dlib/conditioning_class.h similarity index 100% rename from app/src/main/cpp/dlib/conditioning_class.h rename to opencv_face_detect/src/main/cpp/dlib/conditioning_class.h diff --git a/app/src/main/cpp/dlib/conditioning_class/conditioning_class_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/conditioning_class/conditioning_class_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/conditioning_class/conditioning_class_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/conditioning_class/conditioning_class_kernel_1.h diff --git a/app/src/main/cpp/dlib/conditioning_class/conditioning_class_kernel_2.h b/opencv_face_detect/src/main/cpp/dlib/conditioning_class/conditioning_class_kernel_2.h similarity index 100% rename from app/src/main/cpp/dlib/conditioning_class/conditioning_class_kernel_2.h rename to opencv_face_detect/src/main/cpp/dlib/conditioning_class/conditioning_class_kernel_2.h diff --git a/app/src/main/cpp/dlib/conditioning_class/conditioning_class_kernel_3.h b/opencv_face_detect/src/main/cpp/dlib/conditioning_class/conditioning_class_kernel_3.h similarity index 100% rename from app/src/main/cpp/dlib/conditioning_class/conditioning_class_kernel_3.h rename to opencv_face_detect/src/main/cpp/dlib/conditioning_class/conditioning_class_kernel_3.h diff --git a/app/src/main/cpp/dlib/conditioning_class/conditioning_class_kernel_4.h b/opencv_face_detect/src/main/cpp/dlib/conditioning_class/conditioning_class_kernel_4.h similarity index 100% rename from app/src/main/cpp/dlib/conditioning_class/conditioning_class_kernel_4.h rename to opencv_face_detect/src/main/cpp/dlib/conditioning_class/conditioning_class_kernel_4.h diff --git a/app/src/main/cpp/dlib/conditioning_class/conditioning_class_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/conditioning_class/conditioning_class_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/conditioning_class/conditioning_class_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/conditioning_class/conditioning_class_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/conditioning_class/conditioning_class_kernel_c.h b/opencv_face_detect/src/main/cpp/dlib/conditioning_class/conditioning_class_kernel_c.h similarity index 100% rename from app/src/main/cpp/dlib/conditioning_class/conditioning_class_kernel_c.h rename to opencv_face_detect/src/main/cpp/dlib/conditioning_class/conditioning_class_kernel_c.h diff --git a/app/src/main/cpp/dlib/config.h b/opencv_face_detect/src/main/cpp/dlib/config.h similarity index 100% rename from app/src/main/cpp/dlib/config.h rename to opencv_face_detect/src/main/cpp/dlib/config.h diff --git a/app/src/main/cpp/dlib/config.h.in b/opencv_face_detect/src/main/cpp/dlib/config.h.in similarity index 100% rename from app/src/main/cpp/dlib/config.h.in rename to opencv_face_detect/src/main/cpp/dlib/config.h.in diff --git a/app/src/main/cpp/dlib/config_reader.h b/opencv_face_detect/src/main/cpp/dlib/config_reader.h similarity index 100% rename from app/src/main/cpp/dlib/config_reader.h rename to opencv_face_detect/src/main/cpp/dlib/config_reader.h diff --git a/app/src/main/cpp/dlib/config_reader/config_reader_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/config_reader/config_reader_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/config_reader/config_reader_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/config_reader/config_reader_kernel_1.h diff --git a/app/src/main/cpp/dlib/config_reader/config_reader_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/config_reader/config_reader_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/config_reader/config_reader_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/config_reader/config_reader_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/config_reader/config_reader_thread_safe_1.h b/opencv_face_detect/src/main/cpp/dlib/config_reader/config_reader_thread_safe_1.h similarity index 100% rename from app/src/main/cpp/dlib/config_reader/config_reader_thread_safe_1.h rename to opencv_face_detect/src/main/cpp/dlib/config_reader/config_reader_thread_safe_1.h diff --git a/app/src/main/cpp/dlib/config_reader/config_reader_thread_safe_abstract.h b/opencv_face_detect/src/main/cpp/dlib/config_reader/config_reader_thread_safe_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/config_reader/config_reader_thread_safe_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/config_reader/config_reader_thread_safe_abstract.h diff --git a/app/src/main/cpp/dlib/console_progress_indicator.h b/opencv_face_detect/src/main/cpp/dlib/console_progress_indicator.h similarity index 100% rename from app/src/main/cpp/dlib/console_progress_indicator.h rename to opencv_face_detect/src/main/cpp/dlib/console_progress_indicator.h diff --git a/app/src/main/cpp/dlib/control.h b/opencv_face_detect/src/main/cpp/dlib/control.h similarity index 100% rename from app/src/main/cpp/dlib/control.h rename to opencv_face_detect/src/main/cpp/dlib/control.h diff --git a/app/src/main/cpp/dlib/control/approximate_linear_models.h b/opencv_face_detect/src/main/cpp/dlib/control/approximate_linear_models.h similarity index 100% rename from app/src/main/cpp/dlib/control/approximate_linear_models.h rename to opencv_face_detect/src/main/cpp/dlib/control/approximate_linear_models.h diff --git a/app/src/main/cpp/dlib/control/approximate_linear_models_abstract.h b/opencv_face_detect/src/main/cpp/dlib/control/approximate_linear_models_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/control/approximate_linear_models_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/control/approximate_linear_models_abstract.h diff --git a/app/src/main/cpp/dlib/control/lspi.h b/opencv_face_detect/src/main/cpp/dlib/control/lspi.h similarity index 100% rename from app/src/main/cpp/dlib/control/lspi.h rename to opencv_face_detect/src/main/cpp/dlib/control/lspi.h diff --git a/app/src/main/cpp/dlib/control/lspi_abstract.h b/opencv_face_detect/src/main/cpp/dlib/control/lspi_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/control/lspi_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/control/lspi_abstract.h diff --git a/app/src/main/cpp/dlib/control/mpc.h b/opencv_face_detect/src/main/cpp/dlib/control/mpc.h similarity index 100% rename from app/src/main/cpp/dlib/control/mpc.h rename to opencv_face_detect/src/main/cpp/dlib/control/mpc.h diff --git a/app/src/main/cpp/dlib/control/mpc_abstract.h b/opencv_face_detect/src/main/cpp/dlib/control/mpc_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/control/mpc_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/control/mpc_abstract.h diff --git a/app/src/main/cpp/dlib/cpp_pretty_printer.h b/opencv_face_detect/src/main/cpp/dlib/cpp_pretty_printer.h similarity index 100% rename from app/src/main/cpp/dlib/cpp_pretty_printer.h rename to opencv_face_detect/src/main/cpp/dlib/cpp_pretty_printer.h diff --git a/app/src/main/cpp/dlib/cpp_pretty_printer/cpp_pretty_printer_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/cpp_pretty_printer/cpp_pretty_printer_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/cpp_pretty_printer/cpp_pretty_printer_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/cpp_pretty_printer/cpp_pretty_printer_kernel_1.h diff --git a/app/src/main/cpp/dlib/cpp_pretty_printer/cpp_pretty_printer_kernel_2.h b/opencv_face_detect/src/main/cpp/dlib/cpp_pretty_printer/cpp_pretty_printer_kernel_2.h similarity index 100% rename from app/src/main/cpp/dlib/cpp_pretty_printer/cpp_pretty_printer_kernel_2.h rename to opencv_face_detect/src/main/cpp/dlib/cpp_pretty_printer/cpp_pretty_printer_kernel_2.h diff --git a/app/src/main/cpp/dlib/cpp_pretty_printer/cpp_pretty_printer_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/cpp_pretty_printer/cpp_pretty_printer_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/cpp_pretty_printer/cpp_pretty_printer_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/cpp_pretty_printer/cpp_pretty_printer_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/cpp_tokenizer.h b/opencv_face_detect/src/main/cpp/dlib/cpp_tokenizer.h similarity index 100% rename from app/src/main/cpp/dlib/cpp_tokenizer.h rename to opencv_face_detect/src/main/cpp/dlib/cpp_tokenizer.h diff --git a/app/src/main/cpp/dlib/cpp_tokenizer/cpp_tokenizer_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/cpp_tokenizer/cpp_tokenizer_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/cpp_tokenizer/cpp_tokenizer_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/cpp_tokenizer/cpp_tokenizer_kernel_1.h diff --git a/app/src/main/cpp/dlib/cpp_tokenizer/cpp_tokenizer_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/cpp_tokenizer/cpp_tokenizer_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/cpp_tokenizer/cpp_tokenizer_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/cpp_tokenizer/cpp_tokenizer_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/cpp_tokenizer/cpp_tokenizer_kernel_c.h b/opencv_face_detect/src/main/cpp/dlib/cpp_tokenizer/cpp_tokenizer_kernel_c.h similarity index 100% rename from app/src/main/cpp/dlib/cpp_tokenizer/cpp_tokenizer_kernel_c.h rename to opencv_face_detect/src/main/cpp/dlib/cpp_tokenizer/cpp_tokenizer_kernel_c.h diff --git a/app/src/main/cpp/dlib/crc32.h b/opencv_face_detect/src/main/cpp/dlib/crc32.h similarity index 100% rename from app/src/main/cpp/dlib/crc32.h rename to opencv_face_detect/src/main/cpp/dlib/crc32.h diff --git a/app/src/main/cpp/dlib/crc32/crc32_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/crc32/crc32_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/crc32/crc32_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/crc32/crc32_kernel_1.h diff --git a/app/src/main/cpp/dlib/crc32/crc32_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/crc32/crc32_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/crc32/crc32_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/crc32/crc32_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/cstring b/opencv_face_detect/src/main/cpp/dlib/cstring similarity index 100% rename from app/src/main/cpp/dlib/cstring rename to opencv_face_detect/src/main/cpp/dlib/cstring diff --git a/app/src/main/cpp/dlib/cuda/cpu_dlib.cpp b/opencv_face_detect/src/main/cpp/dlib/cuda/cpu_dlib.cpp similarity index 100% rename from app/src/main/cpp/dlib/cuda/cpu_dlib.cpp rename to opencv_face_detect/src/main/cpp/dlib/cuda/cpu_dlib.cpp diff --git a/app/src/main/cpp/dlib/cuda/cpu_dlib.h b/opencv_face_detect/src/main/cpp/dlib/cuda/cpu_dlib.h similarity index 100% rename from app/src/main/cpp/dlib/cuda/cpu_dlib.h rename to opencv_face_detect/src/main/cpp/dlib/cuda/cpu_dlib.h diff --git a/app/src/main/cpp/dlib/cuda/cublas_dlibapi.cpp b/opencv_face_detect/src/main/cpp/dlib/cuda/cublas_dlibapi.cpp similarity index 100% rename from app/src/main/cpp/dlib/cuda/cublas_dlibapi.cpp rename to opencv_face_detect/src/main/cpp/dlib/cuda/cublas_dlibapi.cpp diff --git a/app/src/main/cpp/dlib/cuda/cublas_dlibapi.h b/opencv_face_detect/src/main/cpp/dlib/cuda/cublas_dlibapi.h similarity index 100% rename from app/src/main/cpp/dlib/cuda/cublas_dlibapi.h rename to opencv_face_detect/src/main/cpp/dlib/cuda/cublas_dlibapi.h diff --git a/app/src/main/cpp/dlib/cuda/cuda_data_ptr.cpp b/opencv_face_detect/src/main/cpp/dlib/cuda/cuda_data_ptr.cpp similarity index 100% rename from app/src/main/cpp/dlib/cuda/cuda_data_ptr.cpp rename to opencv_face_detect/src/main/cpp/dlib/cuda/cuda_data_ptr.cpp diff --git a/app/src/main/cpp/dlib/cuda/cuda_data_ptr.h b/opencv_face_detect/src/main/cpp/dlib/cuda/cuda_data_ptr.h similarity index 100% rename from app/src/main/cpp/dlib/cuda/cuda_data_ptr.h rename to opencv_face_detect/src/main/cpp/dlib/cuda/cuda_data_ptr.h diff --git a/app/src/main/cpp/dlib/cuda/cuda_dlib.cu b/opencv_face_detect/src/main/cpp/dlib/cuda/cuda_dlib.cu similarity index 100% rename from app/src/main/cpp/dlib/cuda/cuda_dlib.cu rename to opencv_face_detect/src/main/cpp/dlib/cuda/cuda_dlib.cu diff --git a/app/src/main/cpp/dlib/cuda/cuda_dlib.h b/opencv_face_detect/src/main/cpp/dlib/cuda/cuda_dlib.h similarity index 100% rename from app/src/main/cpp/dlib/cuda/cuda_dlib.h rename to opencv_face_detect/src/main/cpp/dlib/cuda/cuda_dlib.h diff --git a/app/src/main/cpp/dlib/cuda/cuda_errors.h b/opencv_face_detect/src/main/cpp/dlib/cuda/cuda_errors.h similarity index 100% rename from app/src/main/cpp/dlib/cuda/cuda_errors.h rename to opencv_face_detect/src/main/cpp/dlib/cuda/cuda_errors.h diff --git a/app/src/main/cpp/dlib/cuda/cuda_utils.h b/opencv_face_detect/src/main/cpp/dlib/cuda/cuda_utils.h similarity index 100% rename from app/src/main/cpp/dlib/cuda/cuda_utils.h rename to opencv_face_detect/src/main/cpp/dlib/cuda/cuda_utils.h diff --git a/app/src/main/cpp/dlib/cuda/cudnn_dlibapi.cpp b/opencv_face_detect/src/main/cpp/dlib/cuda/cudnn_dlibapi.cpp similarity index 100% rename from app/src/main/cpp/dlib/cuda/cudnn_dlibapi.cpp rename to opencv_face_detect/src/main/cpp/dlib/cuda/cudnn_dlibapi.cpp diff --git a/app/src/main/cpp/dlib/cuda/cudnn_dlibapi.h b/opencv_face_detect/src/main/cpp/dlib/cuda/cudnn_dlibapi.h similarity index 100% rename from app/src/main/cpp/dlib/cuda/cudnn_dlibapi.h rename to opencv_face_detect/src/main/cpp/dlib/cuda/cudnn_dlibapi.h diff --git a/app/src/main/cpp/dlib/cuda/curand_dlibapi.cpp b/opencv_face_detect/src/main/cpp/dlib/cuda/curand_dlibapi.cpp similarity index 100% rename from app/src/main/cpp/dlib/cuda/curand_dlibapi.cpp rename to opencv_face_detect/src/main/cpp/dlib/cuda/curand_dlibapi.cpp diff --git a/app/src/main/cpp/dlib/cuda/curand_dlibapi.h b/opencv_face_detect/src/main/cpp/dlib/cuda/curand_dlibapi.h similarity index 100% rename from app/src/main/cpp/dlib/cuda/curand_dlibapi.h rename to opencv_face_detect/src/main/cpp/dlib/cuda/curand_dlibapi.h diff --git a/app/src/main/cpp/dlib/cuda/cusolver_dlibapi.cu b/opencv_face_detect/src/main/cpp/dlib/cuda/cusolver_dlibapi.cu similarity index 100% rename from app/src/main/cpp/dlib/cuda/cusolver_dlibapi.cu rename to opencv_face_detect/src/main/cpp/dlib/cuda/cusolver_dlibapi.cu diff --git a/app/src/main/cpp/dlib/cuda/cusolver_dlibapi.h b/opencv_face_detect/src/main/cpp/dlib/cuda/cusolver_dlibapi.h similarity index 100% rename from app/src/main/cpp/dlib/cuda/cusolver_dlibapi.h rename to opencv_face_detect/src/main/cpp/dlib/cuda/cusolver_dlibapi.h diff --git a/app/src/main/cpp/dlib/cuda/gpu_data.cpp b/opencv_face_detect/src/main/cpp/dlib/cuda/gpu_data.cpp similarity index 100% rename from app/src/main/cpp/dlib/cuda/gpu_data.cpp rename to opencv_face_detect/src/main/cpp/dlib/cuda/gpu_data.cpp diff --git a/app/src/main/cpp/dlib/cuda/gpu_data.h b/opencv_face_detect/src/main/cpp/dlib/cuda/gpu_data.h similarity index 100% rename from app/src/main/cpp/dlib/cuda/gpu_data.h rename to opencv_face_detect/src/main/cpp/dlib/cuda/gpu_data.h diff --git a/app/src/main/cpp/dlib/cuda/gpu_data_abstract.h b/opencv_face_detect/src/main/cpp/dlib/cuda/gpu_data_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/cuda/gpu_data_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/cuda/gpu_data_abstract.h diff --git a/app/src/main/cpp/dlib/cuda/tensor.h b/opencv_face_detect/src/main/cpp/dlib/cuda/tensor.h similarity index 100% rename from app/src/main/cpp/dlib/cuda/tensor.h rename to opencv_face_detect/src/main/cpp/dlib/cuda/tensor.h diff --git a/app/src/main/cpp/dlib/cuda/tensor_abstract.h b/opencv_face_detect/src/main/cpp/dlib/cuda/tensor_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/cuda/tensor_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/cuda/tensor_abstract.h diff --git a/app/src/main/cpp/dlib/cuda/tensor_tools.cpp b/opencv_face_detect/src/main/cpp/dlib/cuda/tensor_tools.cpp similarity index 100% rename from app/src/main/cpp/dlib/cuda/tensor_tools.cpp rename to opencv_face_detect/src/main/cpp/dlib/cuda/tensor_tools.cpp diff --git a/app/src/main/cpp/dlib/cuda/tensor_tools.h b/opencv_face_detect/src/main/cpp/dlib/cuda/tensor_tools.h similarity index 100% rename from app/src/main/cpp/dlib/cuda/tensor_tools.h rename to opencv_face_detect/src/main/cpp/dlib/cuda/tensor_tools.h diff --git a/app/src/main/cpp/dlib/data_io.h b/opencv_face_detect/src/main/cpp/dlib/data_io.h similarity index 100% rename from app/src/main/cpp/dlib/data_io.h rename to opencv_face_detect/src/main/cpp/dlib/data_io.h diff --git a/app/src/main/cpp/dlib/data_io/image_dataset_metadata.cpp b/opencv_face_detect/src/main/cpp/dlib/data_io/image_dataset_metadata.cpp similarity index 100% rename from app/src/main/cpp/dlib/data_io/image_dataset_metadata.cpp rename to opencv_face_detect/src/main/cpp/dlib/data_io/image_dataset_metadata.cpp diff --git a/app/src/main/cpp/dlib/data_io/image_dataset_metadata.h b/opencv_face_detect/src/main/cpp/dlib/data_io/image_dataset_metadata.h similarity index 100% rename from app/src/main/cpp/dlib/data_io/image_dataset_metadata.h rename to opencv_face_detect/src/main/cpp/dlib/data_io/image_dataset_metadata.h diff --git a/app/src/main/cpp/dlib/data_io/libsvm_io.h b/opencv_face_detect/src/main/cpp/dlib/data_io/libsvm_io.h similarity index 100% rename from app/src/main/cpp/dlib/data_io/libsvm_io.h rename to opencv_face_detect/src/main/cpp/dlib/data_io/libsvm_io.h diff --git a/app/src/main/cpp/dlib/data_io/libsvm_io_abstract.h b/opencv_face_detect/src/main/cpp/dlib/data_io/libsvm_io_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/data_io/libsvm_io_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/data_io/libsvm_io_abstract.h diff --git a/app/src/main/cpp/dlib/data_io/load_image_dataset.h b/opencv_face_detect/src/main/cpp/dlib/data_io/load_image_dataset.h similarity index 100% rename from app/src/main/cpp/dlib/data_io/load_image_dataset.h rename to opencv_face_detect/src/main/cpp/dlib/data_io/load_image_dataset.h diff --git a/app/src/main/cpp/dlib/data_io/load_image_dataset_abstract.h b/opencv_face_detect/src/main/cpp/dlib/data_io/load_image_dataset_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/data_io/load_image_dataset_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/data_io/load_image_dataset_abstract.h diff --git a/app/src/main/cpp/dlib/data_io/mnist.cpp b/opencv_face_detect/src/main/cpp/dlib/data_io/mnist.cpp similarity index 100% rename from app/src/main/cpp/dlib/data_io/mnist.cpp rename to opencv_face_detect/src/main/cpp/dlib/data_io/mnist.cpp diff --git a/app/src/main/cpp/dlib/data_io/mnist.h b/opencv_face_detect/src/main/cpp/dlib/data_io/mnist.h similarity index 100% rename from app/src/main/cpp/dlib/data_io/mnist.h rename to opencv_face_detect/src/main/cpp/dlib/data_io/mnist.h diff --git a/app/src/main/cpp/dlib/data_io/mnist_abstract.h b/opencv_face_detect/src/main/cpp/dlib/data_io/mnist_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/data_io/mnist_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/data_io/mnist_abstract.h diff --git a/app/src/main/cpp/dlib/dir_nav.h b/opencv_face_detect/src/main/cpp/dlib/dir_nav.h similarity index 100% rename from app/src/main/cpp/dlib/dir_nav.h rename to opencv_face_detect/src/main/cpp/dlib/dir_nav.h diff --git a/app/src/main/cpp/dlib/dir_nav/dir_nav_extensions.cpp b/opencv_face_detect/src/main/cpp/dlib/dir_nav/dir_nav_extensions.cpp similarity index 100% rename from app/src/main/cpp/dlib/dir_nav/dir_nav_extensions.cpp rename to opencv_face_detect/src/main/cpp/dlib/dir_nav/dir_nav_extensions.cpp diff --git a/app/src/main/cpp/dlib/dir_nav/dir_nav_extensions.h b/opencv_face_detect/src/main/cpp/dlib/dir_nav/dir_nav_extensions.h similarity index 100% rename from app/src/main/cpp/dlib/dir_nav/dir_nav_extensions.h rename to opencv_face_detect/src/main/cpp/dlib/dir_nav/dir_nav_extensions.h diff --git a/app/src/main/cpp/dlib/dir_nav/dir_nav_extensions_abstract.h b/opencv_face_detect/src/main/cpp/dlib/dir_nav/dir_nav_extensions_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/dir_nav/dir_nav_extensions_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/dir_nav/dir_nav_extensions_abstract.h diff --git a/app/src/main/cpp/dlib/dir_nav/dir_nav_kernel_1.cpp b/opencv_face_detect/src/main/cpp/dlib/dir_nav/dir_nav_kernel_1.cpp similarity index 100% rename from app/src/main/cpp/dlib/dir_nav/dir_nav_kernel_1.cpp rename to opencv_face_detect/src/main/cpp/dlib/dir_nav/dir_nav_kernel_1.cpp diff --git a/app/src/main/cpp/dlib/dir_nav/dir_nav_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/dir_nav/dir_nav_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/dir_nav/dir_nav_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/dir_nav/dir_nav_kernel_1.h diff --git a/app/src/main/cpp/dlib/dir_nav/dir_nav_kernel_2.cpp b/opencv_face_detect/src/main/cpp/dlib/dir_nav/dir_nav_kernel_2.cpp similarity index 100% rename from app/src/main/cpp/dlib/dir_nav/dir_nav_kernel_2.cpp rename to opencv_face_detect/src/main/cpp/dlib/dir_nav/dir_nav_kernel_2.cpp diff --git a/app/src/main/cpp/dlib/dir_nav/dir_nav_kernel_2.h b/opencv_face_detect/src/main/cpp/dlib/dir_nav/dir_nav_kernel_2.h similarity index 100% rename from app/src/main/cpp/dlib/dir_nav/dir_nav_kernel_2.h rename to opencv_face_detect/src/main/cpp/dlib/dir_nav/dir_nav_kernel_2.h diff --git a/app/src/main/cpp/dlib/dir_nav/dir_nav_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/dir_nav/dir_nav_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/dir_nav/dir_nav_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/dir_nav/dir_nav_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/dir_nav/posix.h b/opencv_face_detect/src/main/cpp/dlib/dir_nav/posix.h similarity index 100% rename from app/src/main/cpp/dlib/dir_nav/posix.h rename to opencv_face_detect/src/main/cpp/dlib/dir_nav/posix.h diff --git a/app/src/main/cpp/dlib/dir_nav/windows.h b/opencv_face_detect/src/main/cpp/dlib/dir_nav/windows.h similarity index 100% rename from app/src/main/cpp/dlib/dir_nav/windows.h rename to opencv_face_detect/src/main/cpp/dlib/dir_nav/windows.h diff --git a/app/src/main/cpp/dlib/directed_graph.h b/opencv_face_detect/src/main/cpp/dlib/directed_graph.h similarity index 100% rename from app/src/main/cpp/dlib/directed_graph.h rename to opencv_face_detect/src/main/cpp/dlib/directed_graph.h diff --git a/app/src/main/cpp/dlib/directed_graph/directed_graph_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/directed_graph/directed_graph_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/directed_graph/directed_graph_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/directed_graph/directed_graph_kernel_1.h diff --git a/app/src/main/cpp/dlib/directed_graph/directed_graph_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/directed_graph/directed_graph_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/directed_graph/directed_graph_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/directed_graph/directed_graph_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/disjoint_subsets.h b/opencv_face_detect/src/main/cpp/dlib/disjoint_subsets.h similarity index 100% rename from app/src/main/cpp/dlib/disjoint_subsets.h rename to opencv_face_detect/src/main/cpp/dlib/disjoint_subsets.h diff --git a/app/src/main/cpp/dlib/disjoint_subsets/disjoint_subsets.h b/opencv_face_detect/src/main/cpp/dlib/disjoint_subsets/disjoint_subsets.h similarity index 100% rename from app/src/main/cpp/dlib/disjoint_subsets/disjoint_subsets.h rename to opencv_face_detect/src/main/cpp/dlib/disjoint_subsets/disjoint_subsets.h diff --git a/app/src/main/cpp/dlib/disjoint_subsets/disjoint_subsets_abstract.h b/opencv_face_detect/src/main/cpp/dlib/disjoint_subsets/disjoint_subsets_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/disjoint_subsets/disjoint_subsets_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/disjoint_subsets/disjoint_subsets_abstract.h diff --git a/app/src/main/cpp/dlib/disjoint_subsets/disjoint_subsets_sized.h b/opencv_face_detect/src/main/cpp/dlib/disjoint_subsets/disjoint_subsets_sized.h similarity index 100% rename from app/src/main/cpp/dlib/disjoint_subsets/disjoint_subsets_sized.h rename to opencv_face_detect/src/main/cpp/dlib/disjoint_subsets/disjoint_subsets_sized.h diff --git a/app/src/main/cpp/dlib/disjoint_subsets/disjoint_subsets_sized_abstract.h b/opencv_face_detect/src/main/cpp/dlib/disjoint_subsets/disjoint_subsets_sized_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/disjoint_subsets/disjoint_subsets_sized_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/disjoint_subsets/disjoint_subsets_sized_abstract.h diff --git a/app/src/main/cpp/dlib/dlib_basic_cpp_build_tutorial.txt b/opencv_face_detect/src/main/cpp/dlib/dlib_basic_cpp_build_tutorial.txt similarity index 100% rename from app/src/main/cpp/dlib/dlib_basic_cpp_build_tutorial.txt rename to opencv_face_detect/src/main/cpp/dlib/dlib_basic_cpp_build_tutorial.txt diff --git a/app/src/main/cpp/dlib/dlib_include_path_tutorial.txt b/opencv_face_detect/src/main/cpp/dlib/dlib_include_path_tutorial.txt similarity index 100% rename from app/src/main/cpp/dlib/dlib_include_path_tutorial.txt rename to opencv_face_detect/src/main/cpp/dlib/dlib_include_path_tutorial.txt diff --git a/app/src/main/cpp/dlib/dnn.h b/opencv_face_detect/src/main/cpp/dlib/dnn.h similarity index 100% rename from app/src/main/cpp/dlib/dnn.h rename to opencv_face_detect/src/main/cpp/dlib/dnn.h diff --git a/app/src/main/cpp/dlib/dnn/core.h b/opencv_face_detect/src/main/cpp/dlib/dnn/core.h similarity index 100% rename from app/src/main/cpp/dlib/dnn/core.h rename to opencv_face_detect/src/main/cpp/dlib/dnn/core.h diff --git a/app/src/main/cpp/dlib/dnn/core_abstract.h b/opencv_face_detect/src/main/cpp/dlib/dnn/core_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/dnn/core_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/dnn/core_abstract.h diff --git a/app/src/main/cpp/dlib/dnn/input.h b/opencv_face_detect/src/main/cpp/dlib/dnn/input.h similarity index 100% rename from app/src/main/cpp/dlib/dnn/input.h rename to opencv_face_detect/src/main/cpp/dlib/dnn/input.h diff --git a/app/src/main/cpp/dlib/dnn/input_abstract.h b/opencv_face_detect/src/main/cpp/dlib/dnn/input_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/dnn/input_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/dnn/input_abstract.h diff --git a/app/src/main/cpp/dlib/dnn/layers.h b/opencv_face_detect/src/main/cpp/dlib/dnn/layers.h similarity index 100% rename from app/src/main/cpp/dlib/dnn/layers.h rename to opencv_face_detect/src/main/cpp/dlib/dnn/layers.h diff --git a/app/src/main/cpp/dlib/dnn/layers_abstract.h b/opencv_face_detect/src/main/cpp/dlib/dnn/layers_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/dnn/layers_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/dnn/layers_abstract.h diff --git a/app/src/main/cpp/dlib/dnn/loss.h b/opencv_face_detect/src/main/cpp/dlib/dnn/loss.h similarity index 100% rename from app/src/main/cpp/dlib/dnn/loss.h rename to opencv_face_detect/src/main/cpp/dlib/dnn/loss.h diff --git a/app/src/main/cpp/dlib/dnn/loss_abstract.h b/opencv_face_detect/src/main/cpp/dlib/dnn/loss_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/dnn/loss_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/dnn/loss_abstract.h diff --git a/app/src/main/cpp/dlib/dnn/solvers.h b/opencv_face_detect/src/main/cpp/dlib/dnn/solvers.h similarity index 100% rename from app/src/main/cpp/dlib/dnn/solvers.h rename to opencv_face_detect/src/main/cpp/dlib/dnn/solvers.h diff --git a/app/src/main/cpp/dlib/dnn/solvers_abstract.h b/opencv_face_detect/src/main/cpp/dlib/dnn/solvers_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/dnn/solvers_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/dnn/solvers_abstract.h diff --git a/app/src/main/cpp/dlib/dnn/trainer.h b/opencv_face_detect/src/main/cpp/dlib/dnn/trainer.h similarity index 100% rename from app/src/main/cpp/dlib/dnn/trainer.h rename to opencv_face_detect/src/main/cpp/dlib/dnn/trainer.h diff --git a/app/src/main/cpp/dlib/dnn/trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/dnn/trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/dnn/trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/dnn/trainer_abstract.h diff --git a/app/src/main/cpp/dlib/dnn/utilities.h b/opencv_face_detect/src/main/cpp/dlib/dnn/utilities.h similarity index 100% rename from app/src/main/cpp/dlib/dnn/utilities.h rename to opencv_face_detect/src/main/cpp/dlib/dnn/utilities.h diff --git a/app/src/main/cpp/dlib/dnn/utilities_abstract.h b/opencv_face_detect/src/main/cpp/dlib/dnn/utilities_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/dnn/utilities_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/dnn/utilities_abstract.h diff --git a/app/src/main/cpp/dlib/dnn/validation.h b/opencv_face_detect/src/main/cpp/dlib/dnn/validation.h similarity index 100% rename from app/src/main/cpp/dlib/dnn/validation.h rename to opencv_face_detect/src/main/cpp/dlib/dnn/validation.h diff --git a/app/src/main/cpp/dlib/enable_if.h b/opencv_face_detect/src/main/cpp/dlib/enable_if.h similarity index 100% rename from app/src/main/cpp/dlib/enable_if.h rename to opencv_face_detect/src/main/cpp/dlib/enable_if.h diff --git a/app/src/main/cpp/dlib/entropy_decoder.h b/opencv_face_detect/src/main/cpp/dlib/entropy_decoder.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_decoder.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_decoder.h diff --git a/app/src/main/cpp/dlib/entropy_decoder/entropy_decoder_kernel_1.cpp b/opencv_face_detect/src/main/cpp/dlib/entropy_decoder/entropy_decoder_kernel_1.cpp similarity index 100% rename from app/src/main/cpp/dlib/entropy_decoder/entropy_decoder_kernel_1.cpp rename to opencv_face_detect/src/main/cpp/dlib/entropy_decoder/entropy_decoder_kernel_1.cpp diff --git a/app/src/main/cpp/dlib/entropy_decoder/entropy_decoder_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/entropy_decoder/entropy_decoder_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_decoder/entropy_decoder_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_decoder/entropy_decoder_kernel_1.h diff --git a/app/src/main/cpp/dlib/entropy_decoder/entropy_decoder_kernel_2.cpp b/opencv_face_detect/src/main/cpp/dlib/entropy_decoder/entropy_decoder_kernel_2.cpp similarity index 100% rename from app/src/main/cpp/dlib/entropy_decoder/entropy_decoder_kernel_2.cpp rename to opencv_face_detect/src/main/cpp/dlib/entropy_decoder/entropy_decoder_kernel_2.cpp diff --git a/app/src/main/cpp/dlib/entropy_decoder/entropy_decoder_kernel_2.h b/opencv_face_detect/src/main/cpp/dlib/entropy_decoder/entropy_decoder_kernel_2.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_decoder/entropy_decoder_kernel_2.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_decoder/entropy_decoder_kernel_2.h diff --git a/app/src/main/cpp/dlib/entropy_decoder/entropy_decoder_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/entropy_decoder/entropy_decoder_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_decoder/entropy_decoder_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_decoder/entropy_decoder_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/entropy_decoder/entropy_decoder_kernel_c.h b/opencv_face_detect/src/main/cpp/dlib/entropy_decoder/entropy_decoder_kernel_c.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_decoder/entropy_decoder_kernel_c.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_decoder/entropy_decoder_kernel_c.h diff --git a/app/src/main/cpp/dlib/entropy_decoder_model.h b/opencv_face_detect/src/main/cpp/dlib/entropy_decoder_model.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_decoder_model.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_decoder_model.h diff --git a/app/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_1.h diff --git a/app/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_2.h b/opencv_face_detect/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_2.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_2.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_2.h diff --git a/app/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_3.h b/opencv_face_detect/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_3.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_3.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_3.h diff --git a/app/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_4.h b/opencv_face_detect/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_4.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_4.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_4.h diff --git a/app/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_5.h b/opencv_face_detect/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_5.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_5.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_5.h diff --git a/app/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_6.h b/opencv_face_detect/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_6.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_6.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_6.h diff --git a/app/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_decoder_model/entropy_decoder_model_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/entropy_encoder.h b/opencv_face_detect/src/main/cpp/dlib/entropy_encoder.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_encoder.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_encoder.h diff --git a/app/src/main/cpp/dlib/entropy_encoder/entropy_encoder_kernel_1.cpp b/opencv_face_detect/src/main/cpp/dlib/entropy_encoder/entropy_encoder_kernel_1.cpp similarity index 100% rename from app/src/main/cpp/dlib/entropy_encoder/entropy_encoder_kernel_1.cpp rename to opencv_face_detect/src/main/cpp/dlib/entropy_encoder/entropy_encoder_kernel_1.cpp diff --git a/app/src/main/cpp/dlib/entropy_encoder/entropy_encoder_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/entropy_encoder/entropy_encoder_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_encoder/entropy_encoder_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_encoder/entropy_encoder_kernel_1.h diff --git a/app/src/main/cpp/dlib/entropy_encoder/entropy_encoder_kernel_2.cpp b/opencv_face_detect/src/main/cpp/dlib/entropy_encoder/entropy_encoder_kernel_2.cpp similarity index 100% rename from app/src/main/cpp/dlib/entropy_encoder/entropy_encoder_kernel_2.cpp rename to opencv_face_detect/src/main/cpp/dlib/entropy_encoder/entropy_encoder_kernel_2.cpp diff --git a/app/src/main/cpp/dlib/entropy_encoder/entropy_encoder_kernel_2.h b/opencv_face_detect/src/main/cpp/dlib/entropy_encoder/entropy_encoder_kernel_2.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_encoder/entropy_encoder_kernel_2.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_encoder/entropy_encoder_kernel_2.h diff --git a/app/src/main/cpp/dlib/entropy_encoder/entropy_encoder_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/entropy_encoder/entropy_encoder_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_encoder/entropy_encoder_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_encoder/entropy_encoder_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/entropy_encoder/entropy_encoder_kernel_c.h b/opencv_face_detect/src/main/cpp/dlib/entropy_encoder/entropy_encoder_kernel_c.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_encoder/entropy_encoder_kernel_c.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_encoder/entropy_encoder_kernel_c.h diff --git a/app/src/main/cpp/dlib/entropy_encoder_model.h b/opencv_face_detect/src/main/cpp/dlib/entropy_encoder_model.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_encoder_model.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_encoder_model.h diff --git a/app/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_1.h diff --git a/app/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_2.h b/opencv_face_detect/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_2.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_2.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_2.h diff --git a/app/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_3.h b/opencv_face_detect/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_3.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_3.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_3.h diff --git a/app/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_4.h b/opencv_face_detect/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_4.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_4.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_4.h diff --git a/app/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_5.h b/opencv_face_detect/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_5.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_5.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_5.h diff --git a/app/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_6.h b/opencv_face_detect/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_6.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_6.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_6.h diff --git a/app/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_c.h b/opencv_face_detect/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_c.h similarity index 100% rename from app/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_c.h rename to opencv_face_detect/src/main/cpp/dlib/entropy_encoder_model/entropy_encoder_model_kernel_c.h diff --git a/app/src/main/cpp/dlib/error.h b/opencv_face_detect/src/main/cpp/dlib/error.h similarity index 100% rename from app/src/main/cpp/dlib/error.h rename to opencv_face_detect/src/main/cpp/dlib/error.h diff --git a/app/src/main/cpp/dlib/external/cblas/CMakeLists.txt b/opencv_face_detect/src/main/cpp/dlib/external/cblas/CMakeLists.txt similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/CMakeLists.txt rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/CMakeLists.txt diff --git a/app/src/main/cpp/dlib/external/cblas/README b/opencv_face_detect/src/main/cpp/dlib/external/cblas/README similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/README rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/README diff --git a/app/src/main/cpp/dlib/external/cblas/cblas.h b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas.h similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas.h rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas.h diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_caxpy.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_caxpy.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_caxpy.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_caxpy.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_ccopy.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ccopy.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_ccopy.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ccopy.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_cdotc_sub.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_cdotc_sub.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_cdotc_sub.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_cdotc_sub.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_cdotu_sub.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_cdotu_sub.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_cdotu_sub.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_cdotu_sub.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_cgbmv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_cgbmv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_cgbmv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_cgbmv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_cgemm.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_cgemm.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_cgemm.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_cgemm.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_cgemv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_cgemv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_cgemv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_cgemv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_cgerc.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_cgerc.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_cgerc.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_cgerc.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_cgeru.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_cgeru.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_cgeru.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_cgeru.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_chbmv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_chbmv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_chbmv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_chbmv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_chemm.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_chemm.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_chemm.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_chemm.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_chemv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_chemv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_chemv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_chemv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_cher.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_cher.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_cher.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_cher.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_cher2.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_cher2.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_cher2.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_cher2.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_cher2k.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_cher2k.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_cher2k.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_cher2k.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_cherk.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_cherk.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_cherk.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_cherk.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_chpmv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_chpmv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_chpmv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_chpmv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_chpr.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_chpr.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_chpr.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_chpr.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_chpr2.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_chpr2.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_chpr2.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_chpr2.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_cscal.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_cscal.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_cscal.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_cscal.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_csscal.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_csscal.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_csscal.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_csscal.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_cswap.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_cswap.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_cswap.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_cswap.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_csymm.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_csymm.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_csymm.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_csymm.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_csyr2k.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_csyr2k.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_csyr2k.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_csyr2k.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_csyrk.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_csyrk.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_csyrk.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_csyrk.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_ctbmv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ctbmv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_ctbmv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ctbmv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_ctbsv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ctbsv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_ctbsv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ctbsv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_ctpmv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ctpmv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_ctpmv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ctpmv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_ctpsv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ctpsv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_ctpsv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ctpsv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_ctrmm.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ctrmm.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_ctrmm.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ctrmm.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_ctrmv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ctrmv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_ctrmv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ctrmv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_ctrsm.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ctrsm.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_ctrsm.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ctrsm.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_ctrsv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ctrsv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_ctrsv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ctrsv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dasum.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dasum.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dasum.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dasum.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_daxpy.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_daxpy.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_daxpy.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_daxpy.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dcopy.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dcopy.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dcopy.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dcopy.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_ddot.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ddot.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_ddot.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ddot.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dgbmv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dgbmv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dgbmv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dgbmv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dgemm.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dgemm.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dgemm.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dgemm.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dgemv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dgemv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dgemv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dgemv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dger.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dger.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dger.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dger.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dnrm2.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dnrm2.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dnrm2.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dnrm2.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_drot.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_drot.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_drot.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_drot.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_drotg.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_drotg.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_drotg.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_drotg.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_drotm.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_drotm.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_drotm.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_drotm.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_drotmg.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_drotmg.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_drotmg.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_drotmg.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dsbmv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dsbmv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dsbmv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dsbmv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dscal.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dscal.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dscal.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dscal.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dsdot.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dsdot.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dsdot.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dsdot.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dspmv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dspmv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dspmv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dspmv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dspr.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dspr.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dspr.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dspr.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dspr2.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dspr2.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dspr2.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dspr2.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dswap.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dswap.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dswap.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dswap.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dsymm.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dsymm.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dsymm.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dsymm.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dsymv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dsymv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dsymv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dsymv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dsyr.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dsyr.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dsyr.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dsyr.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dsyr2.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dsyr2.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dsyr2.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dsyr2.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dsyr2k.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dsyr2k.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dsyr2k.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dsyr2k.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dsyrk.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dsyrk.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dsyrk.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dsyrk.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dtbmv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dtbmv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dtbmv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dtbmv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dtbsv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dtbsv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dtbsv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dtbsv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dtpmv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dtpmv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dtpmv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dtpmv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dtpsv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dtpsv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dtpsv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dtpsv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dtrmm.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dtrmm.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dtrmm.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dtrmm.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dtrmv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dtrmv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dtrmv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dtrmv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dtrsm.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dtrsm.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dtrsm.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dtrsm.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dtrsv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dtrsv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dtrsv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dtrsv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dzasum.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dzasum.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dzasum.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dzasum.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_dznrm2.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dznrm2.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_dznrm2.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_dznrm2.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_f77.h b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_f77.h similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_f77.h rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_f77.h diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_icamax.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_icamax.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_icamax.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_icamax.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_idamax.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_idamax.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_idamax.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_idamax.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_isamax.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_isamax.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_isamax.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_isamax.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_izamax.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_izamax.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_izamax.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_izamax.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_sasum.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_sasum.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_sasum.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_sasum.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_saxpy.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_saxpy.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_saxpy.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_saxpy.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_scasum.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_scasum.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_scasum.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_scasum.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_scnrm2.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_scnrm2.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_scnrm2.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_scnrm2.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_scopy.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_scopy.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_scopy.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_scopy.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_sdot.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_sdot.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_sdot.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_sdot.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_sdsdot.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_sdsdot.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_sdsdot.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_sdsdot.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_sgbmv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_sgbmv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_sgbmv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_sgbmv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_sgemm.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_sgemm.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_sgemm.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_sgemm.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_sgemv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_sgemv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_sgemv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_sgemv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_sger.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_sger.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_sger.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_sger.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_snrm2.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_snrm2.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_snrm2.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_snrm2.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_srot.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_srot.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_srot.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_srot.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_srotg.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_srotg.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_srotg.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_srotg.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_srotm.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_srotm.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_srotm.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_srotm.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_srotmg.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_srotmg.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_srotmg.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_srotmg.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_ssbmv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ssbmv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_ssbmv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ssbmv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_sscal.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_sscal.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_sscal.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_sscal.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_sspmv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_sspmv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_sspmv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_sspmv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_sspr.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_sspr.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_sspr.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_sspr.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_sspr2.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_sspr2.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_sspr2.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_sspr2.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_sswap.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_sswap.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_sswap.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_sswap.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_ssymm.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ssymm.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_ssymm.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ssymm.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_ssymv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ssymv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_ssymv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ssymv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_ssyr.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ssyr.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_ssyr.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ssyr.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_ssyr2.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ssyr2.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_ssyr2.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ssyr2.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_ssyr2k.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ssyr2k.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_ssyr2k.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ssyr2k.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_ssyrk.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ssyrk.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_ssyrk.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ssyrk.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_stbmv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_stbmv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_stbmv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_stbmv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_stbsv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_stbsv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_stbsv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_stbsv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_stpmv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_stpmv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_stpmv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_stpmv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_stpsv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_stpsv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_stpsv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_stpsv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_strmm.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_strmm.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_strmm.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_strmm.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_strmv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_strmv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_strmv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_strmv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_strsm.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_strsm.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_strsm.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_strsm.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_strsv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_strsv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_strsv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_strsv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_xerbla.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_xerbla.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_xerbla.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_xerbla.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_zaxpy.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zaxpy.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_zaxpy.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zaxpy.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_zcopy.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zcopy.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_zcopy.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zcopy.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_zdotc_sub.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zdotc_sub.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_zdotc_sub.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zdotc_sub.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_zdotu_sub.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zdotu_sub.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_zdotu_sub.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zdotu_sub.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_zdscal.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zdscal.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_zdscal.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zdscal.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_zgbmv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zgbmv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_zgbmv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zgbmv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_zgemm.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zgemm.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_zgemm.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zgemm.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_zgemv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zgemv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_zgemv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zgemv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_zgerc.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zgerc.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_zgerc.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zgerc.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_zgeru.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zgeru.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_zgeru.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zgeru.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_zhbmv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zhbmv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_zhbmv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zhbmv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_zhemm.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zhemm.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_zhemm.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zhemm.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_zhemv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zhemv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_zhemv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zhemv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_zher.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zher.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_zher.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zher.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_zher2.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zher2.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_zher2.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zher2.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_zher2k.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zher2k.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_zher2k.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zher2k.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_zherk.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zherk.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_zherk.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zherk.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_zhpmv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zhpmv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_zhpmv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zhpmv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_zhpr.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zhpr.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_zhpr.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zhpr.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_zhpr2.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zhpr2.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_zhpr2.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zhpr2.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_zscal.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zscal.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_zscal.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zscal.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_zswap.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zswap.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_zswap.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zswap.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_zsymm.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zsymm.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_zsymm.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zsymm.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_zsyr2k.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zsyr2k.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_zsyr2k.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zsyr2k.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_zsyrk.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zsyrk.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_zsyrk.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_zsyrk.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_ztbmv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ztbmv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_ztbmv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ztbmv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_ztbsv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ztbsv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_ztbsv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ztbsv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_ztpmv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ztpmv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_ztpmv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ztpmv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_ztpsv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ztpsv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_ztpsv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ztpsv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_ztrmm.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ztrmm.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_ztrmm.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ztrmm.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_ztrmv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ztrmv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_ztrmv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ztrmv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_ztrsm.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ztrsm.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_ztrsm.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ztrsm.c diff --git a/app/src/main/cpp/dlib/external/cblas/cblas_ztrsv.c b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ztrsv.c similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cblas_ztrsv.c rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cblas_ztrsv.c diff --git a/app/src/main/cpp/dlib/external/cblas/cdotcsub.f b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cdotcsub.f similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cdotcsub.f rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cdotcsub.f diff --git a/app/src/main/cpp/dlib/external/cblas/cdotusub.f b/opencv_face_detect/src/main/cpp/dlib/external/cblas/cdotusub.f similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/cdotusub.f rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/cdotusub.f diff --git a/app/src/main/cpp/dlib/external/cblas/dasumsub.f b/opencv_face_detect/src/main/cpp/dlib/external/cblas/dasumsub.f similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/dasumsub.f rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/dasumsub.f diff --git a/app/src/main/cpp/dlib/external/cblas/ddotsub.f b/opencv_face_detect/src/main/cpp/dlib/external/cblas/ddotsub.f similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/ddotsub.f rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/ddotsub.f diff --git a/app/src/main/cpp/dlib/external/cblas/dnrm2sub.f b/opencv_face_detect/src/main/cpp/dlib/external/cblas/dnrm2sub.f similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/dnrm2sub.f rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/dnrm2sub.f diff --git a/app/src/main/cpp/dlib/external/cblas/dsdotsub.f b/opencv_face_detect/src/main/cpp/dlib/external/cblas/dsdotsub.f similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/dsdotsub.f rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/dsdotsub.f diff --git a/app/src/main/cpp/dlib/external/cblas/dzasumsub.f b/opencv_face_detect/src/main/cpp/dlib/external/cblas/dzasumsub.f similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/dzasumsub.f rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/dzasumsub.f diff --git a/app/src/main/cpp/dlib/external/cblas/dznrm2sub.f b/opencv_face_detect/src/main/cpp/dlib/external/cblas/dznrm2sub.f similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/dznrm2sub.f rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/dznrm2sub.f diff --git a/app/src/main/cpp/dlib/external/cblas/icamaxsub.f b/opencv_face_detect/src/main/cpp/dlib/external/cblas/icamaxsub.f similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/icamaxsub.f rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/icamaxsub.f diff --git a/app/src/main/cpp/dlib/external/cblas/idamaxsub.f b/opencv_face_detect/src/main/cpp/dlib/external/cblas/idamaxsub.f similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/idamaxsub.f rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/idamaxsub.f diff --git a/app/src/main/cpp/dlib/external/cblas/isamaxsub.f b/opencv_face_detect/src/main/cpp/dlib/external/cblas/isamaxsub.f similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/isamaxsub.f rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/isamaxsub.f diff --git a/app/src/main/cpp/dlib/external/cblas/izamaxsub.f b/opencv_face_detect/src/main/cpp/dlib/external/cblas/izamaxsub.f similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/izamaxsub.f rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/izamaxsub.f diff --git a/app/src/main/cpp/dlib/external/cblas/sasumsub.f b/opencv_face_detect/src/main/cpp/dlib/external/cblas/sasumsub.f similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/sasumsub.f rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/sasumsub.f diff --git a/app/src/main/cpp/dlib/external/cblas/scasumsub.f b/opencv_face_detect/src/main/cpp/dlib/external/cblas/scasumsub.f similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/scasumsub.f rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/scasumsub.f diff --git a/app/src/main/cpp/dlib/external/cblas/scnrm2sub.f b/opencv_face_detect/src/main/cpp/dlib/external/cblas/scnrm2sub.f similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/scnrm2sub.f rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/scnrm2sub.f diff --git a/app/src/main/cpp/dlib/external/cblas/sdotsub.f b/opencv_face_detect/src/main/cpp/dlib/external/cblas/sdotsub.f similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/sdotsub.f rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/sdotsub.f diff --git a/app/src/main/cpp/dlib/external/cblas/sdsdotsub.f b/opencv_face_detect/src/main/cpp/dlib/external/cblas/sdsdotsub.f similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/sdsdotsub.f rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/sdsdotsub.f diff --git a/app/src/main/cpp/dlib/external/cblas/snrm2sub.f b/opencv_face_detect/src/main/cpp/dlib/external/cblas/snrm2sub.f similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/snrm2sub.f rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/snrm2sub.f diff --git a/app/src/main/cpp/dlib/external/cblas/zdotcsub.f b/opencv_face_detect/src/main/cpp/dlib/external/cblas/zdotcsub.f similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/zdotcsub.f rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/zdotcsub.f diff --git a/app/src/main/cpp/dlib/external/cblas/zdotusub.f b/opencv_face_detect/src/main/cpp/dlib/external/cblas/zdotusub.f similarity index 100% rename from app/src/main/cpp/dlib/external/cblas/zdotusub.f rename to opencv_face_detect/src/main/cpp/dlib/external/cblas/zdotusub.f diff --git a/app/src/main/cpp/dlib/external/libjpeg/README b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/README similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/README rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/README diff --git a/app/src/main/cpp/dlib/external/libjpeg/jcapimin.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jcapimin.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jcapimin.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jcapimin.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jcapistd.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jcapistd.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jcapistd.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jcapistd.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jccoefct.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jccoefct.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jccoefct.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jccoefct.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jccolor.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jccolor.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jccolor.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jccolor.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jcdctmgr.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jcdctmgr.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jcdctmgr.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jcdctmgr.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jchuff.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jchuff.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jchuff.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jchuff.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jchuff.h b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jchuff.h similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jchuff.h rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jchuff.h diff --git a/app/src/main/cpp/dlib/external/libjpeg/jcinit.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jcinit.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jcinit.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jcinit.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jcmainct.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jcmainct.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jcmainct.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jcmainct.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jcmarker.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jcmarker.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jcmarker.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jcmarker.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jcmaster.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jcmaster.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jcmaster.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jcmaster.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jcomapi.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jcomapi.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jcomapi.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jcomapi.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jconfig.h b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jconfig.h similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jconfig.h rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jconfig.h diff --git a/app/src/main/cpp/dlib/external/libjpeg/jcparam.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jcparam.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jcparam.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jcparam.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jcphuff.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jcphuff.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jcphuff.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jcphuff.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jcprepct.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jcprepct.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jcprepct.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jcprepct.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jcsample.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jcsample.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jcsample.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jcsample.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jdapimin.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdapimin.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jdapimin.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdapimin.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jdapistd.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdapistd.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jdapistd.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdapistd.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jdatadst.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdatadst.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jdatadst.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdatadst.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jdatasrc.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdatasrc.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jdatasrc.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdatasrc.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jdcoefct.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdcoefct.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jdcoefct.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdcoefct.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jdcolor.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdcolor.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jdcolor.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdcolor.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jdct.h b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdct.h similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jdct.h rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdct.h diff --git a/app/src/main/cpp/dlib/external/libjpeg/jddctmgr.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jddctmgr.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jddctmgr.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jddctmgr.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jdhuff.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdhuff.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jdhuff.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdhuff.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jdhuff.h b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdhuff.h similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jdhuff.h rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdhuff.h diff --git a/app/src/main/cpp/dlib/external/libjpeg/jdinput.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdinput.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jdinput.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdinput.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jdmainct.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdmainct.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jdmainct.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdmainct.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jdmarker.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdmarker.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jdmarker.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdmarker.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jdmaster.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdmaster.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jdmaster.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdmaster.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jdmerge.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdmerge.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jdmerge.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdmerge.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jdphuff.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdphuff.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jdphuff.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdphuff.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jdpostct.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdpostct.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jdpostct.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdpostct.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jdsample.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdsample.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jdsample.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jdsample.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jerror.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jerror.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jerror.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jerror.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jerror.h b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jerror.h similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jerror.h rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jerror.h diff --git a/app/src/main/cpp/dlib/external/libjpeg/jfdctflt.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jfdctflt.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jfdctflt.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jfdctflt.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jfdctfst.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jfdctfst.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jfdctfst.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jfdctfst.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jfdctint.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jfdctint.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jfdctint.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jfdctint.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jidctflt.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jidctflt.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jidctflt.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jidctflt.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jidctfst.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jidctfst.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jidctfst.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jidctfst.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jidctint.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jidctint.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jidctint.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jidctint.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jidctred.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jidctred.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jidctred.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jidctred.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jinclude.h b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jinclude.h similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jinclude.h rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jinclude.h diff --git a/app/src/main/cpp/dlib/external/libjpeg/jmemmgr.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jmemmgr.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jmemmgr.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jmemmgr.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jmemnobs.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jmemnobs.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jmemnobs.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jmemnobs.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jmemsys.h b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jmemsys.h similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jmemsys.h rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jmemsys.h diff --git a/app/src/main/cpp/dlib/external/libjpeg/jmorecfg.h b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jmorecfg.h similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jmorecfg.h rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jmorecfg.h diff --git a/app/src/main/cpp/dlib/external/libjpeg/jpegint.h b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jpegint.h similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jpegint.h rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jpegint.h diff --git a/app/src/main/cpp/dlib/external/libjpeg/jpeglib.h b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jpeglib.h similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jpeglib.h rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jpeglib.h diff --git a/app/src/main/cpp/dlib/external/libjpeg/jquant1.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jquant1.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jquant1.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jquant1.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jquant2.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jquant2.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jquant2.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jquant2.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jutils.cpp b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jutils.cpp similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jutils.cpp rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jutils.cpp diff --git a/app/src/main/cpp/dlib/external/libjpeg/jversion.h b/opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jversion.h similarity index 100% rename from app/src/main/cpp/dlib/external/libjpeg/jversion.h rename to opencv_face_detect/src/main/cpp/dlib/external/libjpeg/jversion.h diff --git a/app/src/main/cpp/dlib/external/libpng/LICENSE b/opencv_face_detect/src/main/cpp/dlib/external/libpng/LICENSE similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/LICENSE rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/LICENSE diff --git a/app/src/main/cpp/dlib/external/libpng/README b/opencv_face_detect/src/main/cpp/dlib/external/libpng/README similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/README rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/README diff --git a/app/src/main/cpp/dlib/external/libpng/arm/arm_init.c b/opencv_face_detect/src/main/cpp/dlib/external/libpng/arm/arm_init.c similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/arm/arm_init.c rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/arm/arm_init.c diff --git a/app/src/main/cpp/dlib/external/libpng/arm/filter_neon.S b/opencv_face_detect/src/main/cpp/dlib/external/libpng/arm/filter_neon.S similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/arm/filter_neon.S rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/arm/filter_neon.S diff --git a/app/src/main/cpp/dlib/external/libpng/arm/filter_neon_intrinsics.c b/opencv_face_detect/src/main/cpp/dlib/external/libpng/arm/filter_neon_intrinsics.c similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/arm/filter_neon_intrinsics.c rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/arm/filter_neon_intrinsics.c diff --git a/app/src/main/cpp/dlib/external/libpng/png.c b/opencv_face_detect/src/main/cpp/dlib/external/libpng/png.c similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/png.c rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/png.c diff --git a/app/src/main/cpp/dlib/external/libpng/png.h b/opencv_face_detect/src/main/cpp/dlib/external/libpng/png.h similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/png.h rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/png.h diff --git a/app/src/main/cpp/dlib/external/libpng/pngconf.h b/opencv_face_detect/src/main/cpp/dlib/external/libpng/pngconf.h similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/pngconf.h rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/pngconf.h diff --git a/app/src/main/cpp/dlib/external/libpng/pngdebug.h b/opencv_face_detect/src/main/cpp/dlib/external/libpng/pngdebug.h similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/pngdebug.h rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/pngdebug.h diff --git a/app/src/main/cpp/dlib/external/libpng/pngerror.c b/opencv_face_detect/src/main/cpp/dlib/external/libpng/pngerror.c similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/pngerror.c rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/pngerror.c diff --git a/app/src/main/cpp/dlib/external/libpng/pngget.c b/opencv_face_detect/src/main/cpp/dlib/external/libpng/pngget.c similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/pngget.c rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/pngget.c diff --git a/app/src/main/cpp/dlib/external/libpng/pnginfo.h b/opencv_face_detect/src/main/cpp/dlib/external/libpng/pnginfo.h similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/pnginfo.h rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/pnginfo.h diff --git a/app/src/main/cpp/dlib/external/libpng/pnglibconf.h b/opencv_face_detect/src/main/cpp/dlib/external/libpng/pnglibconf.h similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/pnglibconf.h rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/pnglibconf.h diff --git a/app/src/main/cpp/dlib/external/libpng/pngmem.c b/opencv_face_detect/src/main/cpp/dlib/external/libpng/pngmem.c similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/pngmem.c rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/pngmem.c diff --git a/app/src/main/cpp/dlib/external/libpng/pngpread.c b/opencv_face_detect/src/main/cpp/dlib/external/libpng/pngpread.c similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/pngpread.c rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/pngpread.c diff --git a/app/src/main/cpp/dlib/external/libpng/pngpriv.h b/opencv_face_detect/src/main/cpp/dlib/external/libpng/pngpriv.h similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/pngpriv.h rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/pngpriv.h diff --git a/app/src/main/cpp/dlib/external/libpng/pngread.c b/opencv_face_detect/src/main/cpp/dlib/external/libpng/pngread.c similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/pngread.c rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/pngread.c diff --git a/app/src/main/cpp/dlib/external/libpng/pngrio.c b/opencv_face_detect/src/main/cpp/dlib/external/libpng/pngrio.c similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/pngrio.c rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/pngrio.c diff --git a/app/src/main/cpp/dlib/external/libpng/pngrtran.c b/opencv_face_detect/src/main/cpp/dlib/external/libpng/pngrtran.c similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/pngrtran.c rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/pngrtran.c diff --git a/app/src/main/cpp/dlib/external/libpng/pngrutil.c b/opencv_face_detect/src/main/cpp/dlib/external/libpng/pngrutil.c similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/pngrutil.c rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/pngrutil.c diff --git a/app/src/main/cpp/dlib/external/libpng/pngset.c b/opencv_face_detect/src/main/cpp/dlib/external/libpng/pngset.c similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/pngset.c rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/pngset.c diff --git a/app/src/main/cpp/dlib/external/libpng/pngstruct.h b/opencv_face_detect/src/main/cpp/dlib/external/libpng/pngstruct.h similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/pngstruct.h rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/pngstruct.h diff --git a/app/src/main/cpp/dlib/external/libpng/pngtrans.c b/opencv_face_detect/src/main/cpp/dlib/external/libpng/pngtrans.c similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/pngtrans.c rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/pngtrans.c diff --git a/app/src/main/cpp/dlib/external/libpng/pngwio.c b/opencv_face_detect/src/main/cpp/dlib/external/libpng/pngwio.c similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/pngwio.c rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/pngwio.c diff --git a/app/src/main/cpp/dlib/external/libpng/pngwrite.c b/opencv_face_detect/src/main/cpp/dlib/external/libpng/pngwrite.c similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/pngwrite.c rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/pngwrite.c diff --git a/app/src/main/cpp/dlib/external/libpng/pngwtran.c b/opencv_face_detect/src/main/cpp/dlib/external/libpng/pngwtran.c similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/pngwtran.c rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/pngwtran.c diff --git a/app/src/main/cpp/dlib/external/libpng/pngwutil.c b/opencv_face_detect/src/main/cpp/dlib/external/libpng/pngwutil.c similarity index 100% rename from app/src/main/cpp/dlib/external/libpng/pngwutil.c rename to opencv_face_detect/src/main/cpp/dlib/external/libpng/pngwutil.c diff --git a/app/src/main/cpp/dlib/external/pybind11/CMakeLists.txt b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/CMakeLists.txt similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/CMakeLists.txt rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/CMakeLists.txt diff --git a/app/src/main/cpp/dlib/external/pybind11/CONTRIBUTING.md b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/CONTRIBUTING.md similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/CONTRIBUTING.md rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/CONTRIBUTING.md diff --git a/app/src/main/cpp/dlib/external/pybind11/LICENSE b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/LICENSE similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/LICENSE rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/LICENSE diff --git a/app/src/main/cpp/dlib/external/pybind11/README.md b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/README.md similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/README.md rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/README.md diff --git a/app/src/main/cpp/dlib/external/pybind11/include/pybind11/attr.h b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/attr.h similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/include/pybind11/attr.h rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/attr.h diff --git a/app/src/main/cpp/dlib/external/pybind11/include/pybind11/buffer_info.h b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/buffer_info.h similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/include/pybind11/buffer_info.h rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/buffer_info.h diff --git a/app/src/main/cpp/dlib/external/pybind11/include/pybind11/cast.h b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/cast.h similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/include/pybind11/cast.h rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/cast.h diff --git a/app/src/main/cpp/dlib/external/pybind11/include/pybind11/chrono.h b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/chrono.h similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/include/pybind11/chrono.h rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/chrono.h diff --git a/app/src/main/cpp/dlib/external/pybind11/include/pybind11/common.h b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/common.h similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/include/pybind11/common.h rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/common.h diff --git a/app/src/main/cpp/dlib/external/pybind11/include/pybind11/complex.h b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/complex.h similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/include/pybind11/complex.h rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/complex.h diff --git a/app/src/main/cpp/dlib/external/pybind11/include/pybind11/detail/class.h b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/detail/class.h similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/include/pybind11/detail/class.h rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/detail/class.h diff --git a/app/src/main/cpp/dlib/external/pybind11/include/pybind11/detail/common.h b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/detail/common.h similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/include/pybind11/detail/common.h rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/detail/common.h diff --git a/app/src/main/cpp/dlib/external/pybind11/include/pybind11/detail/descr.h b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/detail/descr.h similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/include/pybind11/detail/descr.h rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/detail/descr.h diff --git a/app/src/main/cpp/dlib/external/pybind11/include/pybind11/detail/init.h b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/detail/init.h similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/include/pybind11/detail/init.h rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/detail/init.h diff --git a/app/src/main/cpp/dlib/external/pybind11/include/pybind11/detail/internals.h b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/detail/internals.h similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/include/pybind11/detail/internals.h rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/detail/internals.h diff --git a/app/src/main/cpp/dlib/external/pybind11/include/pybind11/detail/typeid.h b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/detail/typeid.h similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/include/pybind11/detail/typeid.h rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/detail/typeid.h diff --git a/app/src/main/cpp/dlib/external/pybind11/include/pybind11/eigen.h b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/eigen.h similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/include/pybind11/eigen.h rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/eigen.h diff --git a/app/src/main/cpp/dlib/external/pybind11/include/pybind11/embed.h b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/embed.h similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/include/pybind11/embed.h rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/embed.h diff --git a/app/src/main/cpp/dlib/external/pybind11/include/pybind11/eval.h b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/eval.h similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/include/pybind11/eval.h rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/eval.h diff --git a/app/src/main/cpp/dlib/external/pybind11/include/pybind11/functional.h b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/functional.h similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/include/pybind11/functional.h rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/functional.h diff --git a/app/src/main/cpp/dlib/external/pybind11/include/pybind11/iostream.h b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/iostream.h similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/include/pybind11/iostream.h rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/iostream.h diff --git a/app/src/main/cpp/dlib/external/pybind11/include/pybind11/numpy.h b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/numpy.h similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/include/pybind11/numpy.h rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/numpy.h diff --git a/app/src/main/cpp/dlib/external/pybind11/include/pybind11/operators.h b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/operators.h similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/include/pybind11/operators.h rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/operators.h diff --git a/app/src/main/cpp/dlib/external/pybind11/include/pybind11/options.h b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/options.h similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/include/pybind11/options.h rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/options.h diff --git a/app/src/main/cpp/dlib/external/pybind11/include/pybind11/pybind11.h b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/pybind11.h similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/include/pybind11/pybind11.h rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/pybind11.h diff --git a/app/src/main/cpp/dlib/external/pybind11/include/pybind11/pytypes.h b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/pytypes.h similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/include/pybind11/pytypes.h rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/pytypes.h diff --git a/app/src/main/cpp/dlib/external/pybind11/include/pybind11/stl.h b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/stl.h similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/include/pybind11/stl.h rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/stl.h diff --git a/app/src/main/cpp/dlib/external/pybind11/include/pybind11/stl_bind.h b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/stl_bind.h similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/include/pybind11/stl_bind.h rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/include/pybind11/stl_bind.h diff --git a/app/src/main/cpp/dlib/external/pybind11/tools/FindCatch.cmake b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/tools/FindCatch.cmake similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/tools/FindCatch.cmake rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/tools/FindCatch.cmake diff --git a/app/src/main/cpp/dlib/external/pybind11/tools/FindEigen3.cmake b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/tools/FindEigen3.cmake similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/tools/FindEigen3.cmake rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/tools/FindEigen3.cmake diff --git a/app/src/main/cpp/dlib/external/pybind11/tools/FindPythonLibsNew.cmake b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/tools/FindPythonLibsNew.cmake similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/tools/FindPythonLibsNew.cmake rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/tools/FindPythonLibsNew.cmake diff --git a/app/src/main/cpp/dlib/external/pybind11/tools/check-style.sh b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/tools/check-style.sh similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/tools/check-style.sh rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/tools/check-style.sh diff --git a/app/src/main/cpp/dlib/external/pybind11/tools/libsize.py b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/tools/libsize.py similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/tools/libsize.py rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/tools/libsize.py diff --git a/app/src/main/cpp/dlib/external/pybind11/tools/mkdoc.py b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/tools/mkdoc.py similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/tools/mkdoc.py rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/tools/mkdoc.py diff --git a/app/src/main/cpp/dlib/external/pybind11/tools/pybind11Config.cmake.in b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/tools/pybind11Config.cmake.in similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/tools/pybind11Config.cmake.in rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/tools/pybind11Config.cmake.in diff --git a/app/src/main/cpp/dlib/external/pybind11/tools/pybind11Tools.cmake b/opencv_face_detect/src/main/cpp/dlib/external/pybind11/tools/pybind11Tools.cmake similarity index 100% rename from app/src/main/cpp/dlib/external/pybind11/tools/pybind11Tools.cmake rename to opencv_face_detect/src/main/cpp/dlib/external/pybind11/tools/pybind11Tools.cmake diff --git a/app/src/main/cpp/dlib/external/zlib/README b/opencv_face_detect/src/main/cpp/dlib/external/zlib/README similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/README rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/README diff --git a/app/src/main/cpp/dlib/external/zlib/adler32.c b/opencv_face_detect/src/main/cpp/dlib/external/zlib/adler32.c similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/adler32.c rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/adler32.c diff --git a/app/src/main/cpp/dlib/external/zlib/compress.c b/opencv_face_detect/src/main/cpp/dlib/external/zlib/compress.c similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/compress.c rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/compress.c diff --git a/app/src/main/cpp/dlib/external/zlib/crc32.c b/opencv_face_detect/src/main/cpp/dlib/external/zlib/crc32.c similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/crc32.c rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/crc32.c diff --git a/app/src/main/cpp/dlib/external/zlib/crc32.h b/opencv_face_detect/src/main/cpp/dlib/external/zlib/crc32.h similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/crc32.h rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/crc32.h diff --git a/app/src/main/cpp/dlib/external/zlib/deflate.c b/opencv_face_detect/src/main/cpp/dlib/external/zlib/deflate.c similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/deflate.c rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/deflate.c diff --git a/app/src/main/cpp/dlib/external/zlib/deflate.h b/opencv_face_detect/src/main/cpp/dlib/external/zlib/deflate.h similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/deflate.h rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/deflate.h diff --git a/app/src/main/cpp/dlib/external/zlib/gzclose.c b/opencv_face_detect/src/main/cpp/dlib/external/zlib/gzclose.c similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/gzclose.c rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/gzclose.c diff --git a/app/src/main/cpp/dlib/external/zlib/gzguts.h b/opencv_face_detect/src/main/cpp/dlib/external/zlib/gzguts.h similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/gzguts.h rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/gzguts.h diff --git a/app/src/main/cpp/dlib/external/zlib/gzlib.c b/opencv_face_detect/src/main/cpp/dlib/external/zlib/gzlib.c similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/gzlib.c rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/gzlib.c diff --git a/app/src/main/cpp/dlib/external/zlib/gzread.c b/opencv_face_detect/src/main/cpp/dlib/external/zlib/gzread.c similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/gzread.c rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/gzread.c diff --git a/app/src/main/cpp/dlib/external/zlib/gzwrite.c b/opencv_face_detect/src/main/cpp/dlib/external/zlib/gzwrite.c similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/gzwrite.c rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/gzwrite.c diff --git a/app/src/main/cpp/dlib/external/zlib/infback.c b/opencv_face_detect/src/main/cpp/dlib/external/zlib/infback.c similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/infback.c rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/infback.c diff --git a/app/src/main/cpp/dlib/external/zlib/inffast.c b/opencv_face_detect/src/main/cpp/dlib/external/zlib/inffast.c similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/inffast.c rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/inffast.c diff --git a/app/src/main/cpp/dlib/external/zlib/inffast.h b/opencv_face_detect/src/main/cpp/dlib/external/zlib/inffast.h similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/inffast.h rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/inffast.h diff --git a/app/src/main/cpp/dlib/external/zlib/inffixed.h b/opencv_face_detect/src/main/cpp/dlib/external/zlib/inffixed.h similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/inffixed.h rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/inffixed.h diff --git a/app/src/main/cpp/dlib/external/zlib/inflate.c b/opencv_face_detect/src/main/cpp/dlib/external/zlib/inflate.c similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/inflate.c rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/inflate.c diff --git a/app/src/main/cpp/dlib/external/zlib/inflate.h b/opencv_face_detect/src/main/cpp/dlib/external/zlib/inflate.h similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/inflate.h rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/inflate.h diff --git a/app/src/main/cpp/dlib/external/zlib/inftrees.c b/opencv_face_detect/src/main/cpp/dlib/external/zlib/inftrees.c similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/inftrees.c rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/inftrees.c diff --git a/app/src/main/cpp/dlib/external/zlib/inftrees.h b/opencv_face_detect/src/main/cpp/dlib/external/zlib/inftrees.h similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/inftrees.h rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/inftrees.h diff --git a/app/src/main/cpp/dlib/external/zlib/trees.c b/opencv_face_detect/src/main/cpp/dlib/external/zlib/trees.c similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/trees.c rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/trees.c diff --git a/app/src/main/cpp/dlib/external/zlib/trees.h b/opencv_face_detect/src/main/cpp/dlib/external/zlib/trees.h similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/trees.h rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/trees.h diff --git a/app/src/main/cpp/dlib/external/zlib/uncompr.c b/opencv_face_detect/src/main/cpp/dlib/external/zlib/uncompr.c similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/uncompr.c rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/uncompr.c diff --git a/app/src/main/cpp/dlib/external/zlib/zconf.h b/opencv_face_detect/src/main/cpp/dlib/external/zlib/zconf.h similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/zconf.h rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/zconf.h diff --git a/app/src/main/cpp/dlib/external/zlib/zlib.h b/opencv_face_detect/src/main/cpp/dlib/external/zlib/zlib.h similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/zlib.h rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/zlib.h diff --git a/app/src/main/cpp/dlib/external/zlib/zutil.c b/opencv_face_detect/src/main/cpp/dlib/external/zlib/zutil.c similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/zutil.c rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/zutil.c diff --git a/app/src/main/cpp/dlib/external/zlib/zutil.h b/opencv_face_detect/src/main/cpp/dlib/external/zlib/zutil.h similarity index 100% rename from app/src/main/cpp/dlib/external/zlib/zutil.h rename to opencv_face_detect/src/main/cpp/dlib/external/zlib/zutil.h diff --git a/app/src/main/cpp/dlib/filtering.h b/opencv_face_detect/src/main/cpp/dlib/filtering.h similarity index 100% rename from app/src/main/cpp/dlib/filtering.h rename to opencv_face_detect/src/main/cpp/dlib/filtering.h diff --git a/app/src/main/cpp/dlib/filtering/kalman_filter.cpp b/opencv_face_detect/src/main/cpp/dlib/filtering/kalman_filter.cpp similarity index 100% rename from app/src/main/cpp/dlib/filtering/kalman_filter.cpp rename to opencv_face_detect/src/main/cpp/dlib/filtering/kalman_filter.cpp diff --git a/app/src/main/cpp/dlib/filtering/kalman_filter.h b/opencv_face_detect/src/main/cpp/dlib/filtering/kalman_filter.h similarity index 100% rename from app/src/main/cpp/dlib/filtering/kalman_filter.h rename to opencv_face_detect/src/main/cpp/dlib/filtering/kalman_filter.h diff --git a/app/src/main/cpp/dlib/filtering/kalman_filter_abstract.h b/opencv_face_detect/src/main/cpp/dlib/filtering/kalman_filter_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/filtering/kalman_filter_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/filtering/kalman_filter_abstract.h diff --git a/app/src/main/cpp/dlib/filtering/rls_filter.h b/opencv_face_detect/src/main/cpp/dlib/filtering/rls_filter.h similarity index 100% rename from app/src/main/cpp/dlib/filtering/rls_filter.h rename to opencv_face_detect/src/main/cpp/dlib/filtering/rls_filter.h diff --git a/app/src/main/cpp/dlib/filtering/rls_filter_abstract.h b/opencv_face_detect/src/main/cpp/dlib/filtering/rls_filter_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/filtering/rls_filter_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/filtering/rls_filter_abstract.h diff --git a/app/src/main/cpp/dlib/float_details.h b/opencv_face_detect/src/main/cpp/dlib/float_details.h similarity index 100% rename from app/src/main/cpp/dlib/float_details.h rename to opencv_face_detect/src/main/cpp/dlib/float_details.h diff --git a/app/src/main/cpp/dlib/fstream b/opencv_face_detect/src/main/cpp/dlib/fstream similarity index 100% rename from app/src/main/cpp/dlib/fstream rename to opencv_face_detect/src/main/cpp/dlib/fstream diff --git a/app/src/main/cpp/dlib/general_hash/count_bits.h b/opencv_face_detect/src/main/cpp/dlib/general_hash/count_bits.h similarity index 100% rename from app/src/main/cpp/dlib/general_hash/count_bits.h rename to opencv_face_detect/src/main/cpp/dlib/general_hash/count_bits.h diff --git a/app/src/main/cpp/dlib/general_hash/count_bits_abstract.h b/opencv_face_detect/src/main/cpp/dlib/general_hash/count_bits_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/general_hash/count_bits_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/general_hash/count_bits_abstract.h diff --git a/app/src/main/cpp/dlib/general_hash/general_hash.h b/opencv_face_detect/src/main/cpp/dlib/general_hash/general_hash.h similarity index 100% rename from app/src/main/cpp/dlib/general_hash/general_hash.h rename to opencv_face_detect/src/main/cpp/dlib/general_hash/general_hash.h diff --git a/app/src/main/cpp/dlib/general_hash/hash.h b/opencv_face_detect/src/main/cpp/dlib/general_hash/hash.h similarity index 100% rename from app/src/main/cpp/dlib/general_hash/hash.h rename to opencv_face_detect/src/main/cpp/dlib/general_hash/hash.h diff --git a/app/src/main/cpp/dlib/general_hash/hash_abstract.h b/opencv_face_detect/src/main/cpp/dlib/general_hash/hash_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/general_hash/hash_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/general_hash/hash_abstract.h diff --git a/app/src/main/cpp/dlib/general_hash/murmur_hash3.h b/opencv_face_detect/src/main/cpp/dlib/general_hash/murmur_hash3.h similarity index 100% rename from app/src/main/cpp/dlib/general_hash/murmur_hash3.h rename to opencv_face_detect/src/main/cpp/dlib/general_hash/murmur_hash3.h diff --git a/app/src/main/cpp/dlib/general_hash/murmur_hash3_abstract.h b/opencv_face_detect/src/main/cpp/dlib/general_hash/murmur_hash3_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/general_hash/murmur_hash3_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/general_hash/murmur_hash3_abstract.h diff --git a/app/src/main/cpp/dlib/general_hash/random_hashing.h b/opencv_face_detect/src/main/cpp/dlib/general_hash/random_hashing.h similarity index 100% rename from app/src/main/cpp/dlib/general_hash/random_hashing.h rename to opencv_face_detect/src/main/cpp/dlib/general_hash/random_hashing.h diff --git a/app/src/main/cpp/dlib/general_hash/random_hashing_abstract.h b/opencv_face_detect/src/main/cpp/dlib/general_hash/random_hashing_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/general_hash/random_hashing_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/general_hash/random_hashing_abstract.h diff --git a/app/src/main/cpp/dlib/geometry.h b/opencv_face_detect/src/main/cpp/dlib/geometry.h similarity index 100% rename from app/src/main/cpp/dlib/geometry.h rename to opencv_face_detect/src/main/cpp/dlib/geometry.h diff --git a/app/src/main/cpp/dlib/geometry/border_enumerator.h b/opencv_face_detect/src/main/cpp/dlib/geometry/border_enumerator.h similarity index 100% rename from app/src/main/cpp/dlib/geometry/border_enumerator.h rename to opencv_face_detect/src/main/cpp/dlib/geometry/border_enumerator.h diff --git a/app/src/main/cpp/dlib/geometry/border_enumerator_abstract.h b/opencv_face_detect/src/main/cpp/dlib/geometry/border_enumerator_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/geometry/border_enumerator_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/geometry/border_enumerator_abstract.h diff --git a/app/src/main/cpp/dlib/geometry/drectangle.h b/opencv_face_detect/src/main/cpp/dlib/geometry/drectangle.h similarity index 100% rename from app/src/main/cpp/dlib/geometry/drectangle.h rename to opencv_face_detect/src/main/cpp/dlib/geometry/drectangle.h diff --git a/app/src/main/cpp/dlib/geometry/drectangle_abstract.h b/opencv_face_detect/src/main/cpp/dlib/geometry/drectangle_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/geometry/drectangle_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/geometry/drectangle_abstract.h diff --git a/app/src/main/cpp/dlib/geometry/line.h b/opencv_face_detect/src/main/cpp/dlib/geometry/line.h similarity index 100% rename from app/src/main/cpp/dlib/geometry/line.h rename to opencv_face_detect/src/main/cpp/dlib/geometry/line.h diff --git a/app/src/main/cpp/dlib/geometry/line_abstract.h b/opencv_face_detect/src/main/cpp/dlib/geometry/line_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/geometry/line_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/geometry/line_abstract.h diff --git a/app/src/main/cpp/dlib/geometry/point_transforms.h b/opencv_face_detect/src/main/cpp/dlib/geometry/point_transforms.h similarity index 100% rename from app/src/main/cpp/dlib/geometry/point_transforms.h rename to opencv_face_detect/src/main/cpp/dlib/geometry/point_transforms.h diff --git a/app/src/main/cpp/dlib/geometry/point_transforms_abstract.h b/opencv_face_detect/src/main/cpp/dlib/geometry/point_transforms_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/geometry/point_transforms_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/geometry/point_transforms_abstract.h diff --git a/app/src/main/cpp/dlib/geometry/rectangle.h b/opencv_face_detect/src/main/cpp/dlib/geometry/rectangle.h similarity index 100% rename from app/src/main/cpp/dlib/geometry/rectangle.h rename to opencv_face_detect/src/main/cpp/dlib/geometry/rectangle.h diff --git a/app/src/main/cpp/dlib/geometry/rectangle_abstract.h b/opencv_face_detect/src/main/cpp/dlib/geometry/rectangle_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/geometry/rectangle_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/geometry/rectangle_abstract.h diff --git a/app/src/main/cpp/dlib/geometry/vector.h b/opencv_face_detect/src/main/cpp/dlib/geometry/vector.h similarity index 100% rename from app/src/main/cpp/dlib/geometry/vector.h rename to opencv_face_detect/src/main/cpp/dlib/geometry/vector.h diff --git a/app/src/main/cpp/dlib/geometry/vector_abstract.h b/opencv_face_detect/src/main/cpp/dlib/geometry/vector_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/geometry/vector_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/geometry/vector_abstract.h diff --git a/app/src/main/cpp/dlib/global_optimization.h b/opencv_face_detect/src/main/cpp/dlib/global_optimization.h similarity index 100% rename from app/src/main/cpp/dlib/global_optimization.h rename to opencv_face_detect/src/main/cpp/dlib/global_optimization.h diff --git a/app/src/main/cpp/dlib/global_optimization/find_max_global.h b/opencv_face_detect/src/main/cpp/dlib/global_optimization/find_max_global.h similarity index 100% rename from app/src/main/cpp/dlib/global_optimization/find_max_global.h rename to opencv_face_detect/src/main/cpp/dlib/global_optimization/find_max_global.h diff --git a/app/src/main/cpp/dlib/global_optimization/find_max_global_abstract.h b/opencv_face_detect/src/main/cpp/dlib/global_optimization/find_max_global_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/global_optimization/find_max_global_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/global_optimization/find_max_global_abstract.h diff --git a/app/src/main/cpp/dlib/global_optimization/global_function_search.cpp b/opencv_face_detect/src/main/cpp/dlib/global_optimization/global_function_search.cpp similarity index 100% rename from app/src/main/cpp/dlib/global_optimization/global_function_search.cpp rename to opencv_face_detect/src/main/cpp/dlib/global_optimization/global_function_search.cpp diff --git a/app/src/main/cpp/dlib/global_optimization/global_function_search.h b/opencv_face_detect/src/main/cpp/dlib/global_optimization/global_function_search.h similarity index 100% rename from app/src/main/cpp/dlib/global_optimization/global_function_search.h rename to opencv_face_detect/src/main/cpp/dlib/global_optimization/global_function_search.h diff --git a/app/src/main/cpp/dlib/global_optimization/global_function_search_abstract.h b/opencv_face_detect/src/main/cpp/dlib/global_optimization/global_function_search_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/global_optimization/global_function_search_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/global_optimization/global_function_search_abstract.h diff --git a/app/src/main/cpp/dlib/global_optimization/upper_bound_function.h b/opencv_face_detect/src/main/cpp/dlib/global_optimization/upper_bound_function.h similarity index 100% rename from app/src/main/cpp/dlib/global_optimization/upper_bound_function.h rename to opencv_face_detect/src/main/cpp/dlib/global_optimization/upper_bound_function.h diff --git a/app/src/main/cpp/dlib/global_optimization/upper_bound_function_abstract.h b/opencv_face_detect/src/main/cpp/dlib/global_optimization/upper_bound_function_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/global_optimization/upper_bound_function_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/global_optimization/upper_bound_function_abstract.h diff --git a/app/src/main/cpp/dlib/graph.h b/opencv_face_detect/src/main/cpp/dlib/graph.h similarity index 100% rename from app/src/main/cpp/dlib/graph.h rename to opencv_face_detect/src/main/cpp/dlib/graph.h diff --git a/app/src/main/cpp/dlib/graph/graph_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/graph/graph_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/graph/graph_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/graph/graph_kernel_1.h diff --git a/app/src/main/cpp/dlib/graph/graph_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/graph/graph_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/graph/graph_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/graph/graph_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/graph_cuts.h b/opencv_face_detect/src/main/cpp/dlib/graph_cuts.h similarity index 100% rename from app/src/main/cpp/dlib/graph_cuts.h rename to opencv_face_detect/src/main/cpp/dlib/graph_cuts.h diff --git a/app/src/main/cpp/dlib/graph_cuts/find_max_factor_graph_potts.h b/opencv_face_detect/src/main/cpp/dlib/graph_cuts/find_max_factor_graph_potts.h similarity index 100% rename from app/src/main/cpp/dlib/graph_cuts/find_max_factor_graph_potts.h rename to opencv_face_detect/src/main/cpp/dlib/graph_cuts/find_max_factor_graph_potts.h diff --git a/app/src/main/cpp/dlib/graph_cuts/find_max_factor_graph_potts_abstract.h b/opencv_face_detect/src/main/cpp/dlib/graph_cuts/find_max_factor_graph_potts_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/graph_cuts/find_max_factor_graph_potts_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/graph_cuts/find_max_factor_graph_potts_abstract.h diff --git a/app/src/main/cpp/dlib/graph_cuts/general_flow_graph.h b/opencv_face_detect/src/main/cpp/dlib/graph_cuts/general_flow_graph.h similarity index 100% rename from app/src/main/cpp/dlib/graph_cuts/general_flow_graph.h rename to opencv_face_detect/src/main/cpp/dlib/graph_cuts/general_flow_graph.h diff --git a/app/src/main/cpp/dlib/graph_cuts/general_potts_problem.h b/opencv_face_detect/src/main/cpp/dlib/graph_cuts/general_potts_problem.h similarity index 100% rename from app/src/main/cpp/dlib/graph_cuts/general_potts_problem.h rename to opencv_face_detect/src/main/cpp/dlib/graph_cuts/general_potts_problem.h diff --git a/app/src/main/cpp/dlib/graph_cuts/graph_labeler.h b/opencv_face_detect/src/main/cpp/dlib/graph_cuts/graph_labeler.h similarity index 100% rename from app/src/main/cpp/dlib/graph_cuts/graph_labeler.h rename to opencv_face_detect/src/main/cpp/dlib/graph_cuts/graph_labeler.h diff --git a/app/src/main/cpp/dlib/graph_cuts/graph_labeler_abstract.h b/opencv_face_detect/src/main/cpp/dlib/graph_cuts/graph_labeler_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/graph_cuts/graph_labeler_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/graph_cuts/graph_labeler_abstract.h diff --git a/app/src/main/cpp/dlib/graph_cuts/min_cut.h b/opencv_face_detect/src/main/cpp/dlib/graph_cuts/min_cut.h similarity index 100% rename from app/src/main/cpp/dlib/graph_cuts/min_cut.h rename to opencv_face_detect/src/main/cpp/dlib/graph_cuts/min_cut.h diff --git a/app/src/main/cpp/dlib/graph_cuts/min_cut_abstract.h b/opencv_face_detect/src/main/cpp/dlib/graph_cuts/min_cut_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/graph_cuts/min_cut_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/graph_cuts/min_cut_abstract.h diff --git a/app/src/main/cpp/dlib/graph_utils.h b/opencv_face_detect/src/main/cpp/dlib/graph_utils.h similarity index 100% rename from app/src/main/cpp/dlib/graph_utils.h rename to opencv_face_detect/src/main/cpp/dlib/graph_utils.h diff --git a/app/src/main/cpp/dlib/graph_utils/edge_list_graphs.h b/opencv_face_detect/src/main/cpp/dlib/graph_utils/edge_list_graphs.h similarity index 100% rename from app/src/main/cpp/dlib/graph_utils/edge_list_graphs.h rename to opencv_face_detect/src/main/cpp/dlib/graph_utils/edge_list_graphs.h diff --git a/app/src/main/cpp/dlib/graph_utils/edge_list_graphs_abstract.h b/opencv_face_detect/src/main/cpp/dlib/graph_utils/edge_list_graphs_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/graph_utils/edge_list_graphs_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/graph_utils/edge_list_graphs_abstract.h diff --git a/app/src/main/cpp/dlib/graph_utils/find_k_nearest_neighbors_lsh.h b/opencv_face_detect/src/main/cpp/dlib/graph_utils/find_k_nearest_neighbors_lsh.h similarity index 100% rename from app/src/main/cpp/dlib/graph_utils/find_k_nearest_neighbors_lsh.h rename to opencv_face_detect/src/main/cpp/dlib/graph_utils/find_k_nearest_neighbors_lsh.h diff --git a/app/src/main/cpp/dlib/graph_utils/find_k_nearest_neighbors_lsh_abstract.h b/opencv_face_detect/src/main/cpp/dlib/graph_utils/find_k_nearest_neighbors_lsh_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/graph_utils/find_k_nearest_neighbors_lsh_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/graph_utils/find_k_nearest_neighbors_lsh_abstract.h diff --git a/app/src/main/cpp/dlib/graph_utils/function_objects.h b/opencv_face_detect/src/main/cpp/dlib/graph_utils/function_objects.h similarity index 100% rename from app/src/main/cpp/dlib/graph_utils/function_objects.h rename to opencv_face_detect/src/main/cpp/dlib/graph_utils/function_objects.h diff --git a/app/src/main/cpp/dlib/graph_utils/function_objects_abstract.h b/opencv_face_detect/src/main/cpp/dlib/graph_utils/function_objects_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/graph_utils/function_objects_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/graph_utils/function_objects_abstract.h diff --git a/app/src/main/cpp/dlib/graph_utils/graph_utils.h b/opencv_face_detect/src/main/cpp/dlib/graph_utils/graph_utils.h similarity index 100% rename from app/src/main/cpp/dlib/graph_utils/graph_utils.h rename to opencv_face_detect/src/main/cpp/dlib/graph_utils/graph_utils.h diff --git a/app/src/main/cpp/dlib/graph_utils/graph_utils_abstract.h b/opencv_face_detect/src/main/cpp/dlib/graph_utils/graph_utils_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/graph_utils/graph_utils_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/graph_utils/graph_utils_abstract.h diff --git a/app/src/main/cpp/dlib/graph_utils/ordered_sample_pair.h b/opencv_face_detect/src/main/cpp/dlib/graph_utils/ordered_sample_pair.h similarity index 100% rename from app/src/main/cpp/dlib/graph_utils/ordered_sample_pair.h rename to opencv_face_detect/src/main/cpp/dlib/graph_utils/ordered_sample_pair.h diff --git a/app/src/main/cpp/dlib/graph_utils/ordered_sample_pair_abstract.h b/opencv_face_detect/src/main/cpp/dlib/graph_utils/ordered_sample_pair_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/graph_utils/ordered_sample_pair_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/graph_utils/ordered_sample_pair_abstract.h diff --git a/app/src/main/cpp/dlib/graph_utils/sample_pair.h b/opencv_face_detect/src/main/cpp/dlib/graph_utils/sample_pair.h similarity index 100% rename from app/src/main/cpp/dlib/graph_utils/sample_pair.h rename to opencv_face_detect/src/main/cpp/dlib/graph_utils/sample_pair.h diff --git a/app/src/main/cpp/dlib/graph_utils/sample_pair_abstract.h b/opencv_face_detect/src/main/cpp/dlib/graph_utils/sample_pair_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/graph_utils/sample_pair_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/graph_utils/sample_pair_abstract.h diff --git a/app/src/main/cpp/dlib/graph_utils_threaded.h b/opencv_face_detect/src/main/cpp/dlib/graph_utils_threaded.h similarity index 100% rename from app/src/main/cpp/dlib/graph_utils_threaded.h rename to opencv_face_detect/src/main/cpp/dlib/graph_utils_threaded.h diff --git a/app/src/main/cpp/dlib/gui_core.h b/opencv_face_detect/src/main/cpp/dlib/gui_core.h similarity index 100% rename from app/src/main/cpp/dlib/gui_core.h rename to opencv_face_detect/src/main/cpp/dlib/gui_core.h diff --git a/app/src/main/cpp/dlib/gui_core/gui_core_kernel_1.cpp b/opencv_face_detect/src/main/cpp/dlib/gui_core/gui_core_kernel_1.cpp similarity index 100% rename from app/src/main/cpp/dlib/gui_core/gui_core_kernel_1.cpp rename to opencv_face_detect/src/main/cpp/dlib/gui_core/gui_core_kernel_1.cpp diff --git a/app/src/main/cpp/dlib/gui_core/gui_core_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/gui_core/gui_core_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/gui_core/gui_core_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/gui_core/gui_core_kernel_1.h diff --git a/app/src/main/cpp/dlib/gui_core/gui_core_kernel_2.cpp b/opencv_face_detect/src/main/cpp/dlib/gui_core/gui_core_kernel_2.cpp similarity index 100% rename from app/src/main/cpp/dlib/gui_core/gui_core_kernel_2.cpp rename to opencv_face_detect/src/main/cpp/dlib/gui_core/gui_core_kernel_2.cpp diff --git a/app/src/main/cpp/dlib/gui_core/gui_core_kernel_2.h b/opencv_face_detect/src/main/cpp/dlib/gui_core/gui_core_kernel_2.h similarity index 100% rename from app/src/main/cpp/dlib/gui_core/gui_core_kernel_2.h rename to opencv_face_detect/src/main/cpp/dlib/gui_core/gui_core_kernel_2.h diff --git a/app/src/main/cpp/dlib/gui_core/gui_core_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/gui_core/gui_core_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/gui_core/gui_core_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/gui_core/gui_core_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/gui_core/windows.h b/opencv_face_detect/src/main/cpp/dlib/gui_core/windows.h similarity index 100% rename from app/src/main/cpp/dlib/gui_core/windows.h rename to opencv_face_detect/src/main/cpp/dlib/gui_core/windows.h diff --git a/app/src/main/cpp/dlib/gui_core/xlib.h b/opencv_face_detect/src/main/cpp/dlib/gui_core/xlib.h similarity index 100% rename from app/src/main/cpp/dlib/gui_core/xlib.h rename to opencv_face_detect/src/main/cpp/dlib/gui_core/xlib.h diff --git a/app/src/main/cpp/dlib/gui_widgets.h b/opencv_face_detect/src/main/cpp/dlib/gui_widgets.h similarity index 100% rename from app/src/main/cpp/dlib/gui_widgets.h rename to opencv_face_detect/src/main/cpp/dlib/gui_widgets.h diff --git a/app/src/main/cpp/dlib/gui_widgets/base_widgets.cpp b/opencv_face_detect/src/main/cpp/dlib/gui_widgets/base_widgets.cpp similarity index 100% rename from app/src/main/cpp/dlib/gui_widgets/base_widgets.cpp rename to opencv_face_detect/src/main/cpp/dlib/gui_widgets/base_widgets.cpp diff --git a/app/src/main/cpp/dlib/gui_widgets/base_widgets.h b/opencv_face_detect/src/main/cpp/dlib/gui_widgets/base_widgets.h similarity index 100% rename from app/src/main/cpp/dlib/gui_widgets/base_widgets.h rename to opencv_face_detect/src/main/cpp/dlib/gui_widgets/base_widgets.h diff --git a/app/src/main/cpp/dlib/gui_widgets/base_widgets_abstract.h b/opencv_face_detect/src/main/cpp/dlib/gui_widgets/base_widgets_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/gui_widgets/base_widgets_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/gui_widgets/base_widgets_abstract.h diff --git a/app/src/main/cpp/dlib/gui_widgets/canvas_drawing.cpp b/opencv_face_detect/src/main/cpp/dlib/gui_widgets/canvas_drawing.cpp similarity index 100% rename from app/src/main/cpp/dlib/gui_widgets/canvas_drawing.cpp rename to opencv_face_detect/src/main/cpp/dlib/gui_widgets/canvas_drawing.cpp diff --git a/app/src/main/cpp/dlib/gui_widgets/canvas_drawing.h b/opencv_face_detect/src/main/cpp/dlib/gui_widgets/canvas_drawing.h similarity index 100% rename from app/src/main/cpp/dlib/gui_widgets/canvas_drawing.h rename to opencv_face_detect/src/main/cpp/dlib/gui_widgets/canvas_drawing.h diff --git a/app/src/main/cpp/dlib/gui_widgets/canvas_drawing_abstract.h b/opencv_face_detect/src/main/cpp/dlib/gui_widgets/canvas_drawing_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/gui_widgets/canvas_drawing_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/gui_widgets/canvas_drawing_abstract.h diff --git a/app/src/main/cpp/dlib/gui_widgets/drawable.cpp b/opencv_face_detect/src/main/cpp/dlib/gui_widgets/drawable.cpp similarity index 100% rename from app/src/main/cpp/dlib/gui_widgets/drawable.cpp rename to opencv_face_detect/src/main/cpp/dlib/gui_widgets/drawable.cpp diff --git a/app/src/main/cpp/dlib/gui_widgets/drawable.h b/opencv_face_detect/src/main/cpp/dlib/gui_widgets/drawable.h similarity index 100% rename from app/src/main/cpp/dlib/gui_widgets/drawable.h rename to opencv_face_detect/src/main/cpp/dlib/gui_widgets/drawable.h diff --git a/app/src/main/cpp/dlib/gui_widgets/drawable_abstract.h b/opencv_face_detect/src/main/cpp/dlib/gui_widgets/drawable_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/gui_widgets/drawable_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/gui_widgets/drawable_abstract.h diff --git a/app/src/main/cpp/dlib/gui_widgets/fonts.cpp b/opencv_face_detect/src/main/cpp/dlib/gui_widgets/fonts.cpp similarity index 100% rename from app/src/main/cpp/dlib/gui_widgets/fonts.cpp rename to opencv_face_detect/src/main/cpp/dlib/gui_widgets/fonts.cpp diff --git a/app/src/main/cpp/dlib/gui_widgets/fonts.h b/opencv_face_detect/src/main/cpp/dlib/gui_widgets/fonts.h similarity index 100% rename from app/src/main/cpp/dlib/gui_widgets/fonts.h rename to opencv_face_detect/src/main/cpp/dlib/gui_widgets/fonts.h diff --git a/app/src/main/cpp/dlib/gui_widgets/fonts_abstract.h b/opencv_face_detect/src/main/cpp/dlib/gui_widgets/fonts_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/gui_widgets/fonts_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/gui_widgets/fonts_abstract.h diff --git a/app/src/main/cpp/dlib/gui_widgets/nativefont.h b/opencv_face_detect/src/main/cpp/dlib/gui_widgets/nativefont.h similarity index 100% rename from app/src/main/cpp/dlib/gui_widgets/nativefont.h rename to opencv_face_detect/src/main/cpp/dlib/gui_widgets/nativefont.h diff --git a/app/src/main/cpp/dlib/gui_widgets/style.cpp b/opencv_face_detect/src/main/cpp/dlib/gui_widgets/style.cpp similarity index 100% rename from app/src/main/cpp/dlib/gui_widgets/style.cpp rename to opencv_face_detect/src/main/cpp/dlib/gui_widgets/style.cpp diff --git a/app/src/main/cpp/dlib/gui_widgets/style.h b/opencv_face_detect/src/main/cpp/dlib/gui_widgets/style.h similarity index 100% rename from app/src/main/cpp/dlib/gui_widgets/style.h rename to opencv_face_detect/src/main/cpp/dlib/gui_widgets/style.h diff --git a/app/src/main/cpp/dlib/gui_widgets/style_abstract.h b/opencv_face_detect/src/main/cpp/dlib/gui_widgets/style_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/gui_widgets/style_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/gui_widgets/style_abstract.h diff --git a/app/src/main/cpp/dlib/gui_widgets/widgets.cpp b/opencv_face_detect/src/main/cpp/dlib/gui_widgets/widgets.cpp similarity index 100% rename from app/src/main/cpp/dlib/gui_widgets/widgets.cpp rename to opencv_face_detect/src/main/cpp/dlib/gui_widgets/widgets.cpp diff --git a/app/src/main/cpp/dlib/gui_widgets/widgets.h b/opencv_face_detect/src/main/cpp/dlib/gui_widgets/widgets.h similarity index 100% rename from app/src/main/cpp/dlib/gui_widgets/widgets.h rename to opencv_face_detect/src/main/cpp/dlib/gui_widgets/widgets.h diff --git a/app/src/main/cpp/dlib/gui_widgets/widgets_abstract.h b/opencv_face_detect/src/main/cpp/dlib/gui_widgets/widgets_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/gui_widgets/widgets_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/gui_widgets/widgets_abstract.h diff --git a/app/src/main/cpp/dlib/hash.h b/opencv_face_detect/src/main/cpp/dlib/hash.h similarity index 100% rename from app/src/main/cpp/dlib/hash.h rename to opencv_face_detect/src/main/cpp/dlib/hash.h diff --git a/app/src/main/cpp/dlib/hash_map.h b/opencv_face_detect/src/main/cpp/dlib/hash_map.h similarity index 100% rename from app/src/main/cpp/dlib/hash_map.h rename to opencv_face_detect/src/main/cpp/dlib/hash_map.h diff --git a/app/src/main/cpp/dlib/hash_map/hash_map_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/hash_map/hash_map_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/hash_map/hash_map_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/hash_map/hash_map_kernel_1.h diff --git a/app/src/main/cpp/dlib/hash_map/hash_map_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/hash_map/hash_map_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/hash_map/hash_map_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/hash_map/hash_map_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/hash_map/hash_map_kernel_c.h b/opencv_face_detect/src/main/cpp/dlib/hash_map/hash_map_kernel_c.h similarity index 100% rename from app/src/main/cpp/dlib/hash_map/hash_map_kernel_c.h rename to opencv_face_detect/src/main/cpp/dlib/hash_map/hash_map_kernel_c.h diff --git a/app/src/main/cpp/dlib/hash_set.h b/opencv_face_detect/src/main/cpp/dlib/hash_set.h similarity index 100% rename from app/src/main/cpp/dlib/hash_set.h rename to opencv_face_detect/src/main/cpp/dlib/hash_set.h diff --git a/app/src/main/cpp/dlib/hash_set/hash_set_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/hash_set/hash_set_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/hash_set/hash_set_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/hash_set/hash_set_kernel_1.h diff --git a/app/src/main/cpp/dlib/hash_set/hash_set_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/hash_set/hash_set_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/hash_set/hash_set_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/hash_set/hash_set_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/hash_set/hash_set_kernel_c.h b/opencv_face_detect/src/main/cpp/dlib/hash_set/hash_set_kernel_c.h similarity index 100% rename from app/src/main/cpp/dlib/hash_set/hash_set_kernel_c.h rename to opencv_face_detect/src/main/cpp/dlib/hash_set/hash_set_kernel_c.h diff --git a/app/src/main/cpp/dlib/hash_table.h b/opencv_face_detect/src/main/cpp/dlib/hash_table.h similarity index 100% rename from app/src/main/cpp/dlib/hash_table.h rename to opencv_face_detect/src/main/cpp/dlib/hash_table.h diff --git a/app/src/main/cpp/dlib/hash_table/hash_table_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/hash_table/hash_table_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/hash_table/hash_table_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/hash_table/hash_table_kernel_1.h diff --git a/app/src/main/cpp/dlib/hash_table/hash_table_kernel_2.h b/opencv_face_detect/src/main/cpp/dlib/hash_table/hash_table_kernel_2.h similarity index 100% rename from app/src/main/cpp/dlib/hash_table/hash_table_kernel_2.h rename to opencv_face_detect/src/main/cpp/dlib/hash_table/hash_table_kernel_2.h diff --git a/app/src/main/cpp/dlib/hash_table/hash_table_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/hash_table/hash_table_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/hash_table/hash_table_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/hash_table/hash_table_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/hash_table/hash_table_kernel_c.h b/opencv_face_detect/src/main/cpp/dlib/hash_table/hash_table_kernel_c.h similarity index 100% rename from app/src/main/cpp/dlib/hash_table/hash_table_kernel_c.h rename to opencv_face_detect/src/main/cpp/dlib/hash_table/hash_table_kernel_c.h diff --git a/app/src/main/cpp/dlib/http_client/http_client.cpp b/opencv_face_detect/src/main/cpp/dlib/http_client/http_client.cpp similarity index 100% rename from app/src/main/cpp/dlib/http_client/http_client.cpp rename to opencv_face_detect/src/main/cpp/dlib/http_client/http_client.cpp diff --git a/app/src/main/cpp/dlib/http_client/http_client.h b/opencv_face_detect/src/main/cpp/dlib/http_client/http_client.h similarity index 100% rename from app/src/main/cpp/dlib/http_client/http_client.h rename to opencv_face_detect/src/main/cpp/dlib/http_client/http_client.h diff --git a/app/src/main/cpp/dlib/http_client/http_client_abstract.h b/opencv_face_detect/src/main/cpp/dlib/http_client/http_client_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/http_client/http_client_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/http_client/http_client_abstract.h diff --git a/app/src/main/cpp/dlib/image_io.h b/opencv_face_detect/src/main/cpp/dlib/image_io.h similarity index 100% rename from app/src/main/cpp/dlib/image_io.h rename to opencv_face_detect/src/main/cpp/dlib/image_io.h diff --git a/app/src/main/cpp/dlib/image_keypoint.h b/opencv_face_detect/src/main/cpp/dlib/image_keypoint.h similarity index 100% rename from app/src/main/cpp/dlib/image_keypoint.h rename to opencv_face_detect/src/main/cpp/dlib/image_keypoint.h diff --git a/app/src/main/cpp/dlib/image_keypoint/binned_vector_feature_image.h b/opencv_face_detect/src/main/cpp/dlib/image_keypoint/binned_vector_feature_image.h similarity index 100% rename from app/src/main/cpp/dlib/image_keypoint/binned_vector_feature_image.h rename to opencv_face_detect/src/main/cpp/dlib/image_keypoint/binned_vector_feature_image.h diff --git a/app/src/main/cpp/dlib/image_keypoint/binned_vector_feature_image_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_keypoint/binned_vector_feature_image_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_keypoint/binned_vector_feature_image_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_keypoint/binned_vector_feature_image_abstract.h diff --git a/app/src/main/cpp/dlib/image_keypoint/build_separable_poly_filters.h b/opencv_face_detect/src/main/cpp/dlib/image_keypoint/build_separable_poly_filters.h similarity index 100% rename from app/src/main/cpp/dlib/image_keypoint/build_separable_poly_filters.h rename to opencv_face_detect/src/main/cpp/dlib/image_keypoint/build_separable_poly_filters.h diff --git a/app/src/main/cpp/dlib/image_keypoint/draw_surf_points.h b/opencv_face_detect/src/main/cpp/dlib/image_keypoint/draw_surf_points.h similarity index 100% rename from app/src/main/cpp/dlib/image_keypoint/draw_surf_points.h rename to opencv_face_detect/src/main/cpp/dlib/image_keypoint/draw_surf_points.h diff --git a/app/src/main/cpp/dlib/image_keypoint/draw_surf_points_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_keypoint/draw_surf_points_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_keypoint/draw_surf_points_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_keypoint/draw_surf_points_abstract.h diff --git a/app/src/main/cpp/dlib/image_keypoint/fine_hog_image.h b/opencv_face_detect/src/main/cpp/dlib/image_keypoint/fine_hog_image.h similarity index 100% rename from app/src/main/cpp/dlib/image_keypoint/fine_hog_image.h rename to opencv_face_detect/src/main/cpp/dlib/image_keypoint/fine_hog_image.h diff --git a/app/src/main/cpp/dlib/image_keypoint/fine_hog_image_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_keypoint/fine_hog_image_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_keypoint/fine_hog_image_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_keypoint/fine_hog_image_abstract.h diff --git a/app/src/main/cpp/dlib/image_keypoint/hashed_feature_image.h b/opencv_face_detect/src/main/cpp/dlib/image_keypoint/hashed_feature_image.h similarity index 100% rename from app/src/main/cpp/dlib/image_keypoint/hashed_feature_image.h rename to opencv_face_detect/src/main/cpp/dlib/image_keypoint/hashed_feature_image.h diff --git a/app/src/main/cpp/dlib/image_keypoint/hashed_feature_image_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_keypoint/hashed_feature_image_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_keypoint/hashed_feature_image_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_keypoint/hashed_feature_image_abstract.h diff --git a/app/src/main/cpp/dlib/image_keypoint/hessian_pyramid.h b/opencv_face_detect/src/main/cpp/dlib/image_keypoint/hessian_pyramid.h similarity index 100% rename from app/src/main/cpp/dlib/image_keypoint/hessian_pyramid.h rename to opencv_face_detect/src/main/cpp/dlib/image_keypoint/hessian_pyramid.h diff --git a/app/src/main/cpp/dlib/image_keypoint/hessian_pyramid_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_keypoint/hessian_pyramid_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_keypoint/hessian_pyramid_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_keypoint/hessian_pyramid_abstract.h diff --git a/app/src/main/cpp/dlib/image_keypoint/hog.h b/opencv_face_detect/src/main/cpp/dlib/image_keypoint/hog.h similarity index 100% rename from app/src/main/cpp/dlib/image_keypoint/hog.h rename to opencv_face_detect/src/main/cpp/dlib/image_keypoint/hog.h diff --git a/app/src/main/cpp/dlib/image_keypoint/hog_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_keypoint/hog_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_keypoint/hog_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_keypoint/hog_abstract.h diff --git a/app/src/main/cpp/dlib/image_keypoint/nearest_neighbor_feature_image.h b/opencv_face_detect/src/main/cpp/dlib/image_keypoint/nearest_neighbor_feature_image.h similarity index 100% rename from app/src/main/cpp/dlib/image_keypoint/nearest_neighbor_feature_image.h rename to opencv_face_detect/src/main/cpp/dlib/image_keypoint/nearest_neighbor_feature_image.h diff --git a/app/src/main/cpp/dlib/image_keypoint/nearest_neighbor_feature_image_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_keypoint/nearest_neighbor_feature_image_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_keypoint/nearest_neighbor_feature_image_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_keypoint/nearest_neighbor_feature_image_abstract.h diff --git a/app/src/main/cpp/dlib/image_keypoint/poly_image.h b/opencv_face_detect/src/main/cpp/dlib/image_keypoint/poly_image.h similarity index 100% rename from app/src/main/cpp/dlib/image_keypoint/poly_image.h rename to opencv_face_detect/src/main/cpp/dlib/image_keypoint/poly_image.h diff --git a/app/src/main/cpp/dlib/image_keypoint/poly_image_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_keypoint/poly_image_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_keypoint/poly_image_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_keypoint/poly_image_abstract.h diff --git a/app/src/main/cpp/dlib/image_keypoint/surf.h b/opencv_face_detect/src/main/cpp/dlib/image_keypoint/surf.h similarity index 100% rename from app/src/main/cpp/dlib/image_keypoint/surf.h rename to opencv_face_detect/src/main/cpp/dlib/image_keypoint/surf.h diff --git a/app/src/main/cpp/dlib/image_keypoint/surf_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_keypoint/surf_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_keypoint/surf_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_keypoint/surf_abstract.h diff --git a/app/src/main/cpp/dlib/image_loader/image_loader.h b/opencv_face_detect/src/main/cpp/dlib/image_loader/image_loader.h similarity index 100% rename from app/src/main/cpp/dlib/image_loader/image_loader.h rename to opencv_face_detect/src/main/cpp/dlib/image_loader/image_loader.h diff --git a/app/src/main/cpp/dlib/image_loader/image_loader_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_loader/image_loader_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_loader/image_loader_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_loader/image_loader_abstract.h diff --git a/app/src/main/cpp/dlib/image_loader/jpeg_loader.cpp b/opencv_face_detect/src/main/cpp/dlib/image_loader/jpeg_loader.cpp similarity index 100% rename from app/src/main/cpp/dlib/image_loader/jpeg_loader.cpp rename to opencv_face_detect/src/main/cpp/dlib/image_loader/jpeg_loader.cpp diff --git a/app/src/main/cpp/dlib/image_loader/jpeg_loader.h b/opencv_face_detect/src/main/cpp/dlib/image_loader/jpeg_loader.h similarity index 100% rename from app/src/main/cpp/dlib/image_loader/jpeg_loader.h rename to opencv_face_detect/src/main/cpp/dlib/image_loader/jpeg_loader.h diff --git a/app/src/main/cpp/dlib/image_loader/jpeg_loader_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_loader/jpeg_loader_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_loader/jpeg_loader_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_loader/jpeg_loader_abstract.h diff --git a/app/src/main/cpp/dlib/image_loader/load_image.h b/opencv_face_detect/src/main/cpp/dlib/image_loader/load_image.h similarity index 100% rename from app/src/main/cpp/dlib/image_loader/load_image.h rename to opencv_face_detect/src/main/cpp/dlib/image_loader/load_image.h diff --git a/app/src/main/cpp/dlib/image_loader/load_image_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_loader/load_image_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_loader/load_image_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_loader/load_image_abstract.h diff --git a/app/src/main/cpp/dlib/image_loader/png_loader.cpp b/opencv_face_detect/src/main/cpp/dlib/image_loader/png_loader.cpp similarity index 100% rename from app/src/main/cpp/dlib/image_loader/png_loader.cpp rename to opencv_face_detect/src/main/cpp/dlib/image_loader/png_loader.cpp diff --git a/app/src/main/cpp/dlib/image_loader/png_loader.h b/opencv_face_detect/src/main/cpp/dlib/image_loader/png_loader.h similarity index 100% rename from app/src/main/cpp/dlib/image_loader/png_loader.h rename to opencv_face_detect/src/main/cpp/dlib/image_loader/png_loader.h diff --git a/app/src/main/cpp/dlib/image_loader/png_loader_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_loader/png_loader_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_loader/png_loader_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_loader/png_loader_abstract.h diff --git a/app/src/main/cpp/dlib/image_processing.h b/opencv_face_detect/src/main/cpp/dlib/image_processing.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing.h diff --git a/app/src/main/cpp/dlib/image_processing/box_overlap_testing.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/box_overlap_testing.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/box_overlap_testing.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/box_overlap_testing.h diff --git a/app/src/main/cpp/dlib/image_processing/box_overlap_testing_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/box_overlap_testing_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/box_overlap_testing_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/box_overlap_testing_abstract.h diff --git a/app/src/main/cpp/dlib/image_processing/correlation_tracker.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/correlation_tracker.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/correlation_tracker.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/correlation_tracker.h diff --git a/app/src/main/cpp/dlib/image_processing/correlation_tracker_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/correlation_tracker_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/correlation_tracker_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/correlation_tracker_abstract.h diff --git a/app/src/main/cpp/dlib/image_processing/detection_template_tools.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/detection_template_tools.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/detection_template_tools.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/detection_template_tools.h diff --git a/app/src/main/cpp/dlib/image_processing/detection_template_tools_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/detection_template_tools_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/detection_template_tools_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/detection_template_tools_abstract.h diff --git a/app/src/main/cpp/dlib/image_processing/frontal_face_detector.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/frontal_face_detector.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/frontal_face_detector.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/frontal_face_detector.h diff --git a/app/src/main/cpp/dlib/image_processing/frontal_face_detector_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/frontal_face_detector_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/frontal_face_detector_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/frontal_face_detector_abstract.h diff --git a/app/src/main/cpp/dlib/image_processing/full_object_detection.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/full_object_detection.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/full_object_detection.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/full_object_detection.h diff --git a/app/src/main/cpp/dlib/image_processing/full_object_detection_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/full_object_detection_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/full_object_detection_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/full_object_detection_abstract.h diff --git a/app/src/main/cpp/dlib/image_processing/generic_image.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/generic_image.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/generic_image.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/generic_image.h diff --git a/app/src/main/cpp/dlib/image_processing/object_detector.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/object_detector.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/object_detector.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/object_detector.h diff --git a/app/src/main/cpp/dlib/image_processing/object_detector_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/object_detector_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/object_detector_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/object_detector_abstract.h diff --git a/app/src/main/cpp/dlib/image_processing/remove_unobtainable_rectangles.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/remove_unobtainable_rectangles.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/remove_unobtainable_rectangles.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/remove_unobtainable_rectangles.h diff --git a/app/src/main/cpp/dlib/image_processing/remove_unobtainable_rectangles_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/remove_unobtainable_rectangles_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/remove_unobtainable_rectangles_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/remove_unobtainable_rectangles_abstract.h diff --git a/app/src/main/cpp/dlib/image_processing/render_face_detections.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/render_face_detections.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/render_face_detections.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/render_face_detections.h diff --git a/app/src/main/cpp/dlib/image_processing/render_face_detections_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/render_face_detections_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/render_face_detections_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/render_face_detections_abstract.h diff --git a/app/src/main/cpp/dlib/image_processing/scan_fhog_pyramid.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/scan_fhog_pyramid.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/scan_fhog_pyramid.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/scan_fhog_pyramid.h diff --git a/app/src/main/cpp/dlib/image_processing/scan_fhog_pyramid_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/scan_fhog_pyramid_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/scan_fhog_pyramid_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/scan_fhog_pyramid_abstract.h diff --git a/app/src/main/cpp/dlib/image_processing/scan_image.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/scan_image.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/scan_image.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/scan_image.h diff --git a/app/src/main/cpp/dlib/image_processing/scan_image_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/scan_image_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/scan_image_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/scan_image_abstract.h diff --git a/app/src/main/cpp/dlib/image_processing/scan_image_boxes.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/scan_image_boxes.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/scan_image_boxes.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/scan_image_boxes.h diff --git a/app/src/main/cpp/dlib/image_processing/scan_image_boxes_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/scan_image_boxes_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/scan_image_boxes_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/scan_image_boxes_abstract.h diff --git a/app/src/main/cpp/dlib/image_processing/scan_image_custom.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/scan_image_custom.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/scan_image_custom.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/scan_image_custom.h diff --git a/app/src/main/cpp/dlib/image_processing/scan_image_custom_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/scan_image_custom_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/scan_image_custom_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/scan_image_custom_abstract.h diff --git a/app/src/main/cpp/dlib/image_processing/scan_image_pyramid.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/scan_image_pyramid.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/scan_image_pyramid.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/scan_image_pyramid.h diff --git a/app/src/main/cpp/dlib/image_processing/scan_image_pyramid_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/scan_image_pyramid_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/scan_image_pyramid_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/scan_image_pyramid_abstract.h diff --git a/app/src/main/cpp/dlib/image_processing/scan_image_pyramid_tools.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/scan_image_pyramid_tools.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/scan_image_pyramid_tools.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/scan_image_pyramid_tools.h diff --git a/app/src/main/cpp/dlib/image_processing/scan_image_pyramid_tools_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/scan_image_pyramid_tools_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/scan_image_pyramid_tools_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/scan_image_pyramid_tools_abstract.h diff --git a/app/src/main/cpp/dlib/image_processing/setup_hashed_features.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/setup_hashed_features.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/setup_hashed_features.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/setup_hashed_features.h diff --git a/app/src/main/cpp/dlib/image_processing/setup_hashed_features_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/setup_hashed_features_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/setup_hashed_features_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/setup_hashed_features_abstract.h diff --git a/app/src/main/cpp/dlib/image_processing/shape_predictor.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/shape_predictor.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/shape_predictor.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/shape_predictor.h diff --git a/app/src/main/cpp/dlib/image_processing/shape_predictor_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/shape_predictor_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/shape_predictor_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/shape_predictor_abstract.h diff --git a/app/src/main/cpp/dlib/image_processing/shape_predictor_trainer.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/shape_predictor_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/shape_predictor_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/shape_predictor_trainer.h diff --git a/app/src/main/cpp/dlib/image_processing/shape_predictor_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_processing/shape_predictor_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_processing/shape_predictor_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_processing/shape_predictor_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/image_saver/dng_shared.h b/opencv_face_detect/src/main/cpp/dlib/image_saver/dng_shared.h similarity index 100% rename from app/src/main/cpp/dlib/image_saver/dng_shared.h rename to opencv_face_detect/src/main/cpp/dlib/image_saver/dng_shared.h diff --git a/app/src/main/cpp/dlib/image_saver/image_saver.h b/opencv_face_detect/src/main/cpp/dlib/image_saver/image_saver.h similarity index 100% rename from app/src/main/cpp/dlib/image_saver/image_saver.h rename to opencv_face_detect/src/main/cpp/dlib/image_saver/image_saver.h diff --git a/app/src/main/cpp/dlib/image_saver/image_saver_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_saver/image_saver_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_saver/image_saver_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_saver/image_saver_abstract.h diff --git a/app/src/main/cpp/dlib/image_saver/save_jpeg.cpp b/opencv_face_detect/src/main/cpp/dlib/image_saver/save_jpeg.cpp similarity index 100% rename from app/src/main/cpp/dlib/image_saver/save_jpeg.cpp rename to opencv_face_detect/src/main/cpp/dlib/image_saver/save_jpeg.cpp diff --git a/app/src/main/cpp/dlib/image_saver/save_jpeg.h b/opencv_face_detect/src/main/cpp/dlib/image_saver/save_jpeg.h similarity index 100% rename from app/src/main/cpp/dlib/image_saver/save_jpeg.h rename to opencv_face_detect/src/main/cpp/dlib/image_saver/save_jpeg.h diff --git a/app/src/main/cpp/dlib/image_saver/save_jpeg_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_saver/save_jpeg_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_saver/save_jpeg_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_saver/save_jpeg_abstract.h diff --git a/app/src/main/cpp/dlib/image_saver/save_png.cpp b/opencv_face_detect/src/main/cpp/dlib/image_saver/save_png.cpp similarity index 100% rename from app/src/main/cpp/dlib/image_saver/save_png.cpp rename to opencv_face_detect/src/main/cpp/dlib/image_saver/save_png.cpp diff --git a/app/src/main/cpp/dlib/image_saver/save_png.h b/opencv_face_detect/src/main/cpp/dlib/image_saver/save_png.h similarity index 100% rename from app/src/main/cpp/dlib/image_saver/save_png.h rename to opencv_face_detect/src/main/cpp/dlib/image_saver/save_png.h diff --git a/app/src/main/cpp/dlib/image_saver/save_png_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_saver/save_png_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_saver/save_png_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_saver/save_png_abstract.h diff --git a/app/src/main/cpp/dlib/image_transforms.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms.h diff --git a/app/src/main/cpp/dlib/image_transforms/assign_image.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/assign_image.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/assign_image.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/assign_image.h diff --git a/app/src/main/cpp/dlib/image_transforms/assign_image_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/assign_image_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/assign_image_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/assign_image_abstract.h diff --git a/app/src/main/cpp/dlib/image_transforms/colormaps.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/colormaps.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/colormaps.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/colormaps.h diff --git a/app/src/main/cpp/dlib/image_transforms/colormaps_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/colormaps_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/colormaps_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/colormaps_abstract.h diff --git a/app/src/main/cpp/dlib/image_transforms/draw.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/draw.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/draw.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/draw.h diff --git a/app/src/main/cpp/dlib/image_transforms/draw_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/draw_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/draw_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/draw_abstract.h diff --git a/app/src/main/cpp/dlib/image_transforms/edge_detector.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/edge_detector.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/edge_detector.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/edge_detector.h diff --git a/app/src/main/cpp/dlib/image_transforms/edge_detector_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/edge_detector_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/edge_detector_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/edge_detector_abstract.h diff --git a/app/src/main/cpp/dlib/image_transforms/equalize_histogram.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/equalize_histogram.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/equalize_histogram.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/equalize_histogram.h diff --git a/app/src/main/cpp/dlib/image_transforms/equalize_histogram_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/equalize_histogram_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/equalize_histogram_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/equalize_histogram_abstract.h diff --git a/app/src/main/cpp/dlib/image_transforms/fhog.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/fhog.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/fhog.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/fhog.h diff --git a/app/src/main/cpp/dlib/image_transforms/fhog_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/fhog_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/fhog_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/fhog_abstract.h diff --git a/app/src/main/cpp/dlib/image_transforms/hough_transform.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/hough_transform.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/hough_transform.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/hough_transform.h diff --git a/app/src/main/cpp/dlib/image_transforms/hough_transform_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/hough_transform_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/hough_transform_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/hough_transform_abstract.h diff --git a/app/src/main/cpp/dlib/image_transforms/image_pyramid.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/image_pyramid.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/image_pyramid.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/image_pyramid.h diff --git a/app/src/main/cpp/dlib/image_transforms/image_pyramid_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/image_pyramid_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/image_pyramid_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/image_pyramid_abstract.h diff --git a/app/src/main/cpp/dlib/image_transforms/integral_image.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/integral_image.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/integral_image.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/integral_image.h diff --git a/app/src/main/cpp/dlib/image_transforms/integral_image_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/integral_image_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/integral_image_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/integral_image_abstract.h diff --git a/app/src/main/cpp/dlib/image_transforms/interpolation.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/interpolation.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/interpolation.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/interpolation.h diff --git a/app/src/main/cpp/dlib/image_transforms/interpolation_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/interpolation_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/interpolation_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/interpolation_abstract.h diff --git a/app/src/main/cpp/dlib/image_transforms/label_connected_blobs.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/label_connected_blobs.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/label_connected_blobs.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/label_connected_blobs.h diff --git a/app/src/main/cpp/dlib/image_transforms/label_connected_blobs_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/label_connected_blobs_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/label_connected_blobs_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/label_connected_blobs_abstract.h diff --git a/app/src/main/cpp/dlib/image_transforms/lbp.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/lbp.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/lbp.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/lbp.h diff --git a/app/src/main/cpp/dlib/image_transforms/lbp_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/lbp_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/lbp_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/lbp_abstract.h diff --git a/app/src/main/cpp/dlib/image_transforms/morphological_operations.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/morphological_operations.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/morphological_operations.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/morphological_operations.h diff --git a/app/src/main/cpp/dlib/image_transforms/morphological_operations_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/morphological_operations_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/morphological_operations_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/morphological_operations_abstract.h diff --git a/app/src/main/cpp/dlib/image_transforms/random_color_transform.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/random_color_transform.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/random_color_transform.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/random_color_transform.h diff --git a/app/src/main/cpp/dlib/image_transforms/random_color_transform_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/random_color_transform_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/random_color_transform_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/random_color_transform_abstract.h diff --git a/app/src/main/cpp/dlib/image_transforms/random_cropper.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/random_cropper.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/random_cropper.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/random_cropper.h diff --git a/app/src/main/cpp/dlib/image_transforms/random_cropper_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/random_cropper_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/random_cropper_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/random_cropper_abstract.h diff --git a/app/src/main/cpp/dlib/image_transforms/segment_image.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/segment_image.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/segment_image.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/segment_image.h diff --git a/app/src/main/cpp/dlib/image_transforms/segment_image_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/segment_image_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/segment_image_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/segment_image_abstract.h diff --git a/app/src/main/cpp/dlib/image_transforms/spatial_filtering.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/spatial_filtering.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/spatial_filtering.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/spatial_filtering.h diff --git a/app/src/main/cpp/dlib/image_transforms/spatial_filtering_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/spatial_filtering_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/spatial_filtering_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/spatial_filtering_abstract.h diff --git a/app/src/main/cpp/dlib/image_transforms/thresholding.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/thresholding.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/thresholding.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/thresholding.h diff --git a/app/src/main/cpp/dlib/image_transforms/thresholding_abstract.h b/opencv_face_detect/src/main/cpp/dlib/image_transforms/thresholding_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/image_transforms/thresholding_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/image_transforms/thresholding_abstract.h diff --git a/app/src/main/cpp/dlib/interfaces/cmd_line_parser_option.h b/opencv_face_detect/src/main/cpp/dlib/interfaces/cmd_line_parser_option.h similarity index 100% rename from app/src/main/cpp/dlib/interfaces/cmd_line_parser_option.h rename to opencv_face_detect/src/main/cpp/dlib/interfaces/cmd_line_parser_option.h diff --git a/app/src/main/cpp/dlib/interfaces/enumerable.h b/opencv_face_detect/src/main/cpp/dlib/interfaces/enumerable.h similarity index 100% rename from app/src/main/cpp/dlib/interfaces/enumerable.h rename to opencv_face_detect/src/main/cpp/dlib/interfaces/enumerable.h diff --git a/app/src/main/cpp/dlib/interfaces/map_pair.h b/opencv_face_detect/src/main/cpp/dlib/interfaces/map_pair.h similarity index 100% rename from app/src/main/cpp/dlib/interfaces/map_pair.h rename to opencv_face_detect/src/main/cpp/dlib/interfaces/map_pair.h diff --git a/app/src/main/cpp/dlib/interfaces/remover.h b/opencv_face_detect/src/main/cpp/dlib/interfaces/remover.h similarity index 100% rename from app/src/main/cpp/dlib/interfaces/remover.h rename to opencv_face_detect/src/main/cpp/dlib/interfaces/remover.h diff --git a/app/src/main/cpp/dlib/iomanip b/opencv_face_detect/src/main/cpp/dlib/iomanip similarity index 100% rename from app/src/main/cpp/dlib/iomanip rename to opencv_face_detect/src/main/cpp/dlib/iomanip diff --git a/app/src/main/cpp/dlib/iosfwd b/opencv_face_detect/src/main/cpp/dlib/iosfwd similarity index 100% rename from app/src/main/cpp/dlib/iosfwd rename to opencv_face_detect/src/main/cpp/dlib/iosfwd diff --git a/app/src/main/cpp/dlib/iosockstream.h b/opencv_face_detect/src/main/cpp/dlib/iosockstream.h similarity index 100% rename from app/src/main/cpp/dlib/iosockstream.h rename to opencv_face_detect/src/main/cpp/dlib/iosockstream.h diff --git a/app/src/main/cpp/dlib/iosockstream/iosockstream.h b/opencv_face_detect/src/main/cpp/dlib/iosockstream/iosockstream.h similarity index 100% rename from app/src/main/cpp/dlib/iosockstream/iosockstream.h rename to opencv_face_detect/src/main/cpp/dlib/iosockstream/iosockstream.h diff --git a/app/src/main/cpp/dlib/iosockstream/iosockstream_abstract.h b/opencv_face_detect/src/main/cpp/dlib/iosockstream/iosockstream_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/iosockstream/iosockstream_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/iosockstream/iosockstream_abstract.h diff --git a/app/src/main/cpp/dlib/iostream b/opencv_face_detect/src/main/cpp/dlib/iostream similarity index 100% rename from app/src/main/cpp/dlib/iostream rename to opencv_face_detect/src/main/cpp/dlib/iostream diff --git a/app/src/main/cpp/dlib/is_kind.h b/opencv_face_detect/src/main/cpp/dlib/is_kind.h similarity index 100% rename from app/src/main/cpp/dlib/is_kind.h rename to opencv_face_detect/src/main/cpp/dlib/is_kind.h diff --git a/app/src/main/cpp/dlib/istream b/opencv_face_detect/src/main/cpp/dlib/istream similarity index 100% rename from app/src/main/cpp/dlib/istream rename to opencv_face_detect/src/main/cpp/dlib/istream diff --git a/app/src/main/cpp/dlib/java/CMakeLists.txt b/opencv_face_detect/src/main/cpp/dlib/java/CMakeLists.txt similarity index 100% rename from app/src/main/cpp/dlib/java/CMakeLists.txt rename to opencv_face_detect/src/main/cpp/dlib/java/CMakeLists.txt diff --git a/app/src/main/cpp/dlib/java/cmake_swig_jni b/opencv_face_detect/src/main/cpp/dlib/java/cmake_swig_jni similarity index 100% rename from app/src/main/cpp/dlib/java/cmake_swig_jni rename to opencv_face_detect/src/main/cpp/dlib/java/cmake_swig_jni diff --git a/app/src/main/cpp/dlib/java/java_array.h b/opencv_face_detect/src/main/cpp/dlib/java/java_array.h similarity index 100% rename from app/src/main/cpp/dlib/java/java_array.h rename to opencv_face_detect/src/main/cpp/dlib/java/java_array.h diff --git a/app/src/main/cpp/dlib/java/run_test.sh b/opencv_face_detect/src/main/cpp/dlib/java/run_test.sh similarity index 100% rename from app/src/main/cpp/dlib/java/run_test.sh rename to opencv_face_detect/src/main/cpp/dlib/java/run_test.sh diff --git a/app/src/main/cpp/dlib/java/swig_api.h b/opencv_face_detect/src/main/cpp/dlib/java/swig_api.h similarity index 100% rename from app/src/main/cpp/dlib/java/swig_api.h rename to opencv_face_detect/src/main/cpp/dlib/java/swig_api.h diff --git a/app/src/main/cpp/dlib/java/swig_test.java b/opencv_face_detect/src/main/cpp/dlib/java/swig_test.java similarity index 100% rename from app/src/main/cpp/dlib/java/swig_test.java rename to opencv_face_detect/src/main/cpp/dlib/java/swig_test.java diff --git a/app/src/main/cpp/dlib/linker.h b/opencv_face_detect/src/main/cpp/dlib/linker.h similarity index 100% rename from app/src/main/cpp/dlib/linker.h rename to opencv_face_detect/src/main/cpp/dlib/linker.h diff --git a/app/src/main/cpp/dlib/linker/linker_kernel_1.cpp b/opencv_face_detect/src/main/cpp/dlib/linker/linker_kernel_1.cpp similarity index 100% rename from app/src/main/cpp/dlib/linker/linker_kernel_1.cpp rename to opencv_face_detect/src/main/cpp/dlib/linker/linker_kernel_1.cpp diff --git a/app/src/main/cpp/dlib/linker/linker_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/linker/linker_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/linker/linker_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/linker/linker_kernel_1.h diff --git a/app/src/main/cpp/dlib/linker/linker_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/linker/linker_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/linker/linker_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/linker/linker_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/locale b/opencv_face_detect/src/main/cpp/dlib/locale similarity index 100% rename from app/src/main/cpp/dlib/locale rename to opencv_face_detect/src/main/cpp/dlib/locale diff --git a/app/src/main/cpp/dlib/logger.h b/opencv_face_detect/src/main/cpp/dlib/logger.h similarity index 100% rename from app/src/main/cpp/dlib/logger.h rename to opencv_face_detect/src/main/cpp/dlib/logger.h diff --git a/app/src/main/cpp/dlib/logger/extra_logger_headers.cpp b/opencv_face_detect/src/main/cpp/dlib/logger/extra_logger_headers.cpp similarity index 100% rename from app/src/main/cpp/dlib/logger/extra_logger_headers.cpp rename to opencv_face_detect/src/main/cpp/dlib/logger/extra_logger_headers.cpp diff --git a/app/src/main/cpp/dlib/logger/extra_logger_headers.h b/opencv_face_detect/src/main/cpp/dlib/logger/extra_logger_headers.h similarity index 100% rename from app/src/main/cpp/dlib/logger/extra_logger_headers.h rename to opencv_face_detect/src/main/cpp/dlib/logger/extra_logger_headers.h diff --git a/app/src/main/cpp/dlib/logger/logger_config_file.cpp b/opencv_face_detect/src/main/cpp/dlib/logger/logger_config_file.cpp similarity index 100% rename from app/src/main/cpp/dlib/logger/logger_config_file.cpp rename to opencv_face_detect/src/main/cpp/dlib/logger/logger_config_file.cpp diff --git a/app/src/main/cpp/dlib/logger/logger_config_file.h b/opencv_face_detect/src/main/cpp/dlib/logger/logger_config_file.h similarity index 100% rename from app/src/main/cpp/dlib/logger/logger_config_file.h rename to opencv_face_detect/src/main/cpp/dlib/logger/logger_config_file.h diff --git a/app/src/main/cpp/dlib/logger/logger_kernel_1.cpp b/opencv_face_detect/src/main/cpp/dlib/logger/logger_kernel_1.cpp similarity index 100% rename from app/src/main/cpp/dlib/logger/logger_kernel_1.cpp rename to opencv_face_detect/src/main/cpp/dlib/logger/logger_kernel_1.cpp diff --git a/app/src/main/cpp/dlib/logger/logger_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/logger/logger_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/logger/logger_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/logger/logger_kernel_1.h diff --git a/app/src/main/cpp/dlib/logger/logger_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/logger/logger_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/logger/logger_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/logger/logger_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/lsh.h b/opencv_face_detect/src/main/cpp/dlib/lsh.h similarity index 100% rename from app/src/main/cpp/dlib/lsh.h rename to opencv_face_detect/src/main/cpp/dlib/lsh.h diff --git a/app/src/main/cpp/dlib/lsh/create_random_projection_hash.h b/opencv_face_detect/src/main/cpp/dlib/lsh/create_random_projection_hash.h similarity index 100% rename from app/src/main/cpp/dlib/lsh/create_random_projection_hash.h rename to opencv_face_detect/src/main/cpp/dlib/lsh/create_random_projection_hash.h diff --git a/app/src/main/cpp/dlib/lsh/create_random_projection_hash_abstract.h b/opencv_face_detect/src/main/cpp/dlib/lsh/create_random_projection_hash_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/lsh/create_random_projection_hash_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/lsh/create_random_projection_hash_abstract.h diff --git a/app/src/main/cpp/dlib/lsh/hashes.h b/opencv_face_detect/src/main/cpp/dlib/lsh/hashes.h similarity index 100% rename from app/src/main/cpp/dlib/lsh/hashes.h rename to opencv_face_detect/src/main/cpp/dlib/lsh/hashes.h diff --git a/app/src/main/cpp/dlib/lsh/hashes_abstract.h b/opencv_face_detect/src/main/cpp/dlib/lsh/hashes_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/lsh/hashes_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/lsh/hashes_abstract.h diff --git a/app/src/main/cpp/dlib/lsh/projection_hash.h b/opencv_face_detect/src/main/cpp/dlib/lsh/projection_hash.h similarity index 100% rename from app/src/main/cpp/dlib/lsh/projection_hash.h rename to opencv_face_detect/src/main/cpp/dlib/lsh/projection_hash.h diff --git a/app/src/main/cpp/dlib/lsh/projection_hash_abstract.h b/opencv_face_detect/src/main/cpp/dlib/lsh/projection_hash_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/lsh/projection_hash_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/lsh/projection_hash_abstract.h diff --git a/app/src/main/cpp/dlib/lz77_buffer.h b/opencv_face_detect/src/main/cpp/dlib/lz77_buffer.h similarity index 100% rename from app/src/main/cpp/dlib/lz77_buffer.h rename to opencv_face_detect/src/main/cpp/dlib/lz77_buffer.h diff --git a/app/src/main/cpp/dlib/lz77_buffer/lz77_buffer_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/lz77_buffer/lz77_buffer_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/lz77_buffer/lz77_buffer_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/lz77_buffer/lz77_buffer_kernel_1.h diff --git a/app/src/main/cpp/dlib/lz77_buffer/lz77_buffer_kernel_2.h b/opencv_face_detect/src/main/cpp/dlib/lz77_buffer/lz77_buffer_kernel_2.h similarity index 100% rename from app/src/main/cpp/dlib/lz77_buffer/lz77_buffer_kernel_2.h rename to opencv_face_detect/src/main/cpp/dlib/lz77_buffer/lz77_buffer_kernel_2.h diff --git a/app/src/main/cpp/dlib/lz77_buffer/lz77_buffer_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/lz77_buffer/lz77_buffer_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/lz77_buffer/lz77_buffer_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/lz77_buffer/lz77_buffer_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/lz77_buffer/lz77_buffer_kernel_c.h b/opencv_face_detect/src/main/cpp/dlib/lz77_buffer/lz77_buffer_kernel_c.h similarity index 100% rename from app/src/main/cpp/dlib/lz77_buffer/lz77_buffer_kernel_c.h rename to opencv_face_detect/src/main/cpp/dlib/lz77_buffer/lz77_buffer_kernel_c.h diff --git a/app/src/main/cpp/dlib/lzp_buffer.h b/opencv_face_detect/src/main/cpp/dlib/lzp_buffer.h similarity index 100% rename from app/src/main/cpp/dlib/lzp_buffer.h rename to opencv_face_detect/src/main/cpp/dlib/lzp_buffer.h diff --git a/app/src/main/cpp/dlib/lzp_buffer/lzp_buffer_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/lzp_buffer/lzp_buffer_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/lzp_buffer/lzp_buffer_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/lzp_buffer/lzp_buffer_kernel_1.h diff --git a/app/src/main/cpp/dlib/lzp_buffer/lzp_buffer_kernel_2.h b/opencv_face_detect/src/main/cpp/dlib/lzp_buffer/lzp_buffer_kernel_2.h similarity index 100% rename from app/src/main/cpp/dlib/lzp_buffer/lzp_buffer_kernel_2.h rename to opencv_face_detect/src/main/cpp/dlib/lzp_buffer/lzp_buffer_kernel_2.h diff --git a/app/src/main/cpp/dlib/lzp_buffer/lzp_buffer_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/lzp_buffer/lzp_buffer_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/lzp_buffer/lzp_buffer_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/lzp_buffer/lzp_buffer_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/lzp_buffer/lzp_buffer_kernel_c.h b/opencv_face_detect/src/main/cpp/dlib/lzp_buffer/lzp_buffer_kernel_c.h similarity index 100% rename from app/src/main/cpp/dlib/lzp_buffer/lzp_buffer_kernel_c.h rename to opencv_face_detect/src/main/cpp/dlib/lzp_buffer/lzp_buffer_kernel_c.h diff --git a/app/src/main/cpp/dlib/manifold_regularization.h b/opencv_face_detect/src/main/cpp/dlib/manifold_regularization.h similarity index 100% rename from app/src/main/cpp/dlib/manifold_regularization.h rename to opencv_face_detect/src/main/cpp/dlib/manifold_regularization.h diff --git a/app/src/main/cpp/dlib/manifold_regularization/linear_manifold_regularizer.h b/opencv_face_detect/src/main/cpp/dlib/manifold_regularization/linear_manifold_regularizer.h similarity index 100% rename from app/src/main/cpp/dlib/manifold_regularization/linear_manifold_regularizer.h rename to opencv_face_detect/src/main/cpp/dlib/manifold_regularization/linear_manifold_regularizer.h diff --git a/app/src/main/cpp/dlib/manifold_regularization/linear_manifold_regularizer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/manifold_regularization/linear_manifold_regularizer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/manifold_regularization/linear_manifold_regularizer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/manifold_regularization/linear_manifold_regularizer_abstract.h diff --git a/app/src/main/cpp/dlib/map.h b/opencv_face_detect/src/main/cpp/dlib/map.h similarity index 100% rename from app/src/main/cpp/dlib/map.h rename to opencv_face_detect/src/main/cpp/dlib/map.h diff --git a/app/src/main/cpp/dlib/map/map_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/map/map_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/map/map_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/map/map_kernel_1.h diff --git a/app/src/main/cpp/dlib/map/map_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/map/map_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/map/map_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/map/map_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/map/map_kernel_c.h b/opencv_face_detect/src/main/cpp/dlib/map/map_kernel_c.h similarity index 100% rename from app/src/main/cpp/dlib/map/map_kernel_c.h rename to opencv_face_detect/src/main/cpp/dlib/map/map_kernel_c.h diff --git a/app/src/main/cpp/dlib/matlab/CMakeLists.txt b/opencv_face_detect/src/main/cpp/dlib/matlab/CMakeLists.txt similarity index 100% rename from app/src/main/cpp/dlib/matlab/CMakeLists.txt rename to opencv_face_detect/src/main/cpp/dlib/matlab/CMakeLists.txt diff --git a/app/src/main/cpp/dlib/matlab/README.txt b/opencv_face_detect/src/main/cpp/dlib/matlab/README.txt similarity index 100% rename from app/src/main/cpp/dlib/matlab/README.txt rename to opencv_face_detect/src/main/cpp/dlib/matlab/README.txt diff --git a/app/src/main/cpp/dlib/matlab/call_matlab.h b/opencv_face_detect/src/main/cpp/dlib/matlab/call_matlab.h similarity index 100% rename from app/src/main/cpp/dlib/matlab/call_matlab.h rename to opencv_face_detect/src/main/cpp/dlib/matlab/call_matlab.h diff --git a/app/src/main/cpp/dlib/matlab/cmake_mex_wrapper b/opencv_face_detect/src/main/cpp/dlib/matlab/cmake_mex_wrapper similarity index 100% rename from app/src/main/cpp/dlib/matlab/cmake_mex_wrapper rename to opencv_face_detect/src/main/cpp/dlib/matlab/cmake_mex_wrapper diff --git a/app/src/main/cpp/dlib/matlab/example.m b/opencv_face_detect/src/main/cpp/dlib/matlab/example.m similarity index 100% rename from app/src/main/cpp/dlib/matlab/example.m rename to opencv_face_detect/src/main/cpp/dlib/matlab/example.m diff --git a/app/src/main/cpp/dlib/matlab/example_mex_callback.cpp b/opencv_face_detect/src/main/cpp/dlib/matlab/example_mex_callback.cpp similarity index 100% rename from app/src/main/cpp/dlib/matlab/example_mex_callback.cpp rename to opencv_face_detect/src/main/cpp/dlib/matlab/example_mex_callback.cpp diff --git a/app/src/main/cpp/dlib/matlab/example_mex_class.cpp b/opencv_face_detect/src/main/cpp/dlib/matlab/example_mex_class.cpp similarity index 100% rename from app/src/main/cpp/dlib/matlab/example_mex_class.cpp rename to opencv_face_detect/src/main/cpp/dlib/matlab/example_mex_class.cpp diff --git a/app/src/main/cpp/dlib/matlab/example_mex_function.cpp b/opencv_face_detect/src/main/cpp/dlib/matlab/example_mex_function.cpp similarity index 100% rename from app/src/main/cpp/dlib/matlab/example_mex_function.cpp rename to opencv_face_detect/src/main/cpp/dlib/matlab/example_mex_function.cpp diff --git a/app/src/main/cpp/dlib/matlab/example_mex_struct.cpp b/opencv_face_detect/src/main/cpp/dlib/matlab/example_mex_struct.cpp similarity index 100% rename from app/src/main/cpp/dlib/matlab/example_mex_struct.cpp rename to opencv_face_detect/src/main/cpp/dlib/matlab/example_mex_struct.cpp diff --git a/app/src/main/cpp/dlib/matlab/mex_wrapper.cpp b/opencv_face_detect/src/main/cpp/dlib/matlab/mex_wrapper.cpp similarity index 100% rename from app/src/main/cpp/dlib/matlab/mex_wrapper.cpp rename to opencv_face_detect/src/main/cpp/dlib/matlab/mex_wrapper.cpp diff --git a/app/src/main/cpp/dlib/matlab/subprocess_stream.cpp b/opencv_face_detect/src/main/cpp/dlib/matlab/subprocess_stream.cpp similarity index 100% rename from app/src/main/cpp/dlib/matlab/subprocess_stream.cpp rename to opencv_face_detect/src/main/cpp/dlib/matlab/subprocess_stream.cpp diff --git a/app/src/main/cpp/dlib/matlab/subprocess_stream.h b/opencv_face_detect/src/main/cpp/dlib/matlab/subprocess_stream.h similarity index 100% rename from app/src/main/cpp/dlib/matlab/subprocess_stream.h rename to opencv_face_detect/src/main/cpp/dlib/matlab/subprocess_stream.h diff --git a/app/src/main/cpp/dlib/matrix.h b/opencv_face_detect/src/main/cpp/dlib/matrix.h similarity index 100% rename from app/src/main/cpp/dlib/matrix.h rename to opencv_face_detect/src/main/cpp/dlib/matrix.h diff --git a/app/src/main/cpp/dlib/matrix/cblas_constants.h b/opencv_face_detect/src/main/cpp/dlib/matrix/cblas_constants.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/cblas_constants.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/cblas_constants.h diff --git a/app/src/main/cpp/dlib/matrix/lapack/fortran_id.h b/opencv_face_detect/src/main/cpp/dlib/matrix/lapack/fortran_id.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/lapack/fortran_id.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/lapack/fortran_id.h diff --git a/app/src/main/cpp/dlib/matrix/lapack/gees.h b/opencv_face_detect/src/main/cpp/dlib/matrix/lapack/gees.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/lapack/gees.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/lapack/gees.h diff --git a/app/src/main/cpp/dlib/matrix/lapack/geev.h b/opencv_face_detect/src/main/cpp/dlib/matrix/lapack/geev.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/lapack/geev.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/lapack/geev.h diff --git a/app/src/main/cpp/dlib/matrix/lapack/geqrf.h b/opencv_face_detect/src/main/cpp/dlib/matrix/lapack/geqrf.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/lapack/geqrf.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/lapack/geqrf.h diff --git a/app/src/main/cpp/dlib/matrix/lapack/gesdd.h b/opencv_face_detect/src/main/cpp/dlib/matrix/lapack/gesdd.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/lapack/gesdd.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/lapack/gesdd.h diff --git a/app/src/main/cpp/dlib/matrix/lapack/gesvd.h b/opencv_face_detect/src/main/cpp/dlib/matrix/lapack/gesvd.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/lapack/gesvd.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/lapack/gesvd.h diff --git a/app/src/main/cpp/dlib/matrix/lapack/getrf.h b/opencv_face_detect/src/main/cpp/dlib/matrix/lapack/getrf.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/lapack/getrf.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/lapack/getrf.h diff --git a/app/src/main/cpp/dlib/matrix/lapack/ormqr.h b/opencv_face_detect/src/main/cpp/dlib/matrix/lapack/ormqr.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/lapack/ormqr.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/lapack/ormqr.h diff --git a/app/src/main/cpp/dlib/matrix/lapack/pbtrf.h b/opencv_face_detect/src/main/cpp/dlib/matrix/lapack/pbtrf.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/lapack/pbtrf.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/lapack/pbtrf.h diff --git a/app/src/main/cpp/dlib/matrix/lapack/potrf.h b/opencv_face_detect/src/main/cpp/dlib/matrix/lapack/potrf.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/lapack/potrf.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/lapack/potrf.h diff --git a/app/src/main/cpp/dlib/matrix/lapack/syev.h b/opencv_face_detect/src/main/cpp/dlib/matrix/lapack/syev.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/lapack/syev.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/lapack/syev.h diff --git a/app/src/main/cpp/dlib/matrix/lapack/syevr.h b/opencv_face_detect/src/main/cpp/dlib/matrix/lapack/syevr.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/lapack/syevr.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/lapack/syevr.h diff --git a/app/src/main/cpp/dlib/matrix/matrix.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_abstract.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_abstract.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_assign.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_assign.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_assign.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_assign.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_assign_fwd.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_assign_fwd.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_assign_fwd.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_assign_fwd.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_blas_bindings.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_blas_bindings.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_blas_bindings.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_blas_bindings.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_cholesky.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_cholesky.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_cholesky.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_cholesky.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_conj_trans.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_conj_trans.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_conj_trans.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_conj_trans.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_conv.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_conv.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_conv.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_conv.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_conv_abstract.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_conv_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_conv_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_conv_abstract.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_data_layout.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_data_layout.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_data_layout.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_data_layout.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_data_layout_abstract.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_data_layout_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_data_layout_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_data_layout_abstract.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_default_mul.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_default_mul.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_default_mul.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_default_mul.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_eigenvalue.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_eigenvalue.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_eigenvalue.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_eigenvalue.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_exp.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_exp.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_exp.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_exp.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_exp_abstract.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_exp_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_exp_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_exp_abstract.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_expressions.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_expressions.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_expressions.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_expressions.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_fft.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_fft.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_fft.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_fft.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_fft_abstract.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_fft_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_fft_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_fft_abstract.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_fwd.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_fwd.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_fwd.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_fwd.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_generic_image.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_generic_image.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_generic_image.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_generic_image.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_la.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_la.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_la.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_la.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_la_abstract.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_la_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_la_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_la_abstract.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_lu.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_lu.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_lu.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_lu.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_mat.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_mat.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_mat.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_mat.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_mat_abstract.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_mat_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_mat_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_mat_abstract.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_math_functions.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_math_functions.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_math_functions.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_math_functions.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_math_functions_abstract.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_math_functions_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_math_functions_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_math_functions_abstract.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_op.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_op.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_op.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_op.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_qr.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_qr.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_qr.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_qr.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_read_from_istream.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_read_from_istream.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_read_from_istream.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_read_from_istream.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_subexp.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_subexp.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_subexp.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_subexp.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_subexp_abstract.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_subexp_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_subexp_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_subexp_abstract.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_trsm.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_trsm.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_trsm.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_trsm.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_utilities.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_utilities.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_utilities.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_utilities.h diff --git a/app/src/main/cpp/dlib/matrix/matrix_utilities_abstract.h b/opencv_face_detect/src/main/cpp/dlib/matrix/matrix_utilities_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/matrix_utilities_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/matrix_utilities_abstract.h diff --git a/app/src/main/cpp/dlib/matrix/symmetric_matrix_cache.h b/opencv_face_detect/src/main/cpp/dlib/matrix/symmetric_matrix_cache.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/symmetric_matrix_cache.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/symmetric_matrix_cache.h diff --git a/app/src/main/cpp/dlib/matrix/symmetric_matrix_cache_abstract.h b/opencv_face_detect/src/main/cpp/dlib/matrix/symmetric_matrix_cache_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/matrix/symmetric_matrix_cache_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/matrix/symmetric_matrix_cache_abstract.h diff --git a/app/src/main/cpp/dlib/md5.h b/opencv_face_detect/src/main/cpp/dlib/md5.h similarity index 100% rename from app/src/main/cpp/dlib/md5.h rename to opencv_face_detect/src/main/cpp/dlib/md5.h diff --git a/app/src/main/cpp/dlib/md5/md5_kernel_1.cpp b/opencv_face_detect/src/main/cpp/dlib/md5/md5_kernel_1.cpp similarity index 100% rename from app/src/main/cpp/dlib/md5/md5_kernel_1.cpp rename to opencv_face_detect/src/main/cpp/dlib/md5/md5_kernel_1.cpp diff --git a/app/src/main/cpp/dlib/md5/md5_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/md5/md5_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/md5/md5_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/md5/md5_kernel_1.h diff --git a/app/src/main/cpp/dlib/md5/md5_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/md5/md5_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/md5/md5_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/md5/md5_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/member_function_pointer.h b/opencv_face_detect/src/main/cpp/dlib/member_function_pointer.h similarity index 100% rename from app/src/main/cpp/dlib/member_function_pointer.h rename to opencv_face_detect/src/main/cpp/dlib/member_function_pointer.h diff --git a/app/src/main/cpp/dlib/member_function_pointer/make_mfp.h b/opencv_face_detect/src/main/cpp/dlib/member_function_pointer/make_mfp.h similarity index 100% rename from app/src/main/cpp/dlib/member_function_pointer/make_mfp.h rename to opencv_face_detect/src/main/cpp/dlib/member_function_pointer/make_mfp.h diff --git a/app/src/main/cpp/dlib/member_function_pointer/make_mfp_abstract.h b/opencv_face_detect/src/main/cpp/dlib/member_function_pointer/make_mfp_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/member_function_pointer/make_mfp_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/member_function_pointer/make_mfp_abstract.h diff --git a/app/src/main/cpp/dlib/member_function_pointer/member_function_pointer_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/member_function_pointer/member_function_pointer_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/member_function_pointer/member_function_pointer_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/member_function_pointer/member_function_pointer_kernel_1.h diff --git a/app/src/main/cpp/dlib/member_function_pointer/member_function_pointer_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/member_function_pointer/member_function_pointer_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/member_function_pointer/member_function_pointer_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/member_function_pointer/member_function_pointer_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/memory_manager.h b/opencv_face_detect/src/main/cpp/dlib/memory_manager.h similarity index 100% rename from app/src/main/cpp/dlib/memory_manager.h rename to opencv_face_detect/src/main/cpp/dlib/memory_manager.h diff --git a/app/src/main/cpp/dlib/memory_manager/memory_manager_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/memory_manager/memory_manager_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/memory_manager/memory_manager_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/memory_manager/memory_manager_kernel_1.h diff --git a/app/src/main/cpp/dlib/memory_manager/memory_manager_kernel_2.h b/opencv_face_detect/src/main/cpp/dlib/memory_manager/memory_manager_kernel_2.h similarity index 100% rename from app/src/main/cpp/dlib/memory_manager/memory_manager_kernel_2.h rename to opencv_face_detect/src/main/cpp/dlib/memory_manager/memory_manager_kernel_2.h diff --git a/app/src/main/cpp/dlib/memory_manager/memory_manager_kernel_3.h b/opencv_face_detect/src/main/cpp/dlib/memory_manager/memory_manager_kernel_3.h similarity index 100% rename from app/src/main/cpp/dlib/memory_manager/memory_manager_kernel_3.h rename to opencv_face_detect/src/main/cpp/dlib/memory_manager/memory_manager_kernel_3.h diff --git a/app/src/main/cpp/dlib/memory_manager/memory_manager_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/memory_manager/memory_manager_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/memory_manager/memory_manager_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/memory_manager/memory_manager_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/memory_manager_global.h b/opencv_face_detect/src/main/cpp/dlib/memory_manager_global.h similarity index 100% rename from app/src/main/cpp/dlib/memory_manager_global.h rename to opencv_face_detect/src/main/cpp/dlib/memory_manager_global.h diff --git a/app/src/main/cpp/dlib/memory_manager_global/memory_manager_global_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/memory_manager_global/memory_manager_global_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/memory_manager_global/memory_manager_global_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/memory_manager_global/memory_manager_global_kernel_1.h diff --git a/app/src/main/cpp/dlib/memory_manager_global/memory_manager_global_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/memory_manager_global/memory_manager_global_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/memory_manager_global/memory_manager_global_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/memory_manager_global/memory_manager_global_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/memory_manager_stateless.h b/opencv_face_detect/src/main/cpp/dlib/memory_manager_stateless.h similarity index 100% rename from app/src/main/cpp/dlib/memory_manager_stateless.h rename to opencv_face_detect/src/main/cpp/dlib/memory_manager_stateless.h diff --git a/app/src/main/cpp/dlib/memory_manager_stateless/memory_manager_stateless_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/memory_manager_stateless/memory_manager_stateless_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/memory_manager_stateless/memory_manager_stateless_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/memory_manager_stateless/memory_manager_stateless_kernel_1.h diff --git a/app/src/main/cpp/dlib/memory_manager_stateless/memory_manager_stateless_kernel_2.h b/opencv_face_detect/src/main/cpp/dlib/memory_manager_stateless/memory_manager_stateless_kernel_2.h similarity index 100% rename from app/src/main/cpp/dlib/memory_manager_stateless/memory_manager_stateless_kernel_2.h rename to opencv_face_detect/src/main/cpp/dlib/memory_manager_stateless/memory_manager_stateless_kernel_2.h diff --git a/app/src/main/cpp/dlib/memory_manager_stateless/memory_manager_stateless_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/memory_manager_stateless/memory_manager_stateless_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/memory_manager_stateless/memory_manager_stateless_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/memory_manager_stateless/memory_manager_stateless_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/metaprogramming.h b/opencv_face_detect/src/main/cpp/dlib/metaprogramming.h similarity index 100% rename from app/src/main/cpp/dlib/metaprogramming.h rename to opencv_face_detect/src/main/cpp/dlib/metaprogramming.h diff --git a/app/src/main/cpp/dlib/misc_api.h b/opencv_face_detect/src/main/cpp/dlib/misc_api.h similarity index 100% rename from app/src/main/cpp/dlib/misc_api.h rename to opencv_face_detect/src/main/cpp/dlib/misc_api.h diff --git a/app/src/main/cpp/dlib/misc_api/misc_api_kernel_1.cpp b/opencv_face_detect/src/main/cpp/dlib/misc_api/misc_api_kernel_1.cpp similarity index 100% rename from app/src/main/cpp/dlib/misc_api/misc_api_kernel_1.cpp rename to opencv_face_detect/src/main/cpp/dlib/misc_api/misc_api_kernel_1.cpp diff --git a/app/src/main/cpp/dlib/misc_api/misc_api_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/misc_api/misc_api_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/misc_api/misc_api_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/misc_api/misc_api_kernel_1.h diff --git a/app/src/main/cpp/dlib/misc_api/misc_api_kernel_2.cpp b/opencv_face_detect/src/main/cpp/dlib/misc_api/misc_api_kernel_2.cpp similarity index 100% rename from app/src/main/cpp/dlib/misc_api/misc_api_kernel_2.cpp rename to opencv_face_detect/src/main/cpp/dlib/misc_api/misc_api_kernel_2.cpp diff --git a/app/src/main/cpp/dlib/misc_api/misc_api_kernel_2.h b/opencv_face_detect/src/main/cpp/dlib/misc_api/misc_api_kernel_2.h similarity index 100% rename from app/src/main/cpp/dlib/misc_api/misc_api_kernel_2.h rename to opencv_face_detect/src/main/cpp/dlib/misc_api/misc_api_kernel_2.h diff --git a/app/src/main/cpp/dlib/misc_api/misc_api_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/misc_api/misc_api_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/misc_api/misc_api_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/misc_api/misc_api_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/misc_api/misc_api_shared.h b/opencv_face_detect/src/main/cpp/dlib/misc_api/misc_api_shared.h similarity index 100% rename from app/src/main/cpp/dlib/misc_api/misc_api_shared.h rename to opencv_face_detect/src/main/cpp/dlib/misc_api/misc_api_shared.h diff --git a/app/src/main/cpp/dlib/misc_api/posix.h b/opencv_face_detect/src/main/cpp/dlib/misc_api/posix.h similarity index 100% rename from app/src/main/cpp/dlib/misc_api/posix.h rename to opencv_face_detect/src/main/cpp/dlib/misc_api/posix.h diff --git a/app/src/main/cpp/dlib/misc_api/windows.h b/opencv_face_detect/src/main/cpp/dlib/misc_api/windows.h similarity index 100% rename from app/src/main/cpp/dlib/misc_api/windows.h rename to opencv_face_detect/src/main/cpp/dlib/misc_api/windows.h diff --git a/app/src/main/cpp/dlib/mlp.h b/opencv_face_detect/src/main/cpp/dlib/mlp.h similarity index 100% rename from app/src/main/cpp/dlib/mlp.h rename to opencv_face_detect/src/main/cpp/dlib/mlp.h diff --git a/app/src/main/cpp/dlib/mlp/mlp_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/mlp/mlp_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/mlp/mlp_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/mlp/mlp_kernel_1.h diff --git a/app/src/main/cpp/dlib/mlp/mlp_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/mlp/mlp_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/mlp/mlp_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/mlp/mlp_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/mlp/mlp_kernel_c.h b/opencv_face_detect/src/main/cpp/dlib/mlp/mlp_kernel_c.h similarity index 100% rename from app/src/main/cpp/dlib/mlp/mlp_kernel_c.h rename to opencv_face_detect/src/main/cpp/dlib/mlp/mlp_kernel_c.h diff --git a/app/src/main/cpp/dlib/noncopyable.h b/opencv_face_detect/src/main/cpp/dlib/noncopyable.h similarity index 100% rename from app/src/main/cpp/dlib/noncopyable.h rename to opencv_face_detect/src/main/cpp/dlib/noncopyable.h diff --git a/app/src/main/cpp/dlib/numeric_constants.h b/opencv_face_detect/src/main/cpp/dlib/numeric_constants.h similarity index 100% rename from app/src/main/cpp/dlib/numeric_constants.h rename to opencv_face_detect/src/main/cpp/dlib/numeric_constants.h diff --git a/app/src/main/cpp/dlib/numerical_integration.h b/opencv_face_detect/src/main/cpp/dlib/numerical_integration.h similarity index 100% rename from app/src/main/cpp/dlib/numerical_integration.h rename to opencv_face_detect/src/main/cpp/dlib/numerical_integration.h diff --git a/app/src/main/cpp/dlib/numerical_integration/integrate_function_adapt_simpson.h b/opencv_face_detect/src/main/cpp/dlib/numerical_integration/integrate_function_adapt_simpson.h similarity index 100% rename from app/src/main/cpp/dlib/numerical_integration/integrate_function_adapt_simpson.h rename to opencv_face_detect/src/main/cpp/dlib/numerical_integration/integrate_function_adapt_simpson.h diff --git a/app/src/main/cpp/dlib/numerical_integration/integrate_function_adapt_simpson_abstract.h b/opencv_face_detect/src/main/cpp/dlib/numerical_integration/integrate_function_adapt_simpson_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/numerical_integration/integrate_function_adapt_simpson_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/numerical_integration/integrate_function_adapt_simpson_abstract.h diff --git a/app/src/main/cpp/dlib/opencv.h b/opencv_face_detect/src/main/cpp/dlib/opencv.h similarity index 100% rename from app/src/main/cpp/dlib/opencv.h rename to opencv_face_detect/src/main/cpp/dlib/opencv.h diff --git a/app/src/main/cpp/dlib/opencv/cv_image.h b/opencv_face_detect/src/main/cpp/dlib/opencv/cv_image.h similarity index 100% rename from app/src/main/cpp/dlib/opencv/cv_image.h rename to opencv_face_detect/src/main/cpp/dlib/opencv/cv_image.h diff --git a/app/src/main/cpp/dlib/opencv/cv_image_abstract.h b/opencv_face_detect/src/main/cpp/dlib/opencv/cv_image_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/opencv/cv_image_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/opencv/cv_image_abstract.h diff --git a/app/src/main/cpp/dlib/opencv/to_open_cv.h b/opencv_face_detect/src/main/cpp/dlib/opencv/to_open_cv.h similarity index 100% rename from app/src/main/cpp/dlib/opencv/to_open_cv.h rename to opencv_face_detect/src/main/cpp/dlib/opencv/to_open_cv.h diff --git a/app/src/main/cpp/dlib/opencv/to_open_cv_abstract.h b/opencv_face_detect/src/main/cpp/dlib/opencv/to_open_cv_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/opencv/to_open_cv_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/opencv/to_open_cv_abstract.h diff --git a/app/src/main/cpp/dlib/optimization.h b/opencv_face_detect/src/main/cpp/dlib/optimization.h similarity index 100% rename from app/src/main/cpp/dlib/optimization.h rename to opencv_face_detect/src/main/cpp/dlib/optimization.h diff --git a/app/src/main/cpp/dlib/optimization/elastic_net.h b/opencv_face_detect/src/main/cpp/dlib/optimization/elastic_net.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/elastic_net.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/elastic_net.h diff --git a/app/src/main/cpp/dlib/optimization/elastic_net_abstract.h b/opencv_face_detect/src/main/cpp/dlib/optimization/elastic_net_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/elastic_net_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/elastic_net_abstract.h diff --git a/app/src/main/cpp/dlib/optimization/find_max_factor_graph_nmplp.h b/opencv_face_detect/src/main/cpp/dlib/optimization/find_max_factor_graph_nmplp.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/find_max_factor_graph_nmplp.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/find_max_factor_graph_nmplp.h diff --git a/app/src/main/cpp/dlib/optimization/find_max_factor_graph_nmplp_abstract.h b/opencv_face_detect/src/main/cpp/dlib/optimization/find_max_factor_graph_nmplp_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/find_max_factor_graph_nmplp_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/find_max_factor_graph_nmplp_abstract.h diff --git a/app/src/main/cpp/dlib/optimization/find_max_factor_graph_viterbi.h b/opencv_face_detect/src/main/cpp/dlib/optimization/find_max_factor_graph_viterbi.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/find_max_factor_graph_viterbi.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/find_max_factor_graph_viterbi.h diff --git a/app/src/main/cpp/dlib/optimization/find_max_factor_graph_viterbi_abstract.h b/opencv_face_detect/src/main/cpp/dlib/optimization/find_max_factor_graph_viterbi_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/find_max_factor_graph_viterbi_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/find_max_factor_graph_viterbi_abstract.h diff --git a/app/src/main/cpp/dlib/optimization/find_max_parse_cky.h b/opencv_face_detect/src/main/cpp/dlib/optimization/find_max_parse_cky.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/find_max_parse_cky.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/find_max_parse_cky.h diff --git a/app/src/main/cpp/dlib/optimization/find_max_parse_cky_abstract.h b/opencv_face_detect/src/main/cpp/dlib/optimization/find_max_parse_cky_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/find_max_parse_cky_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/find_max_parse_cky_abstract.h diff --git a/app/src/main/cpp/dlib/optimization/find_optimal_parameters.h b/opencv_face_detect/src/main/cpp/dlib/optimization/find_optimal_parameters.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/find_optimal_parameters.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/find_optimal_parameters.h diff --git a/app/src/main/cpp/dlib/optimization/find_optimal_parameters_abstract.h b/opencv_face_detect/src/main/cpp/dlib/optimization/find_optimal_parameters_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/find_optimal_parameters_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/find_optimal_parameters_abstract.h diff --git a/app/src/main/cpp/dlib/optimization/isotonic_regression.h b/opencv_face_detect/src/main/cpp/dlib/optimization/isotonic_regression.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/isotonic_regression.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/isotonic_regression.h diff --git a/app/src/main/cpp/dlib/optimization/isotonic_regression_abstract.h b/opencv_face_detect/src/main/cpp/dlib/optimization/isotonic_regression_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/isotonic_regression_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/isotonic_regression_abstract.h diff --git a/app/src/main/cpp/dlib/optimization/max_cost_assignment.h b/opencv_face_detect/src/main/cpp/dlib/optimization/max_cost_assignment.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/max_cost_assignment.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/max_cost_assignment.h diff --git a/app/src/main/cpp/dlib/optimization/max_cost_assignment_abstract.h b/opencv_face_detect/src/main/cpp/dlib/optimization/max_cost_assignment_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/max_cost_assignment_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/max_cost_assignment_abstract.h diff --git a/app/src/main/cpp/dlib/optimization/max_sum_submatrix.h b/opencv_face_detect/src/main/cpp/dlib/optimization/max_sum_submatrix.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/max_sum_submatrix.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/max_sum_submatrix.h diff --git a/app/src/main/cpp/dlib/optimization/max_sum_submatrix_abstract.h b/opencv_face_detect/src/main/cpp/dlib/optimization/max_sum_submatrix_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/max_sum_submatrix_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/max_sum_submatrix_abstract.h diff --git a/app/src/main/cpp/dlib/optimization/optimization.h b/opencv_face_detect/src/main/cpp/dlib/optimization/optimization.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/optimization.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/optimization.h diff --git a/app/src/main/cpp/dlib/optimization/optimization_abstract.h b/opencv_face_detect/src/main/cpp/dlib/optimization/optimization_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/optimization_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/optimization_abstract.h diff --git a/app/src/main/cpp/dlib/optimization/optimization_bobyqa.h b/opencv_face_detect/src/main/cpp/dlib/optimization/optimization_bobyqa.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/optimization_bobyqa.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/optimization_bobyqa.h diff --git a/app/src/main/cpp/dlib/optimization/optimization_bobyqa_abstract.h b/opencv_face_detect/src/main/cpp/dlib/optimization/optimization_bobyqa_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/optimization_bobyqa_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/optimization_bobyqa_abstract.h diff --git a/app/src/main/cpp/dlib/optimization/optimization_least_squares.h b/opencv_face_detect/src/main/cpp/dlib/optimization/optimization_least_squares.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/optimization_least_squares.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/optimization_least_squares.h diff --git a/app/src/main/cpp/dlib/optimization/optimization_least_squares_abstract.h b/opencv_face_detect/src/main/cpp/dlib/optimization/optimization_least_squares_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/optimization_least_squares_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/optimization_least_squares_abstract.h diff --git a/app/src/main/cpp/dlib/optimization/optimization_line_search.h b/opencv_face_detect/src/main/cpp/dlib/optimization/optimization_line_search.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/optimization_line_search.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/optimization_line_search.h diff --git a/app/src/main/cpp/dlib/optimization/optimization_line_search_abstract.h b/opencv_face_detect/src/main/cpp/dlib/optimization/optimization_line_search_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/optimization_line_search_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/optimization_line_search_abstract.h diff --git a/app/src/main/cpp/dlib/optimization/optimization_oca.h b/opencv_face_detect/src/main/cpp/dlib/optimization/optimization_oca.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/optimization_oca.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/optimization_oca.h diff --git a/app/src/main/cpp/dlib/optimization/optimization_oca_abstract.h b/opencv_face_detect/src/main/cpp/dlib/optimization/optimization_oca_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/optimization_oca_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/optimization_oca_abstract.h diff --git a/app/src/main/cpp/dlib/optimization/optimization_search_strategies.h b/opencv_face_detect/src/main/cpp/dlib/optimization/optimization_search_strategies.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/optimization_search_strategies.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/optimization_search_strategies.h diff --git a/app/src/main/cpp/dlib/optimization/optimization_search_strategies_abstract.h b/opencv_face_detect/src/main/cpp/dlib/optimization/optimization_search_strategies_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/optimization_search_strategies_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/optimization_search_strategies_abstract.h diff --git a/app/src/main/cpp/dlib/optimization/optimization_solve_qp2_using_smo.h b/opencv_face_detect/src/main/cpp/dlib/optimization/optimization_solve_qp2_using_smo.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/optimization_solve_qp2_using_smo.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/optimization_solve_qp2_using_smo.h diff --git a/app/src/main/cpp/dlib/optimization/optimization_solve_qp2_using_smo_abstract.h b/opencv_face_detect/src/main/cpp/dlib/optimization/optimization_solve_qp2_using_smo_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/optimization_solve_qp2_using_smo_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/optimization_solve_qp2_using_smo_abstract.h diff --git a/app/src/main/cpp/dlib/optimization/optimization_solve_qp3_using_smo.h b/opencv_face_detect/src/main/cpp/dlib/optimization/optimization_solve_qp3_using_smo.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/optimization_solve_qp3_using_smo.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/optimization_solve_qp3_using_smo.h diff --git a/app/src/main/cpp/dlib/optimization/optimization_solve_qp3_using_smo_abstract.h b/opencv_face_detect/src/main/cpp/dlib/optimization/optimization_solve_qp3_using_smo_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/optimization_solve_qp3_using_smo_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/optimization_solve_qp3_using_smo_abstract.h diff --git a/app/src/main/cpp/dlib/optimization/optimization_solve_qp_using_smo.h b/opencv_face_detect/src/main/cpp/dlib/optimization/optimization_solve_qp_using_smo.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/optimization_solve_qp_using_smo.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/optimization_solve_qp_using_smo.h diff --git a/app/src/main/cpp/dlib/optimization/optimization_solve_qp_using_smo_abstract.h b/opencv_face_detect/src/main/cpp/dlib/optimization/optimization_solve_qp_using_smo_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/optimization_solve_qp_using_smo_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/optimization_solve_qp_using_smo_abstract.h diff --git a/app/src/main/cpp/dlib/optimization/optimization_stop_strategies.h b/opencv_face_detect/src/main/cpp/dlib/optimization/optimization_stop_strategies.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/optimization_stop_strategies.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/optimization_stop_strategies.h diff --git a/app/src/main/cpp/dlib/optimization/optimization_stop_strategies_abstract.h b/opencv_face_detect/src/main/cpp/dlib/optimization/optimization_stop_strategies_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/optimization_stop_strategies_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/optimization_stop_strategies_abstract.h diff --git a/app/src/main/cpp/dlib/optimization/optimization_trust_region.h b/opencv_face_detect/src/main/cpp/dlib/optimization/optimization_trust_region.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/optimization_trust_region.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/optimization_trust_region.h diff --git a/app/src/main/cpp/dlib/optimization/optimization_trust_region_abstract.h b/opencv_face_detect/src/main/cpp/dlib/optimization/optimization_trust_region_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/optimization/optimization_trust_region_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/optimization/optimization_trust_region_abstract.h diff --git a/app/src/main/cpp/dlib/ostream b/opencv_face_detect/src/main/cpp/dlib/ostream similarity index 100% rename from app/src/main/cpp/dlib/ostream rename to opencv_face_detect/src/main/cpp/dlib/ostream diff --git a/app/src/main/cpp/dlib/pipe.h b/opencv_face_detect/src/main/cpp/dlib/pipe.h similarity index 100% rename from app/src/main/cpp/dlib/pipe.h rename to opencv_face_detect/src/main/cpp/dlib/pipe.h diff --git a/app/src/main/cpp/dlib/pipe/pipe_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/pipe/pipe_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/pipe/pipe_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/pipe/pipe_kernel_1.h diff --git a/app/src/main/cpp/dlib/pipe/pipe_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/pipe/pipe_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/pipe/pipe_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/pipe/pipe_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/pixel.h b/opencv_face_detect/src/main/cpp/dlib/pixel.h similarity index 100% rename from app/src/main/cpp/dlib/pixel.h rename to opencv_face_detect/src/main/cpp/dlib/pixel.h diff --git a/app/src/main/cpp/dlib/platform.h b/opencv_face_detect/src/main/cpp/dlib/platform.h similarity index 100% rename from app/src/main/cpp/dlib/platform.h rename to opencv_face_detect/src/main/cpp/dlib/platform.h diff --git a/app/src/main/cpp/dlib/python.h b/opencv_face_detect/src/main/cpp/dlib/python.h similarity index 100% rename from app/src/main/cpp/dlib/python.h rename to opencv_face_detect/src/main/cpp/dlib/python.h diff --git a/app/src/main/cpp/dlib/python/numpy_image.h b/opencv_face_detect/src/main/cpp/dlib/python/numpy_image.h similarity index 100% rename from app/src/main/cpp/dlib/python/numpy_image.h rename to opencv_face_detect/src/main/cpp/dlib/python/numpy_image.h diff --git a/app/src/main/cpp/dlib/python/pyassert.h b/opencv_face_detect/src/main/cpp/dlib/python/pyassert.h similarity index 100% rename from app/src/main/cpp/dlib/python/pyassert.h rename to opencv_face_detect/src/main/cpp/dlib/python/pyassert.h diff --git a/app/src/main/cpp/dlib/python/pybind_utils.h b/opencv_face_detect/src/main/cpp/dlib/python/pybind_utils.h similarity index 100% rename from app/src/main/cpp/dlib/python/pybind_utils.h rename to opencv_face_detect/src/main/cpp/dlib/python/pybind_utils.h diff --git a/app/src/main/cpp/dlib/python/serialize_pickle.h b/opencv_face_detect/src/main/cpp/dlib/python/serialize_pickle.h similarity index 100% rename from app/src/main/cpp/dlib/python/serialize_pickle.h rename to opencv_face_detect/src/main/cpp/dlib/python/serialize_pickle.h diff --git a/app/src/main/cpp/dlib/quantum_computing.h b/opencv_face_detect/src/main/cpp/dlib/quantum_computing.h similarity index 100% rename from app/src/main/cpp/dlib/quantum_computing.h rename to opencv_face_detect/src/main/cpp/dlib/quantum_computing.h diff --git a/app/src/main/cpp/dlib/quantum_computing/quantum_computing.h b/opencv_face_detect/src/main/cpp/dlib/quantum_computing/quantum_computing.h similarity index 100% rename from app/src/main/cpp/dlib/quantum_computing/quantum_computing.h rename to opencv_face_detect/src/main/cpp/dlib/quantum_computing/quantum_computing.h diff --git a/app/src/main/cpp/dlib/quantum_computing/quantum_computing_abstract.h b/opencv_face_detect/src/main/cpp/dlib/quantum_computing/quantum_computing_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/quantum_computing/quantum_computing_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/quantum_computing/quantum_computing_abstract.h diff --git a/app/src/main/cpp/dlib/queue.h b/opencv_face_detect/src/main/cpp/dlib/queue.h similarity index 100% rename from app/src/main/cpp/dlib/queue.h rename to opencv_face_detect/src/main/cpp/dlib/queue.h diff --git a/app/src/main/cpp/dlib/queue/queue_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/queue/queue_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/queue/queue_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/queue/queue_kernel_1.h diff --git a/app/src/main/cpp/dlib/queue/queue_kernel_2.h b/opencv_face_detect/src/main/cpp/dlib/queue/queue_kernel_2.h similarity index 100% rename from app/src/main/cpp/dlib/queue/queue_kernel_2.h rename to opencv_face_detect/src/main/cpp/dlib/queue/queue_kernel_2.h diff --git a/app/src/main/cpp/dlib/queue/queue_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/queue/queue_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/queue/queue_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/queue/queue_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/queue/queue_kernel_c.h b/opencv_face_detect/src/main/cpp/dlib/queue/queue_kernel_c.h similarity index 100% rename from app/src/main/cpp/dlib/queue/queue_kernel_c.h rename to opencv_face_detect/src/main/cpp/dlib/queue/queue_kernel_c.h diff --git a/app/src/main/cpp/dlib/queue/queue_sort_1.h b/opencv_face_detect/src/main/cpp/dlib/queue/queue_sort_1.h similarity index 100% rename from app/src/main/cpp/dlib/queue/queue_sort_1.h rename to opencv_face_detect/src/main/cpp/dlib/queue/queue_sort_1.h diff --git a/app/src/main/cpp/dlib/queue/queue_sort_abstract.h b/opencv_face_detect/src/main/cpp/dlib/queue/queue_sort_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/queue/queue_sort_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/queue/queue_sort_abstract.h diff --git a/app/src/main/cpp/dlib/rand.h b/opencv_face_detect/src/main/cpp/dlib/rand.h similarity index 100% rename from app/src/main/cpp/dlib/rand.h rename to opencv_face_detect/src/main/cpp/dlib/rand.h diff --git a/app/src/main/cpp/dlib/rand/mersenne_twister.h b/opencv_face_detect/src/main/cpp/dlib/rand/mersenne_twister.h similarity index 100% rename from app/src/main/cpp/dlib/rand/mersenne_twister.h rename to opencv_face_detect/src/main/cpp/dlib/rand/mersenne_twister.h diff --git a/app/src/main/cpp/dlib/rand/rand_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/rand/rand_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/rand/rand_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/rand/rand_kernel_1.h diff --git a/app/src/main/cpp/dlib/rand/rand_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/rand/rand_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/rand/rand_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/rand/rand_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/random_forest.h b/opencv_face_detect/src/main/cpp/dlib/random_forest.h similarity index 100% rename from app/src/main/cpp/dlib/random_forest.h rename to opencv_face_detect/src/main/cpp/dlib/random_forest.h diff --git a/app/src/main/cpp/dlib/random_forest/random_forest_regression.h b/opencv_face_detect/src/main/cpp/dlib/random_forest/random_forest_regression.h similarity index 100% rename from app/src/main/cpp/dlib/random_forest/random_forest_regression.h rename to opencv_face_detect/src/main/cpp/dlib/random_forest/random_forest_regression.h diff --git a/app/src/main/cpp/dlib/random_forest/random_forest_regression_abstract.h b/opencv_face_detect/src/main/cpp/dlib/random_forest/random_forest_regression_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/random_forest/random_forest_regression_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/random_forest/random_forest_regression_abstract.h diff --git a/app/src/main/cpp/dlib/ref.h b/opencv_face_detect/src/main/cpp/dlib/ref.h similarity index 100% rename from app/src/main/cpp/dlib/ref.h rename to opencv_face_detect/src/main/cpp/dlib/ref.h diff --git a/app/src/main/cpp/dlib/reference_counter.h b/opencv_face_detect/src/main/cpp/dlib/reference_counter.h similarity index 100% rename from app/src/main/cpp/dlib/reference_counter.h rename to opencv_face_detect/src/main/cpp/dlib/reference_counter.h diff --git a/app/src/main/cpp/dlib/reference_counter/reference_counter_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/reference_counter/reference_counter_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/reference_counter/reference_counter_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/reference_counter/reference_counter_kernel_1.h diff --git a/app/src/main/cpp/dlib/reference_counter/reference_counter_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/reference_counter/reference_counter_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/reference_counter/reference_counter_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/reference_counter/reference_counter_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/revision.h b/opencv_face_detect/src/main/cpp/dlib/revision.h similarity index 100% rename from app/src/main/cpp/dlib/revision.h rename to opencv_face_detect/src/main/cpp/dlib/revision.h diff --git a/app/src/main/cpp/dlib/revision.h.in b/opencv_face_detect/src/main/cpp/dlib/revision.h.in similarity index 100% rename from app/src/main/cpp/dlib/revision.h.in rename to opencv_face_detect/src/main/cpp/dlib/revision.h.in diff --git a/app/src/main/cpp/dlib/sequence.h b/opencv_face_detect/src/main/cpp/dlib/sequence.h similarity index 100% rename from app/src/main/cpp/dlib/sequence.h rename to opencv_face_detect/src/main/cpp/dlib/sequence.h diff --git a/app/src/main/cpp/dlib/sequence/sequence_compare_1.h b/opencv_face_detect/src/main/cpp/dlib/sequence/sequence_compare_1.h similarity index 100% rename from app/src/main/cpp/dlib/sequence/sequence_compare_1.h rename to opencv_face_detect/src/main/cpp/dlib/sequence/sequence_compare_1.h diff --git a/app/src/main/cpp/dlib/sequence/sequence_compare_abstract.h b/opencv_face_detect/src/main/cpp/dlib/sequence/sequence_compare_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/sequence/sequence_compare_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/sequence/sequence_compare_abstract.h diff --git a/app/src/main/cpp/dlib/sequence/sequence_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/sequence/sequence_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/sequence/sequence_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/sequence/sequence_kernel_1.h diff --git a/app/src/main/cpp/dlib/sequence/sequence_kernel_2.h b/opencv_face_detect/src/main/cpp/dlib/sequence/sequence_kernel_2.h similarity index 100% rename from app/src/main/cpp/dlib/sequence/sequence_kernel_2.h rename to opencv_face_detect/src/main/cpp/dlib/sequence/sequence_kernel_2.h diff --git a/app/src/main/cpp/dlib/sequence/sequence_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/sequence/sequence_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/sequence/sequence_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/sequence/sequence_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/sequence/sequence_kernel_c.h b/opencv_face_detect/src/main/cpp/dlib/sequence/sequence_kernel_c.h similarity index 100% rename from app/src/main/cpp/dlib/sequence/sequence_kernel_c.h rename to opencv_face_detect/src/main/cpp/dlib/sequence/sequence_kernel_c.h diff --git a/app/src/main/cpp/dlib/sequence/sequence_sort_1.h b/opencv_face_detect/src/main/cpp/dlib/sequence/sequence_sort_1.h similarity index 100% rename from app/src/main/cpp/dlib/sequence/sequence_sort_1.h rename to opencv_face_detect/src/main/cpp/dlib/sequence/sequence_sort_1.h diff --git a/app/src/main/cpp/dlib/sequence/sequence_sort_2.h b/opencv_face_detect/src/main/cpp/dlib/sequence/sequence_sort_2.h similarity index 100% rename from app/src/main/cpp/dlib/sequence/sequence_sort_2.h rename to opencv_face_detect/src/main/cpp/dlib/sequence/sequence_sort_2.h diff --git a/app/src/main/cpp/dlib/sequence/sequence_sort_abstract.h b/opencv_face_detect/src/main/cpp/dlib/sequence/sequence_sort_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/sequence/sequence_sort_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/sequence/sequence_sort_abstract.h diff --git a/app/src/main/cpp/dlib/serialize.h b/opencv_face_detect/src/main/cpp/dlib/serialize.h similarity index 100% rename from app/src/main/cpp/dlib/serialize.h rename to opencv_face_detect/src/main/cpp/dlib/serialize.h diff --git a/app/src/main/cpp/dlib/server.h b/opencv_face_detect/src/main/cpp/dlib/server.h similarity index 100% rename from app/src/main/cpp/dlib/server.h rename to opencv_face_detect/src/main/cpp/dlib/server.h diff --git a/app/src/main/cpp/dlib/server/server_http.cpp b/opencv_face_detect/src/main/cpp/dlib/server/server_http.cpp similarity index 100% rename from app/src/main/cpp/dlib/server/server_http.cpp rename to opencv_face_detect/src/main/cpp/dlib/server/server_http.cpp diff --git a/app/src/main/cpp/dlib/server/server_http.h b/opencv_face_detect/src/main/cpp/dlib/server/server_http.h similarity index 100% rename from app/src/main/cpp/dlib/server/server_http.h rename to opencv_face_detect/src/main/cpp/dlib/server/server_http.h diff --git a/app/src/main/cpp/dlib/server/server_http_abstract.h b/opencv_face_detect/src/main/cpp/dlib/server/server_http_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/server/server_http_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/server/server_http_abstract.h diff --git a/app/src/main/cpp/dlib/server/server_iostream.cpp b/opencv_face_detect/src/main/cpp/dlib/server/server_iostream.cpp similarity index 100% rename from app/src/main/cpp/dlib/server/server_iostream.cpp rename to opencv_face_detect/src/main/cpp/dlib/server/server_iostream.cpp diff --git a/app/src/main/cpp/dlib/server/server_iostream.h b/opencv_face_detect/src/main/cpp/dlib/server/server_iostream.h similarity index 100% rename from app/src/main/cpp/dlib/server/server_iostream.h rename to opencv_face_detect/src/main/cpp/dlib/server/server_iostream.h diff --git a/app/src/main/cpp/dlib/server/server_iostream_abstract.h b/opencv_face_detect/src/main/cpp/dlib/server/server_iostream_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/server/server_iostream_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/server/server_iostream_abstract.h diff --git a/app/src/main/cpp/dlib/server/server_kernel.cpp b/opencv_face_detect/src/main/cpp/dlib/server/server_kernel.cpp similarity index 100% rename from app/src/main/cpp/dlib/server/server_kernel.cpp rename to opencv_face_detect/src/main/cpp/dlib/server/server_kernel.cpp diff --git a/app/src/main/cpp/dlib/server/server_kernel.h b/opencv_face_detect/src/main/cpp/dlib/server/server_kernel.h similarity index 100% rename from app/src/main/cpp/dlib/server/server_kernel.h rename to opencv_face_detect/src/main/cpp/dlib/server/server_kernel.h diff --git a/app/src/main/cpp/dlib/server/server_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/server/server_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/server/server_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/server/server_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/set.h b/opencv_face_detect/src/main/cpp/dlib/set.h similarity index 100% rename from app/src/main/cpp/dlib/set.h rename to opencv_face_detect/src/main/cpp/dlib/set.h diff --git a/app/src/main/cpp/dlib/set/set_compare_1.h b/opencv_face_detect/src/main/cpp/dlib/set/set_compare_1.h similarity index 100% rename from app/src/main/cpp/dlib/set/set_compare_1.h rename to opencv_face_detect/src/main/cpp/dlib/set/set_compare_1.h diff --git a/app/src/main/cpp/dlib/set/set_compare_abstract.h b/opencv_face_detect/src/main/cpp/dlib/set/set_compare_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/set/set_compare_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/set/set_compare_abstract.h diff --git a/app/src/main/cpp/dlib/set/set_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/set/set_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/set/set_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/set/set_kernel_1.h diff --git a/app/src/main/cpp/dlib/set/set_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/set/set_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/set/set_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/set/set_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/set/set_kernel_c.h b/opencv_face_detect/src/main/cpp/dlib/set/set_kernel_c.h similarity index 100% rename from app/src/main/cpp/dlib/set/set_kernel_c.h rename to opencv_face_detect/src/main/cpp/dlib/set/set_kernel_c.h diff --git a/app/src/main/cpp/dlib/set_utils.h b/opencv_face_detect/src/main/cpp/dlib/set_utils.h similarity index 100% rename from app/src/main/cpp/dlib/set_utils.h rename to opencv_face_detect/src/main/cpp/dlib/set_utils.h diff --git a/app/src/main/cpp/dlib/set_utils/set_utils.h b/opencv_face_detect/src/main/cpp/dlib/set_utils/set_utils.h similarity index 100% rename from app/src/main/cpp/dlib/set_utils/set_utils.h rename to opencv_face_detect/src/main/cpp/dlib/set_utils/set_utils.h diff --git a/app/src/main/cpp/dlib/set_utils/set_utils_abstract.h b/opencv_face_detect/src/main/cpp/dlib/set_utils/set_utils_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/set_utils/set_utils_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/set_utils/set_utils_abstract.h diff --git a/app/src/main/cpp/dlib/simd.h b/opencv_face_detect/src/main/cpp/dlib/simd.h similarity index 100% rename from app/src/main/cpp/dlib/simd.h rename to opencv_face_detect/src/main/cpp/dlib/simd.h diff --git a/app/src/main/cpp/dlib/simd/simd4f.h b/opencv_face_detect/src/main/cpp/dlib/simd/simd4f.h similarity index 100% rename from app/src/main/cpp/dlib/simd/simd4f.h rename to opencv_face_detect/src/main/cpp/dlib/simd/simd4f.h diff --git a/app/src/main/cpp/dlib/simd/simd4i.h b/opencv_face_detect/src/main/cpp/dlib/simd/simd4i.h similarity index 100% rename from app/src/main/cpp/dlib/simd/simd4i.h rename to opencv_face_detect/src/main/cpp/dlib/simd/simd4i.h diff --git a/app/src/main/cpp/dlib/simd/simd8f.h b/opencv_face_detect/src/main/cpp/dlib/simd/simd8f.h similarity index 100% rename from app/src/main/cpp/dlib/simd/simd8f.h rename to opencv_face_detect/src/main/cpp/dlib/simd/simd8f.h diff --git a/app/src/main/cpp/dlib/simd/simd8i.h b/opencv_face_detect/src/main/cpp/dlib/simd/simd8i.h similarity index 100% rename from app/src/main/cpp/dlib/simd/simd8i.h rename to opencv_face_detect/src/main/cpp/dlib/simd/simd8i.h diff --git a/app/src/main/cpp/dlib/simd/simd_check.h b/opencv_face_detect/src/main/cpp/dlib/simd/simd_check.h similarity index 100% rename from app/src/main/cpp/dlib/simd/simd_check.h rename to opencv_face_detect/src/main/cpp/dlib/simd/simd_check.h diff --git a/app/src/main/cpp/dlib/sliding_buffer.h b/opencv_face_detect/src/main/cpp/dlib/sliding_buffer.h similarity index 100% rename from app/src/main/cpp/dlib/sliding_buffer.h rename to opencv_face_detect/src/main/cpp/dlib/sliding_buffer.h diff --git a/app/src/main/cpp/dlib/sliding_buffer/circular_buffer.h b/opencv_face_detect/src/main/cpp/dlib/sliding_buffer/circular_buffer.h similarity index 100% rename from app/src/main/cpp/dlib/sliding_buffer/circular_buffer.h rename to opencv_face_detect/src/main/cpp/dlib/sliding_buffer/circular_buffer.h diff --git a/app/src/main/cpp/dlib/sliding_buffer/circular_buffer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/sliding_buffer/circular_buffer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/sliding_buffer/circular_buffer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/sliding_buffer/circular_buffer_abstract.h diff --git a/app/src/main/cpp/dlib/sliding_buffer/sliding_buffer_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/sliding_buffer/sliding_buffer_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/sliding_buffer/sliding_buffer_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/sliding_buffer/sliding_buffer_kernel_1.h diff --git a/app/src/main/cpp/dlib/sliding_buffer/sliding_buffer_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/sliding_buffer/sliding_buffer_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/sliding_buffer/sliding_buffer_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/sliding_buffer/sliding_buffer_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/sliding_buffer/sliding_buffer_kernel_c.h b/opencv_face_detect/src/main/cpp/dlib/sliding_buffer/sliding_buffer_kernel_c.h similarity index 100% rename from app/src/main/cpp/dlib/sliding_buffer/sliding_buffer_kernel_c.h rename to opencv_face_detect/src/main/cpp/dlib/sliding_buffer/sliding_buffer_kernel_c.h diff --git a/app/src/main/cpp/dlib/smart_pointers.h b/opencv_face_detect/src/main/cpp/dlib/smart_pointers.h similarity index 100% rename from app/src/main/cpp/dlib/smart_pointers.h rename to opencv_face_detect/src/main/cpp/dlib/smart_pointers.h diff --git a/app/src/main/cpp/dlib/smart_pointers/scoped_ptr.h b/opencv_face_detect/src/main/cpp/dlib/smart_pointers/scoped_ptr.h similarity index 100% rename from app/src/main/cpp/dlib/smart_pointers/scoped_ptr.h rename to opencv_face_detect/src/main/cpp/dlib/smart_pointers/scoped_ptr.h diff --git a/app/src/main/cpp/dlib/smart_pointers/shared_ptr.h b/opencv_face_detect/src/main/cpp/dlib/smart_pointers/shared_ptr.h similarity index 100% rename from app/src/main/cpp/dlib/smart_pointers/shared_ptr.h rename to opencv_face_detect/src/main/cpp/dlib/smart_pointers/shared_ptr.h diff --git a/app/src/main/cpp/dlib/smart_pointers/shared_ptr_abstract.h b/opencv_face_detect/src/main/cpp/dlib/smart_pointers/shared_ptr_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/smart_pointers/shared_ptr_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/smart_pointers/shared_ptr_abstract.h diff --git a/app/src/main/cpp/dlib/smart_pointers/shared_ptr_thread_safe.h b/opencv_face_detect/src/main/cpp/dlib/smart_pointers/shared_ptr_thread_safe.h similarity index 100% rename from app/src/main/cpp/dlib/smart_pointers/shared_ptr_thread_safe.h rename to opencv_face_detect/src/main/cpp/dlib/smart_pointers/shared_ptr_thread_safe.h diff --git a/app/src/main/cpp/dlib/smart_pointers/shared_ptr_thread_safe_abstract.h b/opencv_face_detect/src/main/cpp/dlib/smart_pointers/shared_ptr_thread_safe_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/smart_pointers/shared_ptr_thread_safe_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/smart_pointers/shared_ptr_thread_safe_abstract.h diff --git a/app/src/main/cpp/dlib/smart_pointers/weak_ptr.h b/opencv_face_detect/src/main/cpp/dlib/smart_pointers/weak_ptr.h similarity index 100% rename from app/src/main/cpp/dlib/smart_pointers/weak_ptr.h rename to opencv_face_detect/src/main/cpp/dlib/smart_pointers/weak_ptr.h diff --git a/app/src/main/cpp/dlib/smart_pointers/weak_ptr_abstract.h b/opencv_face_detect/src/main/cpp/dlib/smart_pointers/weak_ptr_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/smart_pointers/weak_ptr_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/smart_pointers/weak_ptr_abstract.h diff --git a/app/src/main/cpp/dlib/smart_pointers_thread_safe.h b/opencv_face_detect/src/main/cpp/dlib/smart_pointers_thread_safe.h similarity index 100% rename from app/src/main/cpp/dlib/smart_pointers_thread_safe.h rename to opencv_face_detect/src/main/cpp/dlib/smart_pointers_thread_safe.h diff --git a/app/src/main/cpp/dlib/sockets.h b/opencv_face_detect/src/main/cpp/dlib/sockets.h similarity index 100% rename from app/src/main/cpp/dlib/sockets.h rename to opencv_face_detect/src/main/cpp/dlib/sockets.h diff --git a/app/src/main/cpp/dlib/sockets/posix.h b/opencv_face_detect/src/main/cpp/dlib/sockets/posix.h similarity index 100% rename from app/src/main/cpp/dlib/sockets/posix.h rename to opencv_face_detect/src/main/cpp/dlib/sockets/posix.h diff --git a/app/src/main/cpp/dlib/sockets/sockets_extensions.cpp b/opencv_face_detect/src/main/cpp/dlib/sockets/sockets_extensions.cpp similarity index 100% rename from app/src/main/cpp/dlib/sockets/sockets_extensions.cpp rename to opencv_face_detect/src/main/cpp/dlib/sockets/sockets_extensions.cpp diff --git a/app/src/main/cpp/dlib/sockets/sockets_extensions.h b/opencv_face_detect/src/main/cpp/dlib/sockets/sockets_extensions.h similarity index 100% rename from app/src/main/cpp/dlib/sockets/sockets_extensions.h rename to opencv_face_detect/src/main/cpp/dlib/sockets/sockets_extensions.h diff --git a/app/src/main/cpp/dlib/sockets/sockets_extensions_abstract.h b/opencv_face_detect/src/main/cpp/dlib/sockets/sockets_extensions_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/sockets/sockets_extensions_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/sockets/sockets_extensions_abstract.h diff --git a/app/src/main/cpp/dlib/sockets/sockets_kernel_1.cpp b/opencv_face_detect/src/main/cpp/dlib/sockets/sockets_kernel_1.cpp similarity index 100% rename from app/src/main/cpp/dlib/sockets/sockets_kernel_1.cpp rename to opencv_face_detect/src/main/cpp/dlib/sockets/sockets_kernel_1.cpp diff --git a/app/src/main/cpp/dlib/sockets/sockets_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/sockets/sockets_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/sockets/sockets_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/sockets/sockets_kernel_1.h diff --git a/app/src/main/cpp/dlib/sockets/sockets_kernel_2.cpp b/opencv_face_detect/src/main/cpp/dlib/sockets/sockets_kernel_2.cpp similarity index 100% rename from app/src/main/cpp/dlib/sockets/sockets_kernel_2.cpp rename to opencv_face_detect/src/main/cpp/dlib/sockets/sockets_kernel_2.cpp diff --git a/app/src/main/cpp/dlib/sockets/sockets_kernel_2.h b/opencv_face_detect/src/main/cpp/dlib/sockets/sockets_kernel_2.h similarity index 100% rename from app/src/main/cpp/dlib/sockets/sockets_kernel_2.h rename to opencv_face_detect/src/main/cpp/dlib/sockets/sockets_kernel_2.h diff --git a/app/src/main/cpp/dlib/sockets/sockets_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/sockets/sockets_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/sockets/sockets_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/sockets/sockets_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/sockets/windows.h b/opencv_face_detect/src/main/cpp/dlib/sockets/windows.h similarity index 100% rename from app/src/main/cpp/dlib/sockets/windows.h rename to opencv_face_detect/src/main/cpp/dlib/sockets/windows.h diff --git a/app/src/main/cpp/dlib/sockstreambuf.h b/opencv_face_detect/src/main/cpp/dlib/sockstreambuf.h similarity index 100% rename from app/src/main/cpp/dlib/sockstreambuf.h rename to opencv_face_detect/src/main/cpp/dlib/sockstreambuf.h diff --git a/app/src/main/cpp/dlib/sockstreambuf/sockstreambuf.cpp b/opencv_face_detect/src/main/cpp/dlib/sockstreambuf/sockstreambuf.cpp similarity index 100% rename from app/src/main/cpp/dlib/sockstreambuf/sockstreambuf.cpp rename to opencv_face_detect/src/main/cpp/dlib/sockstreambuf/sockstreambuf.cpp diff --git a/app/src/main/cpp/dlib/sockstreambuf/sockstreambuf.h b/opencv_face_detect/src/main/cpp/dlib/sockstreambuf/sockstreambuf.h similarity index 100% rename from app/src/main/cpp/dlib/sockstreambuf/sockstreambuf.h rename to opencv_face_detect/src/main/cpp/dlib/sockstreambuf/sockstreambuf.h diff --git a/app/src/main/cpp/dlib/sockstreambuf/sockstreambuf_abstract.h b/opencv_face_detect/src/main/cpp/dlib/sockstreambuf/sockstreambuf_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/sockstreambuf/sockstreambuf_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/sockstreambuf/sockstreambuf_abstract.h diff --git a/app/src/main/cpp/dlib/sockstreambuf/sockstreambuf_unbuffered.cpp b/opencv_face_detect/src/main/cpp/dlib/sockstreambuf/sockstreambuf_unbuffered.cpp similarity index 100% rename from app/src/main/cpp/dlib/sockstreambuf/sockstreambuf_unbuffered.cpp rename to opencv_face_detect/src/main/cpp/dlib/sockstreambuf/sockstreambuf_unbuffered.cpp diff --git a/app/src/main/cpp/dlib/sockstreambuf/sockstreambuf_unbuffered.h b/opencv_face_detect/src/main/cpp/dlib/sockstreambuf/sockstreambuf_unbuffered.h similarity index 100% rename from app/src/main/cpp/dlib/sockstreambuf/sockstreambuf_unbuffered.h rename to opencv_face_detect/src/main/cpp/dlib/sockstreambuf/sockstreambuf_unbuffered.h diff --git a/app/src/main/cpp/dlib/sort.h b/opencv_face_detect/src/main/cpp/dlib/sort.h similarity index 100% rename from app/src/main/cpp/dlib/sort.h rename to opencv_face_detect/src/main/cpp/dlib/sort.h diff --git a/app/src/main/cpp/dlib/sparse_vector.h b/opencv_face_detect/src/main/cpp/dlib/sparse_vector.h similarity index 100% rename from app/src/main/cpp/dlib/sparse_vector.h rename to opencv_face_detect/src/main/cpp/dlib/sparse_vector.h diff --git a/app/src/main/cpp/dlib/sqlite.h b/opencv_face_detect/src/main/cpp/dlib/sqlite.h similarity index 100% rename from app/src/main/cpp/dlib/sqlite.h rename to opencv_face_detect/src/main/cpp/dlib/sqlite.h diff --git a/app/src/main/cpp/dlib/sqlite/sqlite.h b/opencv_face_detect/src/main/cpp/dlib/sqlite/sqlite.h similarity index 100% rename from app/src/main/cpp/dlib/sqlite/sqlite.h rename to opencv_face_detect/src/main/cpp/dlib/sqlite/sqlite.h diff --git a/app/src/main/cpp/dlib/sqlite/sqlite_abstract.h b/opencv_face_detect/src/main/cpp/dlib/sqlite/sqlite_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/sqlite/sqlite_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/sqlite/sqlite_abstract.h diff --git a/app/src/main/cpp/dlib/sqlite/sqlite_tools.h b/opencv_face_detect/src/main/cpp/dlib/sqlite/sqlite_tools.h similarity index 100% rename from app/src/main/cpp/dlib/sqlite/sqlite_tools.h rename to opencv_face_detect/src/main/cpp/dlib/sqlite/sqlite_tools.h diff --git a/app/src/main/cpp/dlib/sqlite/sqlite_tools_abstract.h b/opencv_face_detect/src/main/cpp/dlib/sqlite/sqlite_tools_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/sqlite/sqlite_tools_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/sqlite/sqlite_tools_abstract.h diff --git a/app/src/main/cpp/dlib/sstream b/opencv_face_detect/src/main/cpp/dlib/sstream similarity index 100% rename from app/src/main/cpp/dlib/sstream rename to opencv_face_detect/src/main/cpp/dlib/sstream diff --git a/app/src/main/cpp/dlib/stack.h b/opencv_face_detect/src/main/cpp/dlib/stack.h similarity index 100% rename from app/src/main/cpp/dlib/stack.h rename to opencv_face_detect/src/main/cpp/dlib/stack.h diff --git a/app/src/main/cpp/dlib/stack/stack_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/stack/stack_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/stack/stack_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/stack/stack_kernel_1.h diff --git a/app/src/main/cpp/dlib/stack/stack_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/stack/stack_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/stack/stack_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/stack/stack_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/stack/stack_kernel_c.h b/opencv_face_detect/src/main/cpp/dlib/stack/stack_kernel_c.h similarity index 100% rename from app/src/main/cpp/dlib/stack/stack_kernel_c.h rename to opencv_face_detect/src/main/cpp/dlib/stack/stack_kernel_c.h diff --git a/app/src/main/cpp/dlib/stack_trace.cpp b/opencv_face_detect/src/main/cpp/dlib/stack_trace.cpp similarity index 100% rename from app/src/main/cpp/dlib/stack_trace.cpp rename to opencv_face_detect/src/main/cpp/dlib/stack_trace.cpp diff --git a/app/src/main/cpp/dlib/stack_trace.h b/opencv_face_detect/src/main/cpp/dlib/stack_trace.h similarity index 100% rename from app/src/main/cpp/dlib/stack_trace.h rename to opencv_face_detect/src/main/cpp/dlib/stack_trace.h diff --git a/app/src/main/cpp/dlib/static_map.h b/opencv_face_detect/src/main/cpp/dlib/static_map.h similarity index 100% rename from app/src/main/cpp/dlib/static_map.h rename to opencv_face_detect/src/main/cpp/dlib/static_map.h diff --git a/app/src/main/cpp/dlib/static_map/static_map_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/static_map/static_map_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/static_map/static_map_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/static_map/static_map_kernel_1.h diff --git a/app/src/main/cpp/dlib/static_map/static_map_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/static_map/static_map_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/static_map/static_map_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/static_map/static_map_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/static_map/static_map_kernel_c.h b/opencv_face_detect/src/main/cpp/dlib/static_map/static_map_kernel_c.h similarity index 100% rename from app/src/main/cpp/dlib/static_map/static_map_kernel_c.h rename to opencv_face_detect/src/main/cpp/dlib/static_map/static_map_kernel_c.h diff --git a/app/src/main/cpp/dlib/static_set.h b/opencv_face_detect/src/main/cpp/dlib/static_set.h similarity index 100% rename from app/src/main/cpp/dlib/static_set.h rename to opencv_face_detect/src/main/cpp/dlib/static_set.h diff --git a/app/src/main/cpp/dlib/static_set/static_set_compare_1.h b/opencv_face_detect/src/main/cpp/dlib/static_set/static_set_compare_1.h similarity index 100% rename from app/src/main/cpp/dlib/static_set/static_set_compare_1.h rename to opencv_face_detect/src/main/cpp/dlib/static_set/static_set_compare_1.h diff --git a/app/src/main/cpp/dlib/static_set/static_set_compare_abstract.h b/opencv_face_detect/src/main/cpp/dlib/static_set/static_set_compare_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/static_set/static_set_compare_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/static_set/static_set_compare_abstract.h diff --git a/app/src/main/cpp/dlib/static_set/static_set_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/static_set/static_set_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/static_set/static_set_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/static_set/static_set_kernel_1.h diff --git a/app/src/main/cpp/dlib/static_set/static_set_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/static_set/static_set_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/static_set/static_set_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/static_set/static_set_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/static_set/static_set_kernel_c.h b/opencv_face_detect/src/main/cpp/dlib/static_set/static_set_kernel_c.h similarity index 100% rename from app/src/main/cpp/dlib/static_set/static_set_kernel_c.h rename to opencv_face_detect/src/main/cpp/dlib/static_set/static_set_kernel_c.h diff --git a/app/src/main/cpp/dlib/statistics.h b/opencv_face_detect/src/main/cpp/dlib/statistics.h similarity index 100% rename from app/src/main/cpp/dlib/statistics.h rename to opencv_face_detect/src/main/cpp/dlib/statistics.h diff --git a/app/src/main/cpp/dlib/statistics/average_precision.h b/opencv_face_detect/src/main/cpp/dlib/statistics/average_precision.h similarity index 100% rename from app/src/main/cpp/dlib/statistics/average_precision.h rename to opencv_face_detect/src/main/cpp/dlib/statistics/average_precision.h diff --git a/app/src/main/cpp/dlib/statistics/average_precision_abstract.h b/opencv_face_detect/src/main/cpp/dlib/statistics/average_precision_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/statistics/average_precision_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/statistics/average_precision_abstract.h diff --git a/app/src/main/cpp/dlib/statistics/cca.h b/opencv_face_detect/src/main/cpp/dlib/statistics/cca.h similarity index 100% rename from app/src/main/cpp/dlib/statistics/cca.h rename to opencv_face_detect/src/main/cpp/dlib/statistics/cca.h diff --git a/app/src/main/cpp/dlib/statistics/cca_abstract.h b/opencv_face_detect/src/main/cpp/dlib/statistics/cca_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/statistics/cca_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/statistics/cca_abstract.h diff --git a/app/src/main/cpp/dlib/statistics/dpca.h b/opencv_face_detect/src/main/cpp/dlib/statistics/dpca.h similarity index 100% rename from app/src/main/cpp/dlib/statistics/dpca.h rename to opencv_face_detect/src/main/cpp/dlib/statistics/dpca.h diff --git a/app/src/main/cpp/dlib/statistics/dpca_abstract.h b/opencv_face_detect/src/main/cpp/dlib/statistics/dpca_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/statistics/dpca_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/statistics/dpca_abstract.h diff --git a/app/src/main/cpp/dlib/statistics/image_feature_sampling.h b/opencv_face_detect/src/main/cpp/dlib/statistics/image_feature_sampling.h similarity index 100% rename from app/src/main/cpp/dlib/statistics/image_feature_sampling.h rename to opencv_face_detect/src/main/cpp/dlib/statistics/image_feature_sampling.h diff --git a/app/src/main/cpp/dlib/statistics/image_feature_sampling_abstract.h b/opencv_face_detect/src/main/cpp/dlib/statistics/image_feature_sampling_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/statistics/image_feature_sampling_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/statistics/image_feature_sampling_abstract.h diff --git a/app/src/main/cpp/dlib/statistics/lda.h b/opencv_face_detect/src/main/cpp/dlib/statistics/lda.h similarity index 100% rename from app/src/main/cpp/dlib/statistics/lda.h rename to opencv_face_detect/src/main/cpp/dlib/statistics/lda.h diff --git a/app/src/main/cpp/dlib/statistics/lda_abstract.h b/opencv_face_detect/src/main/cpp/dlib/statistics/lda_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/statistics/lda_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/statistics/lda_abstract.h diff --git a/app/src/main/cpp/dlib/statistics/random_subset_selector.h b/opencv_face_detect/src/main/cpp/dlib/statistics/random_subset_selector.h similarity index 100% rename from app/src/main/cpp/dlib/statistics/random_subset_selector.h rename to opencv_face_detect/src/main/cpp/dlib/statistics/random_subset_selector.h diff --git a/app/src/main/cpp/dlib/statistics/random_subset_selector_abstract.h b/opencv_face_detect/src/main/cpp/dlib/statistics/random_subset_selector_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/statistics/random_subset_selector_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/statistics/random_subset_selector_abstract.h diff --git a/app/src/main/cpp/dlib/statistics/running_gradient.h b/opencv_face_detect/src/main/cpp/dlib/statistics/running_gradient.h similarity index 100% rename from app/src/main/cpp/dlib/statistics/running_gradient.h rename to opencv_face_detect/src/main/cpp/dlib/statistics/running_gradient.h diff --git a/app/src/main/cpp/dlib/statistics/running_gradient_abstract.h b/opencv_face_detect/src/main/cpp/dlib/statistics/running_gradient_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/statistics/running_gradient_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/statistics/running_gradient_abstract.h diff --git a/app/src/main/cpp/dlib/statistics/sammon.h b/opencv_face_detect/src/main/cpp/dlib/statistics/sammon.h similarity index 100% rename from app/src/main/cpp/dlib/statistics/sammon.h rename to opencv_face_detect/src/main/cpp/dlib/statistics/sammon.h diff --git a/app/src/main/cpp/dlib/statistics/sammon_abstract.h b/opencv_face_detect/src/main/cpp/dlib/statistics/sammon_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/statistics/sammon_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/statistics/sammon_abstract.h diff --git a/app/src/main/cpp/dlib/statistics/statistics.h b/opencv_face_detect/src/main/cpp/dlib/statistics/statistics.h similarity index 100% rename from app/src/main/cpp/dlib/statistics/statistics.h rename to opencv_face_detect/src/main/cpp/dlib/statistics/statistics.h diff --git a/app/src/main/cpp/dlib/statistics/statistics_abstract.h b/opencv_face_detect/src/main/cpp/dlib/statistics/statistics_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/statistics/statistics_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/statistics/statistics_abstract.h diff --git a/app/src/main/cpp/dlib/statistics/vector_normalizer_frobmetric.h b/opencv_face_detect/src/main/cpp/dlib/statistics/vector_normalizer_frobmetric.h similarity index 100% rename from app/src/main/cpp/dlib/statistics/vector_normalizer_frobmetric.h rename to opencv_face_detect/src/main/cpp/dlib/statistics/vector_normalizer_frobmetric.h diff --git a/app/src/main/cpp/dlib/statistics/vector_normalizer_frobmetric_abstract.h b/opencv_face_detect/src/main/cpp/dlib/statistics/vector_normalizer_frobmetric_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/statistics/vector_normalizer_frobmetric_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/statistics/vector_normalizer_frobmetric_abstract.h diff --git a/app/src/main/cpp/dlib/std_allocator.h b/opencv_face_detect/src/main/cpp/dlib/std_allocator.h similarity index 100% rename from app/src/main/cpp/dlib/std_allocator.h rename to opencv_face_detect/src/main/cpp/dlib/std_allocator.h diff --git a/app/src/main/cpp/dlib/stl_checked.h b/opencv_face_detect/src/main/cpp/dlib/stl_checked.h similarity index 100% rename from app/src/main/cpp/dlib/stl_checked.h rename to opencv_face_detect/src/main/cpp/dlib/stl_checked.h diff --git a/app/src/main/cpp/dlib/stl_checked/std_vector_c.h b/opencv_face_detect/src/main/cpp/dlib/stl_checked/std_vector_c.h similarity index 100% rename from app/src/main/cpp/dlib/stl_checked/std_vector_c.h rename to opencv_face_detect/src/main/cpp/dlib/stl_checked/std_vector_c.h diff --git a/app/src/main/cpp/dlib/stl_checked/std_vector_c_abstract.h b/opencv_face_detect/src/main/cpp/dlib/stl_checked/std_vector_c_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/stl_checked/std_vector_c_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/stl_checked/std_vector_c_abstract.h diff --git a/app/src/main/cpp/dlib/string.h b/opencv_face_detect/src/main/cpp/dlib/string.h similarity index 100% rename from app/src/main/cpp/dlib/string.h rename to opencv_face_detect/src/main/cpp/dlib/string.h diff --git a/app/src/main/cpp/dlib/string/cassert b/opencv_face_detect/src/main/cpp/dlib/string/cassert similarity index 100% rename from app/src/main/cpp/dlib/string/cassert rename to opencv_face_detect/src/main/cpp/dlib/string/cassert diff --git a/app/src/main/cpp/dlib/string/iomanip b/opencv_face_detect/src/main/cpp/dlib/string/iomanip similarity index 100% rename from app/src/main/cpp/dlib/string/iomanip rename to opencv_face_detect/src/main/cpp/dlib/string/iomanip diff --git a/app/src/main/cpp/dlib/string/iosfwd b/opencv_face_detect/src/main/cpp/dlib/string/iosfwd similarity index 100% rename from app/src/main/cpp/dlib/string/iosfwd rename to opencv_face_detect/src/main/cpp/dlib/string/iosfwd diff --git a/app/src/main/cpp/dlib/string/iostream b/opencv_face_detect/src/main/cpp/dlib/string/iostream similarity index 100% rename from app/src/main/cpp/dlib/string/iostream rename to opencv_face_detect/src/main/cpp/dlib/string/iostream diff --git a/app/src/main/cpp/dlib/string/locale b/opencv_face_detect/src/main/cpp/dlib/string/locale similarity index 100% rename from app/src/main/cpp/dlib/string/locale rename to opencv_face_detect/src/main/cpp/dlib/string/locale diff --git a/app/src/main/cpp/dlib/string/string.h b/opencv_face_detect/src/main/cpp/dlib/string/string.h similarity index 100% rename from app/src/main/cpp/dlib/string/string.h rename to opencv_face_detect/src/main/cpp/dlib/string/string.h diff --git a/app/src/main/cpp/dlib/string/string_abstract.h b/opencv_face_detect/src/main/cpp/dlib/string/string_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/string/string_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/string/string_abstract.h diff --git a/app/src/main/cpp/dlib/svm.h b/opencv_face_detect/src/main/cpp/dlib/svm.h similarity index 100% rename from app/src/main/cpp/dlib/svm.h rename to opencv_face_detect/src/main/cpp/dlib/svm.h diff --git a/app/src/main/cpp/dlib/svm/active_learning.h b/opencv_face_detect/src/main/cpp/dlib/svm/active_learning.h similarity index 100% rename from app/src/main/cpp/dlib/svm/active_learning.h rename to opencv_face_detect/src/main/cpp/dlib/svm/active_learning.h diff --git a/app/src/main/cpp/dlib/svm/active_learning_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/active_learning_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/active_learning_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/active_learning_abstract.h diff --git a/app/src/main/cpp/dlib/svm/assignment_function.h b/opencv_face_detect/src/main/cpp/dlib/svm/assignment_function.h similarity index 100% rename from app/src/main/cpp/dlib/svm/assignment_function.h rename to opencv_face_detect/src/main/cpp/dlib/svm/assignment_function.h diff --git a/app/src/main/cpp/dlib/svm/assignment_function_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/assignment_function_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/assignment_function_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/assignment_function_abstract.h diff --git a/app/src/main/cpp/dlib/svm/auto.cpp b/opencv_face_detect/src/main/cpp/dlib/svm/auto.cpp similarity index 100% rename from app/src/main/cpp/dlib/svm/auto.cpp rename to opencv_face_detect/src/main/cpp/dlib/svm/auto.cpp diff --git a/app/src/main/cpp/dlib/svm/auto.h b/opencv_face_detect/src/main/cpp/dlib/svm/auto.h similarity index 100% rename from app/src/main/cpp/dlib/svm/auto.h rename to opencv_face_detect/src/main/cpp/dlib/svm/auto.h diff --git a/app/src/main/cpp/dlib/svm/auto_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/auto_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/auto_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/auto_abstract.h diff --git a/app/src/main/cpp/dlib/svm/cross_validate_assignment_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_assignment_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/cross_validate_assignment_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_assignment_trainer.h diff --git a/app/src/main/cpp/dlib/svm/cross_validate_assignment_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_assignment_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/cross_validate_assignment_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_assignment_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/cross_validate_graph_labeling_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_graph_labeling_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/cross_validate_graph_labeling_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_graph_labeling_trainer.h diff --git a/app/src/main/cpp/dlib/svm/cross_validate_graph_labeling_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_graph_labeling_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/cross_validate_graph_labeling_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_graph_labeling_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/cross_validate_multiclass_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_multiclass_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/cross_validate_multiclass_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_multiclass_trainer.h diff --git a/app/src/main/cpp/dlib/svm/cross_validate_multiclass_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_multiclass_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/cross_validate_multiclass_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_multiclass_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/cross_validate_object_detection_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_object_detection_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/cross_validate_object_detection_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_object_detection_trainer.h diff --git a/app/src/main/cpp/dlib/svm/cross_validate_object_detection_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_object_detection_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/cross_validate_object_detection_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_object_detection_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/cross_validate_regression_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_regression_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/cross_validate_regression_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_regression_trainer.h diff --git a/app/src/main/cpp/dlib/svm/cross_validate_regression_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_regression_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/cross_validate_regression_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_regression_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/cross_validate_sequence_labeler.h b/opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_sequence_labeler.h similarity index 100% rename from app/src/main/cpp/dlib/svm/cross_validate_sequence_labeler.h rename to opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_sequence_labeler.h diff --git a/app/src/main/cpp/dlib/svm/cross_validate_sequence_labeler_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_sequence_labeler_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/cross_validate_sequence_labeler_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_sequence_labeler_abstract.h diff --git a/app/src/main/cpp/dlib/svm/cross_validate_sequence_segmenter.h b/opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_sequence_segmenter.h similarity index 100% rename from app/src/main/cpp/dlib/svm/cross_validate_sequence_segmenter.h rename to opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_sequence_segmenter.h diff --git a/app/src/main/cpp/dlib/svm/cross_validate_sequence_segmenter_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_sequence_segmenter_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/cross_validate_sequence_segmenter_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_sequence_segmenter_abstract.h diff --git a/app/src/main/cpp/dlib/svm/cross_validate_track_association_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_track_association_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/cross_validate_track_association_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_track_association_trainer.h diff --git a/app/src/main/cpp/dlib/svm/cross_validate_track_association_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_track_association_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/cross_validate_track_association_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/cross_validate_track_association_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/empirical_kernel_map.h b/opencv_face_detect/src/main/cpp/dlib/svm/empirical_kernel_map.h similarity index 100% rename from app/src/main/cpp/dlib/svm/empirical_kernel_map.h rename to opencv_face_detect/src/main/cpp/dlib/svm/empirical_kernel_map.h diff --git a/app/src/main/cpp/dlib/svm/empirical_kernel_map_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/empirical_kernel_map_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/empirical_kernel_map_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/empirical_kernel_map_abstract.h diff --git a/app/src/main/cpp/dlib/svm/feature_ranking.h b/opencv_face_detect/src/main/cpp/dlib/svm/feature_ranking.h similarity index 100% rename from app/src/main/cpp/dlib/svm/feature_ranking.h rename to opencv_face_detect/src/main/cpp/dlib/svm/feature_ranking.h diff --git a/app/src/main/cpp/dlib/svm/feature_ranking_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/feature_ranking_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/feature_ranking_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/feature_ranking_abstract.h diff --git a/app/src/main/cpp/dlib/svm/function.h b/opencv_face_detect/src/main/cpp/dlib/svm/function.h similarity index 100% rename from app/src/main/cpp/dlib/svm/function.h rename to opencv_face_detect/src/main/cpp/dlib/svm/function.h diff --git a/app/src/main/cpp/dlib/svm/function_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/function_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/function_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/function_abstract.h diff --git a/app/src/main/cpp/dlib/svm/kcentroid.h b/opencv_face_detect/src/main/cpp/dlib/svm/kcentroid.h similarity index 100% rename from app/src/main/cpp/dlib/svm/kcentroid.h rename to opencv_face_detect/src/main/cpp/dlib/svm/kcentroid.h diff --git a/app/src/main/cpp/dlib/svm/kcentroid_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/kcentroid_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/kcentroid_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/kcentroid_abstract.h diff --git a/app/src/main/cpp/dlib/svm/kcentroid_overloads.h b/opencv_face_detect/src/main/cpp/dlib/svm/kcentroid_overloads.h similarity index 100% rename from app/src/main/cpp/dlib/svm/kcentroid_overloads.h rename to opencv_face_detect/src/main/cpp/dlib/svm/kcentroid_overloads.h diff --git a/app/src/main/cpp/dlib/svm/kernel.h b/opencv_face_detect/src/main/cpp/dlib/svm/kernel.h similarity index 100% rename from app/src/main/cpp/dlib/svm/kernel.h rename to opencv_face_detect/src/main/cpp/dlib/svm/kernel.h diff --git a/app/src/main/cpp/dlib/svm/kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/kernel_abstract.h diff --git a/app/src/main/cpp/dlib/svm/kernel_matrix.h b/opencv_face_detect/src/main/cpp/dlib/svm/kernel_matrix.h similarity index 100% rename from app/src/main/cpp/dlib/svm/kernel_matrix.h rename to opencv_face_detect/src/main/cpp/dlib/svm/kernel_matrix.h diff --git a/app/src/main/cpp/dlib/svm/kernel_matrix_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/kernel_matrix_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/kernel_matrix_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/kernel_matrix_abstract.h diff --git a/app/src/main/cpp/dlib/svm/kkmeans.h b/opencv_face_detect/src/main/cpp/dlib/svm/kkmeans.h similarity index 100% rename from app/src/main/cpp/dlib/svm/kkmeans.h rename to opencv_face_detect/src/main/cpp/dlib/svm/kkmeans.h diff --git a/app/src/main/cpp/dlib/svm/kkmeans_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/kkmeans_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/kkmeans_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/kkmeans_abstract.h diff --git a/app/src/main/cpp/dlib/svm/krls.h b/opencv_face_detect/src/main/cpp/dlib/svm/krls.h similarity index 100% rename from app/src/main/cpp/dlib/svm/krls.h rename to opencv_face_detect/src/main/cpp/dlib/svm/krls.h diff --git a/app/src/main/cpp/dlib/svm/krls_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/krls_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/krls_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/krls_abstract.h diff --git a/app/src/main/cpp/dlib/svm/krr_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/krr_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/krr_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/krr_trainer.h diff --git a/app/src/main/cpp/dlib/svm/krr_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/krr_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/krr_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/krr_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/linearly_independent_subset_finder.h b/opencv_face_detect/src/main/cpp/dlib/svm/linearly_independent_subset_finder.h similarity index 100% rename from app/src/main/cpp/dlib/svm/linearly_independent_subset_finder.h rename to opencv_face_detect/src/main/cpp/dlib/svm/linearly_independent_subset_finder.h diff --git a/app/src/main/cpp/dlib/svm/linearly_independent_subset_finder_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/linearly_independent_subset_finder_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/linearly_independent_subset_finder_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/linearly_independent_subset_finder_abstract.h diff --git a/app/src/main/cpp/dlib/svm/multiclass_tools.h b/opencv_face_detect/src/main/cpp/dlib/svm/multiclass_tools.h similarity index 100% rename from app/src/main/cpp/dlib/svm/multiclass_tools.h rename to opencv_face_detect/src/main/cpp/dlib/svm/multiclass_tools.h diff --git a/app/src/main/cpp/dlib/svm/multiclass_tools_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/multiclass_tools_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/multiclass_tools_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/multiclass_tools_abstract.h diff --git a/app/src/main/cpp/dlib/svm/null_df.h b/opencv_face_detect/src/main/cpp/dlib/svm/null_df.h similarity index 100% rename from app/src/main/cpp/dlib/svm/null_df.h rename to opencv_face_detect/src/main/cpp/dlib/svm/null_df.h diff --git a/app/src/main/cpp/dlib/svm/null_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/null_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/null_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/null_trainer.h diff --git a/app/src/main/cpp/dlib/svm/null_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/null_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/null_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/null_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/num_nonnegative_weights.h b/opencv_face_detect/src/main/cpp/dlib/svm/num_nonnegative_weights.h similarity index 100% rename from app/src/main/cpp/dlib/svm/num_nonnegative_weights.h rename to opencv_face_detect/src/main/cpp/dlib/svm/num_nonnegative_weights.h diff --git a/app/src/main/cpp/dlib/svm/one_vs_all_decision_function.h b/opencv_face_detect/src/main/cpp/dlib/svm/one_vs_all_decision_function.h similarity index 100% rename from app/src/main/cpp/dlib/svm/one_vs_all_decision_function.h rename to opencv_face_detect/src/main/cpp/dlib/svm/one_vs_all_decision_function.h diff --git a/app/src/main/cpp/dlib/svm/one_vs_all_decision_function_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/one_vs_all_decision_function_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/one_vs_all_decision_function_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/one_vs_all_decision_function_abstract.h diff --git a/app/src/main/cpp/dlib/svm/one_vs_all_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/one_vs_all_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/one_vs_all_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/one_vs_all_trainer.h diff --git a/app/src/main/cpp/dlib/svm/one_vs_all_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/one_vs_all_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/one_vs_all_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/one_vs_all_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/one_vs_one_decision_function.h b/opencv_face_detect/src/main/cpp/dlib/svm/one_vs_one_decision_function.h similarity index 100% rename from app/src/main/cpp/dlib/svm/one_vs_one_decision_function.h rename to opencv_face_detect/src/main/cpp/dlib/svm/one_vs_one_decision_function.h diff --git a/app/src/main/cpp/dlib/svm/one_vs_one_decision_function_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/one_vs_one_decision_function_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/one_vs_one_decision_function_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/one_vs_one_decision_function_abstract.h diff --git a/app/src/main/cpp/dlib/svm/one_vs_one_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/one_vs_one_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/one_vs_one_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/one_vs_one_trainer.h diff --git a/app/src/main/cpp/dlib/svm/one_vs_one_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/one_vs_one_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/one_vs_one_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/one_vs_one_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/pegasos.h b/opencv_face_detect/src/main/cpp/dlib/svm/pegasos.h similarity index 100% rename from app/src/main/cpp/dlib/svm/pegasos.h rename to opencv_face_detect/src/main/cpp/dlib/svm/pegasos.h diff --git a/app/src/main/cpp/dlib/svm/pegasos_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/pegasos_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/pegasos_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/pegasos_abstract.h diff --git a/app/src/main/cpp/dlib/svm/ranking_tools.h b/opencv_face_detect/src/main/cpp/dlib/svm/ranking_tools.h similarity index 100% rename from app/src/main/cpp/dlib/svm/ranking_tools.h rename to opencv_face_detect/src/main/cpp/dlib/svm/ranking_tools.h diff --git a/app/src/main/cpp/dlib/svm/ranking_tools_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/ranking_tools_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/ranking_tools_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/ranking_tools_abstract.h diff --git a/app/src/main/cpp/dlib/svm/rbf_network.h b/opencv_face_detect/src/main/cpp/dlib/svm/rbf_network.h similarity index 100% rename from app/src/main/cpp/dlib/svm/rbf_network.h rename to opencv_face_detect/src/main/cpp/dlib/svm/rbf_network.h diff --git a/app/src/main/cpp/dlib/svm/rbf_network_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/rbf_network_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/rbf_network_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/rbf_network_abstract.h diff --git a/app/src/main/cpp/dlib/svm/reduced.h b/opencv_face_detect/src/main/cpp/dlib/svm/reduced.h similarity index 100% rename from app/src/main/cpp/dlib/svm/reduced.h rename to opencv_face_detect/src/main/cpp/dlib/svm/reduced.h diff --git a/app/src/main/cpp/dlib/svm/reduced_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/reduced_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/reduced_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/reduced_abstract.h diff --git a/app/src/main/cpp/dlib/svm/rls.h b/opencv_face_detect/src/main/cpp/dlib/svm/rls.h similarity index 100% rename from app/src/main/cpp/dlib/svm/rls.h rename to opencv_face_detect/src/main/cpp/dlib/svm/rls.h diff --git a/app/src/main/cpp/dlib/svm/rls_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/rls_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/rls_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/rls_abstract.h diff --git a/app/src/main/cpp/dlib/svm/roc_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/roc_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/roc_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/roc_trainer.h diff --git a/app/src/main/cpp/dlib/svm/roc_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/roc_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/roc_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/roc_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/rr_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/rr_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/rr_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/rr_trainer.h diff --git a/app/src/main/cpp/dlib/svm/rr_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/rr_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/rr_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/rr_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/rvm.h b/opencv_face_detect/src/main/cpp/dlib/svm/rvm.h similarity index 100% rename from app/src/main/cpp/dlib/svm/rvm.h rename to opencv_face_detect/src/main/cpp/dlib/svm/rvm.h diff --git a/app/src/main/cpp/dlib/svm/rvm_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/rvm_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/rvm_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/rvm_abstract.h diff --git a/app/src/main/cpp/dlib/svm/sequence_labeler.h b/opencv_face_detect/src/main/cpp/dlib/svm/sequence_labeler.h similarity index 100% rename from app/src/main/cpp/dlib/svm/sequence_labeler.h rename to opencv_face_detect/src/main/cpp/dlib/svm/sequence_labeler.h diff --git a/app/src/main/cpp/dlib/svm/sequence_labeler_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/sequence_labeler_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/sequence_labeler_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/sequence_labeler_abstract.h diff --git a/app/src/main/cpp/dlib/svm/sequence_segmenter.h b/opencv_face_detect/src/main/cpp/dlib/svm/sequence_segmenter.h similarity index 100% rename from app/src/main/cpp/dlib/svm/sequence_segmenter.h rename to opencv_face_detect/src/main/cpp/dlib/svm/sequence_segmenter.h diff --git a/app/src/main/cpp/dlib/svm/sequence_segmenter_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/sequence_segmenter_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/sequence_segmenter_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/sequence_segmenter_abstract.h diff --git a/app/src/main/cpp/dlib/svm/simplify_linear_decision_function.h b/opencv_face_detect/src/main/cpp/dlib/svm/simplify_linear_decision_function.h similarity index 100% rename from app/src/main/cpp/dlib/svm/simplify_linear_decision_function.h rename to opencv_face_detect/src/main/cpp/dlib/svm/simplify_linear_decision_function.h diff --git a/app/src/main/cpp/dlib/svm/simplify_linear_decision_function_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/simplify_linear_decision_function_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/simplify_linear_decision_function_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/simplify_linear_decision_function_abstract.h diff --git a/app/src/main/cpp/dlib/svm/sort_basis_vectors.h b/opencv_face_detect/src/main/cpp/dlib/svm/sort_basis_vectors.h similarity index 100% rename from app/src/main/cpp/dlib/svm/sort_basis_vectors.h rename to opencv_face_detect/src/main/cpp/dlib/svm/sort_basis_vectors.h diff --git a/app/src/main/cpp/dlib/svm/sort_basis_vectors_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/sort_basis_vectors_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/sort_basis_vectors_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/sort_basis_vectors_abstract.h diff --git a/app/src/main/cpp/dlib/svm/sparse_kernel.h b/opencv_face_detect/src/main/cpp/dlib/svm/sparse_kernel.h similarity index 100% rename from app/src/main/cpp/dlib/svm/sparse_kernel.h rename to opencv_face_detect/src/main/cpp/dlib/svm/sparse_kernel.h diff --git a/app/src/main/cpp/dlib/svm/sparse_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/sparse_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/sparse_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/sparse_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/svm/sparse_vector.h b/opencv_face_detect/src/main/cpp/dlib/svm/sparse_vector.h similarity index 100% rename from app/src/main/cpp/dlib/svm/sparse_vector.h rename to opencv_face_detect/src/main/cpp/dlib/svm/sparse_vector.h diff --git a/app/src/main/cpp/dlib/svm/sparse_vector_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/sparse_vector_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/sparse_vector_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/sparse_vector_abstract.h diff --git a/app/src/main/cpp/dlib/svm/structural_assignment_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/structural_assignment_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/structural_assignment_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/structural_assignment_trainer.h diff --git a/app/src/main/cpp/dlib/svm/structural_assignment_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/structural_assignment_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/structural_assignment_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/structural_assignment_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/structural_graph_labeling_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/structural_graph_labeling_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/structural_graph_labeling_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/structural_graph_labeling_trainer.h diff --git a/app/src/main/cpp/dlib/svm/structural_graph_labeling_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/structural_graph_labeling_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/structural_graph_labeling_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/structural_graph_labeling_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/structural_object_detection_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/structural_object_detection_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/structural_object_detection_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/structural_object_detection_trainer.h diff --git a/app/src/main/cpp/dlib/svm/structural_object_detection_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/structural_object_detection_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/structural_object_detection_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/structural_object_detection_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/structural_sequence_labeling_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/structural_sequence_labeling_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/structural_sequence_labeling_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/structural_sequence_labeling_trainer.h diff --git a/app/src/main/cpp/dlib/svm/structural_sequence_labeling_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/structural_sequence_labeling_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/structural_sequence_labeling_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/structural_sequence_labeling_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/structural_sequence_segmentation_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/structural_sequence_segmentation_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/structural_sequence_segmentation_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/structural_sequence_segmentation_trainer.h diff --git a/app/src/main/cpp/dlib/svm/structural_sequence_segmentation_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/structural_sequence_segmentation_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/structural_sequence_segmentation_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/structural_sequence_segmentation_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/structural_svm_assignment_problem.h b/opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_assignment_problem.h similarity index 100% rename from app/src/main/cpp/dlib/svm/structural_svm_assignment_problem.h rename to opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_assignment_problem.h diff --git a/app/src/main/cpp/dlib/svm/structural_svm_assignment_problem_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_assignment_problem_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/structural_svm_assignment_problem_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_assignment_problem_abstract.h diff --git a/app/src/main/cpp/dlib/svm/structural_svm_distributed.h b/opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_distributed.h similarity index 100% rename from app/src/main/cpp/dlib/svm/structural_svm_distributed.h rename to opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_distributed.h diff --git a/app/src/main/cpp/dlib/svm/structural_svm_distributed_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_distributed_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/structural_svm_distributed_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_distributed_abstract.h diff --git a/app/src/main/cpp/dlib/svm/structural_svm_graph_labeling_problem.h b/opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_graph_labeling_problem.h similarity index 100% rename from app/src/main/cpp/dlib/svm/structural_svm_graph_labeling_problem.h rename to opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_graph_labeling_problem.h diff --git a/app/src/main/cpp/dlib/svm/structural_svm_graph_labeling_problem_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_graph_labeling_problem_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/structural_svm_graph_labeling_problem_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_graph_labeling_problem_abstract.h diff --git a/app/src/main/cpp/dlib/svm/structural_svm_object_detection_problem.h b/opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_object_detection_problem.h similarity index 100% rename from app/src/main/cpp/dlib/svm/structural_svm_object_detection_problem.h rename to opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_object_detection_problem.h diff --git a/app/src/main/cpp/dlib/svm/structural_svm_object_detection_problem_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_object_detection_problem_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/structural_svm_object_detection_problem_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_object_detection_problem_abstract.h diff --git a/app/src/main/cpp/dlib/svm/structural_svm_problem.h b/opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_problem.h similarity index 100% rename from app/src/main/cpp/dlib/svm/structural_svm_problem.h rename to opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_problem.h diff --git a/app/src/main/cpp/dlib/svm/structural_svm_problem_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_problem_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/structural_svm_problem_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_problem_abstract.h diff --git a/app/src/main/cpp/dlib/svm/structural_svm_problem_threaded.h b/opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_problem_threaded.h similarity index 100% rename from app/src/main/cpp/dlib/svm/structural_svm_problem_threaded.h rename to opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_problem_threaded.h diff --git a/app/src/main/cpp/dlib/svm/structural_svm_problem_threaded_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_problem_threaded_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/structural_svm_problem_threaded_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_problem_threaded_abstract.h diff --git a/app/src/main/cpp/dlib/svm/structural_svm_sequence_labeling_problem.h b/opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_sequence_labeling_problem.h similarity index 100% rename from app/src/main/cpp/dlib/svm/structural_svm_sequence_labeling_problem.h rename to opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_sequence_labeling_problem.h diff --git a/app/src/main/cpp/dlib/svm/structural_svm_sequence_labeling_problem_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_sequence_labeling_problem_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/structural_svm_sequence_labeling_problem_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/structural_svm_sequence_labeling_problem_abstract.h diff --git a/app/src/main/cpp/dlib/svm/structural_track_association_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/structural_track_association_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/structural_track_association_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/structural_track_association_trainer.h diff --git a/app/src/main/cpp/dlib/svm/structural_track_association_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/structural_track_association_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/structural_track_association_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/structural_track_association_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/svm.h b/opencv_face_detect/src/main/cpp/dlib/svm/svm.h similarity index 100% rename from app/src/main/cpp/dlib/svm/svm.h rename to opencv_face_detect/src/main/cpp/dlib/svm/svm.h diff --git a/app/src/main/cpp/dlib/svm/svm_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/svm_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/svm_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/svm_abstract.h diff --git a/app/src/main/cpp/dlib/svm/svm_c_ekm_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/svm_c_ekm_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/svm_c_ekm_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/svm_c_ekm_trainer.h diff --git a/app/src/main/cpp/dlib/svm/svm_c_ekm_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/svm_c_ekm_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/svm_c_ekm_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/svm_c_ekm_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/svm_c_linear_dcd_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/svm_c_linear_dcd_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/svm_c_linear_dcd_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/svm_c_linear_dcd_trainer.h diff --git a/app/src/main/cpp/dlib/svm/svm_c_linear_dcd_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/svm_c_linear_dcd_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/svm_c_linear_dcd_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/svm_c_linear_dcd_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/svm_c_linear_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/svm_c_linear_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/svm_c_linear_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/svm_c_linear_trainer.h diff --git a/app/src/main/cpp/dlib/svm/svm_c_linear_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/svm_c_linear_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/svm_c_linear_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/svm_c_linear_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/svm_c_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/svm_c_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/svm_c_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/svm_c_trainer.h diff --git a/app/src/main/cpp/dlib/svm/svm_c_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/svm_c_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/svm_c_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/svm_c_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/svm_multiclass_linear_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/svm_multiclass_linear_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/svm_multiclass_linear_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/svm_multiclass_linear_trainer.h diff --git a/app/src/main/cpp/dlib/svm/svm_multiclass_linear_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/svm_multiclass_linear_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/svm_multiclass_linear_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/svm_multiclass_linear_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/svm_nu_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/svm_nu_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/svm_nu_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/svm_nu_trainer.h diff --git a/app/src/main/cpp/dlib/svm/svm_nu_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/svm_nu_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/svm_nu_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/svm_nu_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/svm_one_class_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/svm_one_class_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/svm_one_class_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/svm_one_class_trainer.h diff --git a/app/src/main/cpp/dlib/svm/svm_one_class_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/svm_one_class_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/svm_one_class_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/svm_one_class_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/svm_rank_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/svm_rank_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/svm_rank_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/svm_rank_trainer.h diff --git a/app/src/main/cpp/dlib/svm/svm_rank_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/svm_rank_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/svm_rank_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/svm_rank_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/svm_threaded.h b/opencv_face_detect/src/main/cpp/dlib/svm/svm_threaded.h similarity index 100% rename from app/src/main/cpp/dlib/svm/svm_threaded.h rename to opencv_face_detect/src/main/cpp/dlib/svm/svm_threaded.h diff --git a/app/src/main/cpp/dlib/svm/svm_threaded_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/svm_threaded_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/svm_threaded_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/svm_threaded_abstract.h diff --git a/app/src/main/cpp/dlib/svm/svr_linear_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/svr_linear_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/svr_linear_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/svr_linear_trainer.h diff --git a/app/src/main/cpp/dlib/svm/svr_linear_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/svr_linear_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/svr_linear_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/svr_linear_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/svr_trainer.h b/opencv_face_detect/src/main/cpp/dlib/svm/svr_trainer.h similarity index 100% rename from app/src/main/cpp/dlib/svm/svr_trainer.h rename to opencv_face_detect/src/main/cpp/dlib/svm/svr_trainer.h diff --git a/app/src/main/cpp/dlib/svm/svr_trainer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/svr_trainer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/svr_trainer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/svr_trainer_abstract.h diff --git a/app/src/main/cpp/dlib/svm/track_association_function.h b/opencv_face_detect/src/main/cpp/dlib/svm/track_association_function.h similarity index 100% rename from app/src/main/cpp/dlib/svm/track_association_function.h rename to opencv_face_detect/src/main/cpp/dlib/svm/track_association_function.h diff --git a/app/src/main/cpp/dlib/svm/track_association_function_abstract.h b/opencv_face_detect/src/main/cpp/dlib/svm/track_association_function_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/svm/track_association_function_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/svm/track_association_function_abstract.h diff --git a/app/src/main/cpp/dlib/svm_threaded.h b/opencv_face_detect/src/main/cpp/dlib/svm_threaded.h similarity index 100% rename from app/src/main/cpp/dlib/svm_threaded.h rename to opencv_face_detect/src/main/cpp/dlib/svm_threaded.h diff --git a/app/src/main/cpp/dlib/sync_extension.h b/opencv_face_detect/src/main/cpp/dlib/sync_extension.h similarity index 100% rename from app/src/main/cpp/dlib/sync_extension.h rename to opencv_face_detect/src/main/cpp/dlib/sync_extension.h diff --git a/app/src/main/cpp/dlib/sync_extension/sync_extension_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/sync_extension/sync_extension_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/sync_extension/sync_extension_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/sync_extension/sync_extension_kernel_1.h diff --git a/app/src/main/cpp/dlib/sync_extension/sync_extension_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/sync_extension/sync_extension_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/sync_extension/sync_extension_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/sync_extension/sync_extension_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/test/CMakeLists.txt b/opencv_face_detect/src/main/cpp/dlib/test/CMakeLists.txt similarity index 100% rename from app/src/main/cpp/dlib/test/CMakeLists.txt rename to opencv_face_detect/src/main/cpp/dlib/test/CMakeLists.txt diff --git a/app/src/main/cpp/dlib/test/WINDOWS_build_and_run_all_unit_tests.bat b/opencv_face_detect/src/main/cpp/dlib/test/WINDOWS_build_and_run_all_unit_tests.bat similarity index 95% rename from app/src/main/cpp/dlib/test/WINDOWS_build_and_run_all_unit_tests.bat rename to opencv_face_detect/src/main/cpp/dlib/test/WINDOWS_build_and_run_all_unit_tests.bat index 333ca15..766eb2d 100644 --- a/app/src/main/cpp/dlib/test/WINDOWS_build_and_run_all_unit_tests.bat +++ b/opencv_face_detect/src/main/cpp/dlib/test/WINDOWS_build_and_run_all_unit_tests.bat @@ -1,42 +1,42 @@ -date /T > test_log.txt -time /T >> test_log.txt - -rem the pings are to wait between builds so visual studio doesn't get in a funk. - - - -echo testing python >> test_log.txt -rmdir /S /Q build_python -mkdir build_python -cd build_python -cmake -G "Visual Studio 14 2015 Win64" -T host=x64 ../../../tools/python -cmake --build . --config Release || exit /B -ping 127.0.0.1 -n 5 -w 1000 > null -cd .. - - - -echo testing vc2015 >> test_log.txt -rmdir /S /Q build_vc2015_64 -mkdir build_vc2015_64 -cd build_vc2015_64 -cmake -G "Visual Studio 14 2015 Win64" -T host=x64 .. -cmake --build . --config Release || exit /B -ping 127.0.0.1 -n 5 -w 1000 > null -cmake --build . --config Debug || exit /B -ping 127.0.0.1 -n 5 -w 1000 > null -cd Release -dtest --runall -d || exit /B -cd .. -cd .. - - - - - -del null -type test_log.txt - -date /T -time /T - +date /T > test_log.txt +time /T >> test_log.txt + +rem the pings are to wait between builds so visual studio doesn't get in a funk. + + + +echo testing python >> test_log.txt +rmdir /S /Q build_python +mkdir build_python +cd build_python +cmake -G "Visual Studio 14 2015 Win64" -T host=x64 ../../../tools/python +cmake --build . --config Release || exit /B +ping 127.0.0.1 -n 5 -w 1000 > null +cd .. + + + +echo testing vc2015 >> test_log.txt +rmdir /S /Q build_vc2015_64 +mkdir build_vc2015_64 +cd build_vc2015_64 +cmake -G "Visual Studio 14 2015 Win64" -T host=x64 .. +cmake --build . --config Release || exit /B +ping 127.0.0.1 -n 5 -w 1000 > null +cmake --build . --config Debug || exit /B +ping 127.0.0.1 -n 5 -w 1000 > null +cd Release +dtest --runall -d || exit /B +cd .. +cd .. + + + + + +del null +type test_log.txt + +date /T +time /T + diff --git a/app/src/main/cpp/dlib/test/active_learning.cpp b/opencv_face_detect/src/main/cpp/dlib/test/active_learning.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/active_learning.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/active_learning.cpp diff --git a/app/src/main/cpp/dlib/test/any.cpp b/opencv_face_detect/src/main/cpp/dlib/test/any.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/any.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/any.cpp diff --git a/app/src/main/cpp/dlib/test/any_function.cpp b/opencv_face_detect/src/main/cpp/dlib/test/any_function.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/any_function.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/any_function.cpp diff --git a/app/src/main/cpp/dlib/test/array.cpp b/opencv_face_detect/src/main/cpp/dlib/test/array.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/array.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/array.cpp diff --git a/app/src/main/cpp/dlib/test/array2d.cpp b/opencv_face_detect/src/main/cpp/dlib/test/array2d.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/array2d.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/array2d.cpp diff --git a/app/src/main/cpp/dlib/test/assignment_learning.cpp b/opencv_face_detect/src/main/cpp/dlib/test/assignment_learning.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/assignment_learning.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/assignment_learning.cpp diff --git a/app/src/main/cpp/dlib/test/base64.cpp b/opencv_face_detect/src/main/cpp/dlib/test/base64.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/base64.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/base64.cpp diff --git a/app/src/main/cpp/dlib/test/bayes_nets.cpp b/opencv_face_detect/src/main/cpp/dlib/test/bayes_nets.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/bayes_nets.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/bayes_nets.cpp diff --git a/app/src/main/cpp/dlib/test/bigint.cpp b/opencv_face_detect/src/main/cpp/dlib/test/bigint.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/bigint.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/bigint.cpp diff --git a/app/src/main/cpp/dlib/test/binary_search_tree.h b/opencv_face_detect/src/main/cpp/dlib/test/binary_search_tree.h similarity index 100% rename from app/src/main/cpp/dlib/test/binary_search_tree.h rename to opencv_face_detect/src/main/cpp/dlib/test/binary_search_tree.h diff --git a/app/src/main/cpp/dlib/test/binary_search_tree_kernel_1a.cpp b/opencv_face_detect/src/main/cpp/dlib/test/binary_search_tree_kernel_1a.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/binary_search_tree_kernel_1a.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/binary_search_tree_kernel_1a.cpp diff --git a/app/src/main/cpp/dlib/test/binary_search_tree_kernel_2a.cpp b/opencv_face_detect/src/main/cpp/dlib/test/binary_search_tree_kernel_2a.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/binary_search_tree_kernel_2a.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/binary_search_tree_kernel_2a.cpp diff --git a/app/src/main/cpp/dlib/test/binary_search_tree_mm1.cpp b/opencv_face_detect/src/main/cpp/dlib/test/binary_search_tree_mm1.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/binary_search_tree_mm1.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/binary_search_tree_mm1.cpp diff --git a/app/src/main/cpp/dlib/test/binary_search_tree_mm2.cpp b/opencv_face_detect/src/main/cpp/dlib/test/binary_search_tree_mm2.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/binary_search_tree_mm2.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/binary_search_tree_mm2.cpp diff --git a/app/src/main/cpp/dlib/test/blas_bindings/CMakeLists.txt b/opencv_face_detect/src/main/cpp/dlib/test/blas_bindings/CMakeLists.txt similarity index 100% rename from app/src/main/cpp/dlib/test/blas_bindings/CMakeLists.txt rename to opencv_face_detect/src/main/cpp/dlib/test/blas_bindings/CMakeLists.txt diff --git a/app/src/main/cpp/dlib/test/blas_bindings/blas_bindings_dot.cpp b/opencv_face_detect/src/main/cpp/dlib/test/blas_bindings/blas_bindings_dot.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/blas_bindings/blas_bindings_dot.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/blas_bindings/blas_bindings_dot.cpp diff --git a/app/src/main/cpp/dlib/test/blas_bindings/blas_bindings_gemm.cpp b/opencv_face_detect/src/main/cpp/dlib/test/blas_bindings/blas_bindings_gemm.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/blas_bindings/blas_bindings_gemm.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/blas_bindings/blas_bindings_gemm.cpp diff --git a/app/src/main/cpp/dlib/test/blas_bindings/blas_bindings_gemv.cpp b/opencv_face_detect/src/main/cpp/dlib/test/blas_bindings/blas_bindings_gemv.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/blas_bindings/blas_bindings_gemv.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/blas_bindings/blas_bindings_gemv.cpp diff --git a/app/src/main/cpp/dlib/test/blas_bindings/blas_bindings_ger.cpp b/opencv_face_detect/src/main/cpp/dlib/test/blas_bindings/blas_bindings_ger.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/blas_bindings/blas_bindings_ger.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/blas_bindings/blas_bindings_ger.cpp diff --git a/app/src/main/cpp/dlib/test/blas_bindings/blas_bindings_scal_axpy.cpp b/opencv_face_detect/src/main/cpp/dlib/test/blas_bindings/blas_bindings_scal_axpy.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/blas_bindings/blas_bindings_scal_axpy.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/blas_bindings/blas_bindings_scal_axpy.cpp diff --git a/app/src/main/cpp/dlib/test/blas_bindings/vector.cpp b/opencv_face_detect/src/main/cpp/dlib/test/blas_bindings/vector.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/blas_bindings/vector.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/blas_bindings/vector.cpp diff --git a/app/src/main/cpp/dlib/test/bridge.cpp b/opencv_face_detect/src/main/cpp/dlib/test/bridge.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/bridge.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/bridge.cpp diff --git a/app/src/main/cpp/dlib/test/bsp.cpp b/opencv_face_detect/src/main/cpp/dlib/test/bsp.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/bsp.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/bsp.cpp diff --git a/app/src/main/cpp/dlib/test/byte_orderer.cpp b/opencv_face_detect/src/main/cpp/dlib/test/byte_orderer.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/byte_orderer.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/byte_orderer.cpp diff --git a/app/src/main/cpp/dlib/test/cca.cpp b/opencv_face_detect/src/main/cpp/dlib/test/cca.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/cca.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/cca.cpp diff --git a/app/src/main/cpp/dlib/test/checkerboard.h b/opencv_face_detect/src/main/cpp/dlib/test/checkerboard.h similarity index 100% rename from app/src/main/cpp/dlib/test/checkerboard.h rename to opencv_face_detect/src/main/cpp/dlib/test/checkerboard.h diff --git a/app/src/main/cpp/dlib/test/clustering.cpp b/opencv_face_detect/src/main/cpp/dlib/test/clustering.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/clustering.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/clustering.cpp diff --git a/app/src/main/cpp/dlib/test/cmd_line_parser.cpp b/opencv_face_detect/src/main/cpp/dlib/test/cmd_line_parser.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/cmd_line_parser.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/cmd_line_parser.cpp diff --git a/app/src/main/cpp/dlib/test/cmd_line_parser.h b/opencv_face_detect/src/main/cpp/dlib/test/cmd_line_parser.h similarity index 100% rename from app/src/main/cpp/dlib/test/cmd_line_parser.h rename to opencv_face_detect/src/main/cpp/dlib/test/cmd_line_parser.h diff --git a/app/src/main/cpp/dlib/test/cmd_line_parser_wchar_t.cpp b/opencv_face_detect/src/main/cpp/dlib/test/cmd_line_parser_wchar_t.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/cmd_line_parser_wchar_t.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/cmd_line_parser_wchar_t.cpp diff --git a/app/src/main/cpp/dlib/test/compress_stream.cpp b/opencv_face_detect/src/main/cpp/dlib/test/compress_stream.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/compress_stream.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/compress_stream.cpp diff --git a/app/src/main/cpp/dlib/test/conditioning_class.cpp b/opencv_face_detect/src/main/cpp/dlib/test/conditioning_class.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/conditioning_class.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/conditioning_class.cpp diff --git a/app/src/main/cpp/dlib/test/conditioning_class.h b/opencv_face_detect/src/main/cpp/dlib/test/conditioning_class.h similarity index 100% rename from app/src/main/cpp/dlib/test/conditioning_class.h rename to opencv_face_detect/src/main/cpp/dlib/test/conditioning_class.h diff --git a/app/src/main/cpp/dlib/test/conditioning_class_c.cpp b/opencv_face_detect/src/main/cpp/dlib/test/conditioning_class_c.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/conditioning_class_c.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/conditioning_class_c.cpp diff --git a/app/src/main/cpp/dlib/test/config_reader.cpp b/opencv_face_detect/src/main/cpp/dlib/test/config_reader.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/config_reader.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/config_reader.cpp diff --git a/app/src/main/cpp/dlib/test/correlation_tracker.cpp b/opencv_face_detect/src/main/cpp/dlib/test/correlation_tracker.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/correlation_tracker.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/correlation_tracker.cpp diff --git a/app/src/main/cpp/dlib/test/crc32.cpp b/opencv_face_detect/src/main/cpp/dlib/test/crc32.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/crc32.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/crc32.cpp diff --git a/app/src/main/cpp/dlib/test/create_iris_datafile.cpp b/opencv_face_detect/src/main/cpp/dlib/test/create_iris_datafile.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/create_iris_datafile.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/create_iris_datafile.cpp diff --git a/app/src/main/cpp/dlib/test/create_iris_datafile.h b/opencv_face_detect/src/main/cpp/dlib/test/create_iris_datafile.h similarity index 100% rename from app/src/main/cpp/dlib/test/create_iris_datafile.h rename to opencv_face_detect/src/main/cpp/dlib/test/create_iris_datafile.h diff --git a/app/src/main/cpp/dlib/test/cublas.cpp b/opencv_face_detect/src/main/cpp/dlib/test/cublas.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/cublas.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/cublas.cpp diff --git a/app/src/main/cpp/dlib/test/data_io.cpp b/opencv_face_detect/src/main/cpp/dlib/test/data_io.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/data_io.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/data_io.cpp diff --git a/app/src/main/cpp/dlib/test/directed_graph.cpp b/opencv_face_detect/src/main/cpp/dlib/test/directed_graph.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/directed_graph.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/directed_graph.cpp diff --git a/app/src/main/cpp/dlib/test/discriminant_pca.cpp b/opencv_face_detect/src/main/cpp/dlib/test/discriminant_pca.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/discriminant_pca.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/discriminant_pca.cpp diff --git a/app/src/main/cpp/dlib/test/disjoint_subsets.cpp b/opencv_face_detect/src/main/cpp/dlib/test/disjoint_subsets.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/disjoint_subsets.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/disjoint_subsets.cpp diff --git a/app/src/main/cpp/dlib/test/disjoint_subsets_sized.cpp b/opencv_face_detect/src/main/cpp/dlib/test/disjoint_subsets_sized.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/disjoint_subsets_sized.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/disjoint_subsets_sized.cpp diff --git a/app/src/main/cpp/dlib/test/dnn.cpp b/opencv_face_detect/src/main/cpp/dlib/test/dnn.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/dnn.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/dnn.cpp diff --git a/app/src/main/cpp/dlib/test/ekm_and_lisf.cpp b/opencv_face_detect/src/main/cpp/dlib/test/ekm_and_lisf.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/ekm_and_lisf.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/ekm_and_lisf.cpp diff --git a/app/src/main/cpp/dlib/test/elastic_net.cpp b/opencv_face_detect/src/main/cpp/dlib/test/elastic_net.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/elastic_net.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/elastic_net.cpp diff --git a/app/src/main/cpp/dlib/test/empirical_kernel_map.cpp b/opencv_face_detect/src/main/cpp/dlib/test/empirical_kernel_map.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/empirical_kernel_map.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/empirical_kernel_map.cpp diff --git a/app/src/main/cpp/dlib/test/entropy_coder.cpp b/opencv_face_detect/src/main/cpp/dlib/test/entropy_coder.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/entropy_coder.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/entropy_coder.cpp diff --git a/app/src/main/cpp/dlib/test/entropy_encoder_model.cpp b/opencv_face_detect/src/main/cpp/dlib/test/entropy_encoder_model.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/entropy_encoder_model.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/entropy_encoder_model.cpp diff --git a/app/src/main/cpp/dlib/test/example.cpp b/opencv_face_detect/src/main/cpp/dlib/test/example.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/example.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/example.cpp diff --git a/app/src/main/cpp/dlib/test/example_args.cpp b/opencv_face_detect/src/main/cpp/dlib/test/example_args.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/example_args.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/example_args.cpp diff --git a/app/src/main/cpp/dlib/test/examples/CMakeLists.txt b/opencv_face_detect/src/main/cpp/dlib/test/examples/CMakeLists.txt similarity index 100% rename from app/src/main/cpp/dlib/test/examples/CMakeLists.txt rename to opencv_face_detect/src/main/cpp/dlib/test/examples/CMakeLists.txt diff --git a/app/src/main/cpp/dlib/test/face.cpp b/opencv_face_detect/src/main/cpp/dlib/test/face.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/face.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/face.cpp diff --git a/app/src/main/cpp/dlib/test/fft.cpp b/opencv_face_detect/src/main/cpp/dlib/test/fft.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/fft.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/fft.cpp diff --git a/app/src/main/cpp/dlib/test/fhog.cpp b/opencv_face_detect/src/main/cpp/dlib/test/fhog.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/fhog.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/fhog.cpp diff --git a/app/src/main/cpp/dlib/test/filtering.cpp b/opencv_face_detect/src/main/cpp/dlib/test/filtering.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/filtering.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/filtering.cpp diff --git a/app/src/main/cpp/dlib/test/find_max_factor_graph_nmplp.cpp b/opencv_face_detect/src/main/cpp/dlib/test/find_max_factor_graph_nmplp.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/find_max_factor_graph_nmplp.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/find_max_factor_graph_nmplp.cpp diff --git a/app/src/main/cpp/dlib/test/find_max_factor_graph_viterbi.cpp b/opencv_face_detect/src/main/cpp/dlib/test/find_max_factor_graph_viterbi.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/find_max_factor_graph_viterbi.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/find_max_factor_graph_viterbi.cpp diff --git a/app/src/main/cpp/dlib/test/find_optimal_parameters.cpp b/opencv_face_detect/src/main/cpp/dlib/test/find_optimal_parameters.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/find_optimal_parameters.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/find_optimal_parameters.cpp diff --git a/app/src/main/cpp/dlib/test/geometry.cpp b/opencv_face_detect/src/main/cpp/dlib/test/geometry.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/geometry.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/geometry.cpp diff --git a/app/src/main/cpp/dlib/test/global_optimization.cpp b/opencv_face_detect/src/main/cpp/dlib/test/global_optimization.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/global_optimization.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/global_optimization.cpp diff --git a/app/src/main/cpp/dlib/test/graph.cpp b/opencv_face_detect/src/main/cpp/dlib/test/graph.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/graph.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/graph.cpp diff --git a/app/src/main/cpp/dlib/test/graph_cuts.cpp b/opencv_face_detect/src/main/cpp/dlib/test/graph_cuts.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/graph_cuts.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/graph_cuts.cpp diff --git a/app/src/main/cpp/dlib/test/graph_labeler.cpp b/opencv_face_detect/src/main/cpp/dlib/test/graph_labeler.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/graph_labeler.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/graph_labeler.cpp diff --git a/app/src/main/cpp/dlib/test/gui/CMakeLists.txt b/opencv_face_detect/src/main/cpp/dlib/test/gui/CMakeLists.txt similarity index 100% rename from app/src/main/cpp/dlib/test/gui/CMakeLists.txt rename to opencv_face_detect/src/main/cpp/dlib/test/gui/CMakeLists.txt diff --git a/app/src/main/cpp/dlib/test/gui/main.cpp b/opencv_face_detect/src/main/cpp/dlib/test/gui/main.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/gui/main.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/gui/main.cpp diff --git a/app/src/main/cpp/dlib/test/hash.cpp b/opencv_face_detect/src/main/cpp/dlib/test/hash.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/hash.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/hash.cpp diff --git a/app/src/main/cpp/dlib/test/hash_map.cpp b/opencv_face_detect/src/main/cpp/dlib/test/hash_map.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/hash_map.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/hash_map.cpp diff --git a/app/src/main/cpp/dlib/test/hash_set.cpp b/opencv_face_detect/src/main/cpp/dlib/test/hash_set.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/hash_set.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/hash_set.cpp diff --git a/app/src/main/cpp/dlib/test/hash_table.cpp b/opencv_face_detect/src/main/cpp/dlib/test/hash_table.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/hash_table.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/hash_table.cpp diff --git a/app/src/main/cpp/dlib/test/hog_image.cpp b/opencv_face_detect/src/main/cpp/dlib/test/hog_image.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/hog_image.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/hog_image.cpp diff --git a/app/src/main/cpp/dlib/test/image.cpp b/opencv_face_detect/src/main/cpp/dlib/test/image.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/image.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/image.cpp diff --git a/app/src/main/cpp/dlib/test/iosockstream.cpp b/opencv_face_detect/src/main/cpp/dlib/test/iosockstream.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/iosockstream.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/iosockstream.cpp diff --git a/app/src/main/cpp/dlib/test/is_same_object.cpp b/opencv_face_detect/src/main/cpp/dlib/test/is_same_object.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/is_same_object.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/is_same_object.cpp diff --git a/app/src/main/cpp/dlib/test/isotonic_regression.cpp b/opencv_face_detect/src/main/cpp/dlib/test/isotonic_regression.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/isotonic_regression.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/isotonic_regression.cpp diff --git a/app/src/main/cpp/dlib/test/kcentroid.cpp b/opencv_face_detect/src/main/cpp/dlib/test/kcentroid.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/kcentroid.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/kcentroid.cpp diff --git a/app/src/main/cpp/dlib/test/kernel_matrix.cpp b/opencv_face_detect/src/main/cpp/dlib/test/kernel_matrix.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/kernel_matrix.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/kernel_matrix.cpp diff --git a/app/src/main/cpp/dlib/test/kmeans.cpp b/opencv_face_detect/src/main/cpp/dlib/test/kmeans.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/kmeans.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/kmeans.cpp diff --git a/app/src/main/cpp/dlib/test/learning_to_track.cpp b/opencv_face_detect/src/main/cpp/dlib/test/learning_to_track.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/learning_to_track.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/learning_to_track.cpp diff --git a/app/src/main/cpp/dlib/test/least_squares.cpp b/opencv_face_detect/src/main/cpp/dlib/test/least_squares.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/least_squares.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/least_squares.cpp diff --git a/app/src/main/cpp/dlib/test/linear_manifold_regularizer.cpp b/opencv_face_detect/src/main/cpp/dlib/test/linear_manifold_regularizer.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/linear_manifold_regularizer.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/linear_manifold_regularizer.cpp diff --git a/app/src/main/cpp/dlib/test/lspi.cpp b/opencv_face_detect/src/main/cpp/dlib/test/lspi.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/lspi.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/lspi.cpp diff --git a/app/src/main/cpp/dlib/test/lz77_buffer.cpp b/opencv_face_detect/src/main/cpp/dlib/test/lz77_buffer.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/lz77_buffer.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/lz77_buffer.cpp diff --git a/app/src/main/cpp/dlib/test/main.cpp b/opencv_face_detect/src/main/cpp/dlib/test/main.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/main.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/main.cpp diff --git a/app/src/main/cpp/dlib/test/makefile b/opencv_face_detect/src/main/cpp/dlib/test/makefile similarity index 100% rename from app/src/main/cpp/dlib/test/makefile rename to opencv_face_detect/src/main/cpp/dlib/test/makefile diff --git a/app/src/main/cpp/dlib/test/map.cpp b/opencv_face_detect/src/main/cpp/dlib/test/map.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/map.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/map.cpp diff --git a/app/src/main/cpp/dlib/test/matrix.cpp b/opencv_face_detect/src/main/cpp/dlib/test/matrix.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/matrix.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/matrix.cpp diff --git a/app/src/main/cpp/dlib/test/matrix2.cpp b/opencv_face_detect/src/main/cpp/dlib/test/matrix2.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/matrix2.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/matrix2.cpp diff --git a/app/src/main/cpp/dlib/test/matrix3.cpp b/opencv_face_detect/src/main/cpp/dlib/test/matrix3.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/matrix3.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/matrix3.cpp diff --git a/app/src/main/cpp/dlib/test/matrix4.cpp b/opencv_face_detect/src/main/cpp/dlib/test/matrix4.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/matrix4.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/matrix4.cpp diff --git a/app/src/main/cpp/dlib/test/matrix_chol.cpp b/opencv_face_detect/src/main/cpp/dlib/test/matrix_chol.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/matrix_chol.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/matrix_chol.cpp diff --git a/app/src/main/cpp/dlib/test/matrix_eig.cpp b/opencv_face_detect/src/main/cpp/dlib/test/matrix_eig.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/matrix_eig.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/matrix_eig.cpp diff --git a/app/src/main/cpp/dlib/test/matrix_lu.cpp b/opencv_face_detect/src/main/cpp/dlib/test/matrix_lu.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/matrix_lu.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/matrix_lu.cpp diff --git a/app/src/main/cpp/dlib/test/matrix_qr.cpp b/opencv_face_detect/src/main/cpp/dlib/test/matrix_qr.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/matrix_qr.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/matrix_qr.cpp diff --git a/app/src/main/cpp/dlib/test/max_cost_assignment.cpp b/opencv_face_detect/src/main/cpp/dlib/test/max_cost_assignment.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/max_cost_assignment.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/max_cost_assignment.cpp diff --git a/app/src/main/cpp/dlib/test/max_sum_submatrix.cpp b/opencv_face_detect/src/main/cpp/dlib/test/max_sum_submatrix.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/max_sum_submatrix.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/max_sum_submatrix.cpp diff --git a/app/src/main/cpp/dlib/test/md5.cpp b/opencv_face_detect/src/main/cpp/dlib/test/md5.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/md5.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/md5.cpp diff --git a/app/src/main/cpp/dlib/test/member_function_pointer.cpp b/opencv_face_detect/src/main/cpp/dlib/test/member_function_pointer.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/member_function_pointer.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/member_function_pointer.cpp diff --git a/app/src/main/cpp/dlib/test/metaprogramming.cpp b/opencv_face_detect/src/main/cpp/dlib/test/metaprogramming.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/metaprogramming.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/metaprogramming.cpp diff --git a/app/src/main/cpp/dlib/test/mpc.cpp b/opencv_face_detect/src/main/cpp/dlib/test/mpc.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/mpc.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/mpc.cpp diff --git a/app/src/main/cpp/dlib/test/multithreaded_object.cpp b/opencv_face_detect/src/main/cpp/dlib/test/multithreaded_object.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/multithreaded_object.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/multithreaded_object.cpp diff --git a/app/src/main/cpp/dlib/test/numerical_integration.cpp b/opencv_face_detect/src/main/cpp/dlib/test/numerical_integration.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/numerical_integration.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/numerical_integration.cpp diff --git a/app/src/main/cpp/dlib/test/object_detector.cpp b/opencv_face_detect/src/main/cpp/dlib/test/object_detector.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/object_detector.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/object_detector.cpp diff --git a/app/src/main/cpp/dlib/test/oca.cpp b/opencv_face_detect/src/main/cpp/dlib/test/oca.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/oca.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/oca.cpp diff --git a/app/src/main/cpp/dlib/test/one_vs_all_trainer.cpp b/opencv_face_detect/src/main/cpp/dlib/test/one_vs_all_trainer.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/one_vs_all_trainer.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/one_vs_all_trainer.cpp diff --git a/app/src/main/cpp/dlib/test/one_vs_one_trainer.cpp b/opencv_face_detect/src/main/cpp/dlib/test/one_vs_one_trainer.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/one_vs_one_trainer.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/one_vs_one_trainer.cpp diff --git a/app/src/main/cpp/dlib/test/opt_qp_solver.cpp b/opencv_face_detect/src/main/cpp/dlib/test/opt_qp_solver.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/opt_qp_solver.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/opt_qp_solver.cpp diff --git a/app/src/main/cpp/dlib/test/optimization.cpp b/opencv_face_detect/src/main/cpp/dlib/test/optimization.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/optimization.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/optimization.cpp diff --git a/app/src/main/cpp/dlib/test/optimization_test_functions.cpp b/opencv_face_detect/src/main/cpp/dlib/test/optimization_test_functions.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/optimization_test_functions.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/optimization_test_functions.cpp diff --git a/app/src/main/cpp/dlib/test/optimization_test_functions.h b/opencv_face_detect/src/main/cpp/dlib/test/optimization_test_functions.h similarity index 100% rename from app/src/main/cpp/dlib/test/optimization_test_functions.h rename to opencv_face_detect/src/main/cpp/dlib/test/optimization_test_functions.h diff --git a/app/src/main/cpp/dlib/test/parallel_for.cpp b/opencv_face_detect/src/main/cpp/dlib/test/parallel_for.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/parallel_for.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/parallel_for.cpp diff --git a/app/src/main/cpp/dlib/test/parse.cpp b/opencv_face_detect/src/main/cpp/dlib/test/parse.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/parse.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/parse.cpp diff --git a/app/src/main/cpp/dlib/test/pipe.cpp b/opencv_face_detect/src/main/cpp/dlib/test/pipe.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/pipe.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/pipe.cpp diff --git a/app/src/main/cpp/dlib/test/pixel.cpp b/opencv_face_detect/src/main/cpp/dlib/test/pixel.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/pixel.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/pixel.cpp diff --git a/app/src/main/cpp/dlib/test/probabilistic.cpp b/opencv_face_detect/src/main/cpp/dlib/test/probabilistic.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/probabilistic.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/probabilistic.cpp diff --git a/app/src/main/cpp/dlib/test/pyramid_down.cpp b/opencv_face_detect/src/main/cpp/dlib/test/pyramid_down.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/pyramid_down.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/pyramid_down.cpp diff --git a/app/src/main/cpp/dlib/test/queue.cpp b/opencv_face_detect/src/main/cpp/dlib/test/queue.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/queue.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/queue.cpp diff --git a/app/src/main/cpp/dlib/test/rand.cpp b/opencv_face_detect/src/main/cpp/dlib/test/rand.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/rand.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/rand.cpp diff --git a/app/src/main/cpp/dlib/test/random_forest.cpp b/opencv_face_detect/src/main/cpp/dlib/test/random_forest.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/random_forest.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/random_forest.cpp diff --git a/app/src/main/cpp/dlib/test/ranking.cpp b/opencv_face_detect/src/main/cpp/dlib/test/ranking.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/ranking.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/ranking.cpp diff --git a/app/src/main/cpp/dlib/test/read_write_mutex.cpp b/opencv_face_detect/src/main/cpp/dlib/test/read_write_mutex.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/read_write_mutex.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/read_write_mutex.cpp diff --git a/app/src/main/cpp/dlib/test/reference_counter.cpp b/opencv_face_detect/src/main/cpp/dlib/test/reference_counter.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/reference_counter.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/reference_counter.cpp diff --git a/app/src/main/cpp/dlib/test/rls.cpp b/opencv_face_detect/src/main/cpp/dlib/test/rls.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/rls.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/rls.cpp diff --git a/app/src/main/cpp/dlib/test/sammon.cpp b/opencv_face_detect/src/main/cpp/dlib/test/sammon.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/sammon.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/sammon.cpp diff --git a/app/src/main/cpp/dlib/test/scan_image.cpp b/opencv_face_detect/src/main/cpp/dlib/test/scan_image.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/scan_image.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/scan_image.cpp diff --git a/app/src/main/cpp/dlib/test/sequence.cpp b/opencv_face_detect/src/main/cpp/dlib/test/sequence.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/sequence.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/sequence.cpp diff --git a/app/src/main/cpp/dlib/test/sequence_labeler.cpp b/opencv_face_detect/src/main/cpp/dlib/test/sequence_labeler.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/sequence_labeler.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/sequence_labeler.cpp diff --git a/app/src/main/cpp/dlib/test/sequence_segmenter.cpp b/opencv_face_detect/src/main/cpp/dlib/test/sequence_segmenter.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/sequence_segmenter.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/sequence_segmenter.cpp diff --git a/app/src/main/cpp/dlib/test/serialize.cpp b/opencv_face_detect/src/main/cpp/dlib/test/serialize.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/serialize.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/serialize.cpp diff --git a/app/src/main/cpp/dlib/test/set.cpp b/opencv_face_detect/src/main/cpp/dlib/test/set.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/set.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/set.cpp diff --git a/app/src/main/cpp/dlib/test/sldf.cpp b/opencv_face_detect/src/main/cpp/dlib/test/sldf.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/sldf.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/sldf.cpp diff --git a/app/src/main/cpp/dlib/test/sliding_buffer.cpp b/opencv_face_detect/src/main/cpp/dlib/test/sliding_buffer.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/sliding_buffer.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/sliding_buffer.cpp diff --git a/app/src/main/cpp/dlib/test/smart_pointers.cpp b/opencv_face_detect/src/main/cpp/dlib/test/smart_pointers.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/smart_pointers.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/smart_pointers.cpp diff --git a/app/src/main/cpp/dlib/test/sockets.cpp b/opencv_face_detect/src/main/cpp/dlib/test/sockets.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/sockets.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/sockets.cpp diff --git a/app/src/main/cpp/dlib/test/sockets2.cpp b/opencv_face_detect/src/main/cpp/dlib/test/sockets2.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/sockets2.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/sockets2.cpp diff --git a/app/src/main/cpp/dlib/test/sockstreambuf.cpp b/opencv_face_detect/src/main/cpp/dlib/test/sockstreambuf.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/sockstreambuf.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/sockstreambuf.cpp diff --git a/app/src/main/cpp/dlib/test/sparse_vector.cpp b/opencv_face_detect/src/main/cpp/dlib/test/sparse_vector.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/sparse_vector.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/sparse_vector.cpp diff --git a/app/src/main/cpp/dlib/test/stack.cpp b/opencv_face_detect/src/main/cpp/dlib/test/stack.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/stack.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/stack.cpp diff --git a/app/src/main/cpp/dlib/test/static_map.cpp b/opencv_face_detect/src/main/cpp/dlib/test/static_map.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/static_map.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/static_map.cpp diff --git a/app/src/main/cpp/dlib/test/static_set.cpp b/opencv_face_detect/src/main/cpp/dlib/test/static_set.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/static_set.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/static_set.cpp diff --git a/app/src/main/cpp/dlib/test/statistics.cpp b/opencv_face_detect/src/main/cpp/dlib/test/statistics.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/statistics.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/statistics.cpp diff --git a/app/src/main/cpp/dlib/test/std_vector_c.cpp b/opencv_face_detect/src/main/cpp/dlib/test/std_vector_c.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/std_vector_c.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/std_vector_c.cpp diff --git a/app/src/main/cpp/dlib/test/string.cpp b/opencv_face_detect/src/main/cpp/dlib/test/string.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/string.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/string.cpp diff --git a/app/src/main/cpp/dlib/test/svm.cpp b/opencv_face_detect/src/main/cpp/dlib/test/svm.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/svm.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/svm.cpp diff --git a/app/src/main/cpp/dlib/test/svm_c_linear.cpp b/opencv_face_detect/src/main/cpp/dlib/test/svm_c_linear.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/svm_c_linear.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/svm_c_linear.cpp diff --git a/app/src/main/cpp/dlib/test/svm_c_linear_dcd.cpp b/opencv_face_detect/src/main/cpp/dlib/test/svm_c_linear_dcd.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/svm_c_linear_dcd.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/svm_c_linear_dcd.cpp diff --git a/app/src/main/cpp/dlib/test/svm_multiclass_linear.cpp b/opencv_face_detect/src/main/cpp/dlib/test/svm_multiclass_linear.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/svm_multiclass_linear.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/svm_multiclass_linear.cpp diff --git a/app/src/main/cpp/dlib/test/svm_struct.cpp b/opencv_face_detect/src/main/cpp/dlib/test/svm_struct.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/svm_struct.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/svm_struct.cpp diff --git a/app/src/main/cpp/dlib/test/svr_linear_trainer.cpp b/opencv_face_detect/src/main/cpp/dlib/test/svr_linear_trainer.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/svr_linear_trainer.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/svr_linear_trainer.cpp diff --git a/app/src/main/cpp/dlib/test/symmetric_matrix_cache.cpp b/opencv_face_detect/src/main/cpp/dlib/test/symmetric_matrix_cache.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/symmetric_matrix_cache.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/symmetric_matrix_cache.cpp diff --git a/app/src/main/cpp/dlib/test/tester.cpp b/opencv_face_detect/src/main/cpp/dlib/test/tester.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/tester.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/tester.cpp diff --git a/app/src/main/cpp/dlib/test/tester.h b/opencv_face_detect/src/main/cpp/dlib/test/tester.h similarity index 100% rename from app/src/main/cpp/dlib/test/tester.h rename to opencv_face_detect/src/main/cpp/dlib/test/tester.h diff --git a/app/src/main/cpp/dlib/test/thread_pool.cpp b/opencv_face_detect/src/main/cpp/dlib/test/thread_pool.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/thread_pool.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/thread_pool.cpp diff --git a/app/src/main/cpp/dlib/test/threads.cpp b/opencv_face_detect/src/main/cpp/dlib/test/threads.cpp similarity index 99% rename from app/src/main/cpp/dlib/test/threads.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/threads.cpp index 1aeb1a3..0845fc6 100644 --- a/app/src/main/cpp/dlib/test/threads.cpp +++ b/opencv_face_detect/src/main/cpp/dlib/test/threads.cpp @@ -21,7 +21,7 @@ namespace void test_async() { -#if __cplusplus >= 201103 +#if __cplusplus >= 201103 print_spinner(); auto v1 = dlib::async([]() { dlib::sleep(500); return 1; }).share(); auto v2 = dlib::async([v1]() { dlib::sleep(400); return v1.get()+1; }).share(); diff --git a/app/src/main/cpp/dlib/test/timer.cpp b/opencv_face_detect/src/main/cpp/dlib/test/timer.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/timer.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/timer.cpp diff --git a/app/src/main/cpp/dlib/test/tokenizer.cpp b/opencv_face_detect/src/main/cpp/dlib/test/tokenizer.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/tokenizer.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/tokenizer.cpp diff --git a/app/src/main/cpp/dlib/test/tools/CMakeLists.txt b/opencv_face_detect/src/main/cpp/dlib/test/tools/CMakeLists.txt similarity index 100% rename from app/src/main/cpp/dlib/test/tools/CMakeLists.txt rename to opencv_face_detect/src/main/cpp/dlib/test/tools/CMakeLists.txt diff --git a/app/src/main/cpp/dlib/test/trust_region.cpp b/opencv_face_detect/src/main/cpp/dlib/test/trust_region.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/trust_region.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/trust_region.cpp diff --git a/app/src/main/cpp/dlib/test/tuple.cpp b/opencv_face_detect/src/main/cpp/dlib/test/tuple.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/tuple.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/tuple.cpp diff --git a/app/src/main/cpp/dlib/test/type_safe_union.cpp b/opencv_face_detect/src/main/cpp/dlib/test/type_safe_union.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/type_safe_union.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/type_safe_union.cpp diff --git a/app/src/main/cpp/dlib/test/vectorstream.cpp b/opencv_face_detect/src/main/cpp/dlib/test/vectorstream.cpp similarity index 100% rename from app/src/main/cpp/dlib/test/vectorstream.cpp rename to opencv_face_detect/src/main/cpp/dlib/test/vectorstream.cpp diff --git a/app/src/main/cpp/dlib/test_for_odr_violations.cpp b/opencv_face_detect/src/main/cpp/dlib/test_for_odr_violations.cpp similarity index 100% rename from app/src/main/cpp/dlib/test_for_odr_violations.cpp rename to opencv_face_detect/src/main/cpp/dlib/test_for_odr_violations.cpp diff --git a/app/src/main/cpp/dlib/test_for_odr_violations.h b/opencv_face_detect/src/main/cpp/dlib/test_for_odr_violations.h similarity index 100% rename from app/src/main/cpp/dlib/test_for_odr_violations.h rename to opencv_face_detect/src/main/cpp/dlib/test_for_odr_violations.h diff --git a/app/src/main/cpp/dlib/threads.h b/opencv_face_detect/src/main/cpp/dlib/threads.h similarity index 100% rename from app/src/main/cpp/dlib/threads.h rename to opencv_face_detect/src/main/cpp/dlib/threads.h diff --git a/app/src/main/cpp/dlib/threads/async.cpp b/opencv_face_detect/src/main/cpp/dlib/threads/async.cpp similarity index 100% rename from app/src/main/cpp/dlib/threads/async.cpp rename to opencv_face_detect/src/main/cpp/dlib/threads/async.cpp diff --git a/app/src/main/cpp/dlib/threads/async.h b/opencv_face_detect/src/main/cpp/dlib/threads/async.h similarity index 100% rename from app/src/main/cpp/dlib/threads/async.h rename to opencv_face_detect/src/main/cpp/dlib/threads/async.h diff --git a/app/src/main/cpp/dlib/threads/async_abstract.h b/opencv_face_detect/src/main/cpp/dlib/threads/async_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/threads/async_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/threads/async_abstract.h diff --git a/app/src/main/cpp/dlib/threads/auto_mutex_extension.h b/opencv_face_detect/src/main/cpp/dlib/threads/auto_mutex_extension.h similarity index 100% rename from app/src/main/cpp/dlib/threads/auto_mutex_extension.h rename to opencv_face_detect/src/main/cpp/dlib/threads/auto_mutex_extension.h diff --git a/app/src/main/cpp/dlib/threads/auto_mutex_extension_abstract.h b/opencv_face_detect/src/main/cpp/dlib/threads/auto_mutex_extension_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/threads/auto_mutex_extension_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/threads/auto_mutex_extension_abstract.h diff --git a/app/src/main/cpp/dlib/threads/auto_unlock_extension.h b/opencv_face_detect/src/main/cpp/dlib/threads/auto_unlock_extension.h similarity index 100% rename from app/src/main/cpp/dlib/threads/auto_unlock_extension.h rename to opencv_face_detect/src/main/cpp/dlib/threads/auto_unlock_extension.h diff --git a/app/src/main/cpp/dlib/threads/auto_unlock_extension_abstract.h b/opencv_face_detect/src/main/cpp/dlib/threads/auto_unlock_extension_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/threads/auto_unlock_extension_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/threads/auto_unlock_extension_abstract.h diff --git a/app/src/main/cpp/dlib/threads/create_new_thread_extension.h b/opencv_face_detect/src/main/cpp/dlib/threads/create_new_thread_extension.h similarity index 100% rename from app/src/main/cpp/dlib/threads/create_new_thread_extension.h rename to opencv_face_detect/src/main/cpp/dlib/threads/create_new_thread_extension.h diff --git a/app/src/main/cpp/dlib/threads/create_new_thread_extension_abstract.h b/opencv_face_detect/src/main/cpp/dlib/threads/create_new_thread_extension_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/threads/create_new_thread_extension_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/threads/create_new_thread_extension_abstract.h diff --git a/app/src/main/cpp/dlib/threads/multithreaded_object_extension.cpp b/opencv_face_detect/src/main/cpp/dlib/threads/multithreaded_object_extension.cpp similarity index 100% rename from app/src/main/cpp/dlib/threads/multithreaded_object_extension.cpp rename to opencv_face_detect/src/main/cpp/dlib/threads/multithreaded_object_extension.cpp diff --git a/app/src/main/cpp/dlib/threads/multithreaded_object_extension.h b/opencv_face_detect/src/main/cpp/dlib/threads/multithreaded_object_extension.h similarity index 100% rename from app/src/main/cpp/dlib/threads/multithreaded_object_extension.h rename to opencv_face_detect/src/main/cpp/dlib/threads/multithreaded_object_extension.h diff --git a/app/src/main/cpp/dlib/threads/multithreaded_object_extension_abstract.h b/opencv_face_detect/src/main/cpp/dlib/threads/multithreaded_object_extension_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/threads/multithreaded_object_extension_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/threads/multithreaded_object_extension_abstract.h diff --git a/app/src/main/cpp/dlib/threads/parallel_for_extension.h b/opencv_face_detect/src/main/cpp/dlib/threads/parallel_for_extension.h similarity index 100% rename from app/src/main/cpp/dlib/threads/parallel_for_extension.h rename to opencv_face_detect/src/main/cpp/dlib/threads/parallel_for_extension.h diff --git a/app/src/main/cpp/dlib/threads/parallel_for_extension_abstract.h b/opencv_face_detect/src/main/cpp/dlib/threads/parallel_for_extension_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/threads/parallel_for_extension_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/threads/parallel_for_extension_abstract.h diff --git a/app/src/main/cpp/dlib/threads/posix.h b/opencv_face_detect/src/main/cpp/dlib/threads/posix.h similarity index 100% rename from app/src/main/cpp/dlib/threads/posix.h rename to opencv_face_detect/src/main/cpp/dlib/threads/posix.h diff --git a/app/src/main/cpp/dlib/threads/read_write_mutex_extension.h b/opencv_face_detect/src/main/cpp/dlib/threads/read_write_mutex_extension.h similarity index 100% rename from app/src/main/cpp/dlib/threads/read_write_mutex_extension.h rename to opencv_face_detect/src/main/cpp/dlib/threads/read_write_mutex_extension.h diff --git a/app/src/main/cpp/dlib/threads/read_write_mutex_extension_abstract.h b/opencv_face_detect/src/main/cpp/dlib/threads/read_write_mutex_extension_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/threads/read_write_mutex_extension_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/threads/read_write_mutex_extension_abstract.h diff --git a/app/src/main/cpp/dlib/threads/rmutex_extension.h b/opencv_face_detect/src/main/cpp/dlib/threads/rmutex_extension.h similarity index 100% rename from app/src/main/cpp/dlib/threads/rmutex_extension.h rename to opencv_face_detect/src/main/cpp/dlib/threads/rmutex_extension.h diff --git a/app/src/main/cpp/dlib/threads/rmutex_extension_abstract.h b/opencv_face_detect/src/main/cpp/dlib/threads/rmutex_extension_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/threads/rmutex_extension_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/threads/rmutex_extension_abstract.h diff --git a/app/src/main/cpp/dlib/threads/rsignaler_extension.h b/opencv_face_detect/src/main/cpp/dlib/threads/rsignaler_extension.h similarity index 100% rename from app/src/main/cpp/dlib/threads/rsignaler_extension.h rename to opencv_face_detect/src/main/cpp/dlib/threads/rsignaler_extension.h diff --git a/app/src/main/cpp/dlib/threads/rsignaler_extension_abstract.h b/opencv_face_detect/src/main/cpp/dlib/threads/rsignaler_extension_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/threads/rsignaler_extension_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/threads/rsignaler_extension_abstract.h diff --git a/app/src/main/cpp/dlib/threads/thread_function_extension.h b/opencv_face_detect/src/main/cpp/dlib/threads/thread_function_extension.h similarity index 100% rename from app/src/main/cpp/dlib/threads/thread_function_extension.h rename to opencv_face_detect/src/main/cpp/dlib/threads/thread_function_extension.h diff --git a/app/src/main/cpp/dlib/threads/thread_function_extension_abstract.h b/opencv_face_detect/src/main/cpp/dlib/threads/thread_function_extension_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/threads/thread_function_extension_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/threads/thread_function_extension_abstract.h diff --git a/app/src/main/cpp/dlib/threads/thread_pool_extension.cpp b/opencv_face_detect/src/main/cpp/dlib/threads/thread_pool_extension.cpp similarity index 100% rename from app/src/main/cpp/dlib/threads/thread_pool_extension.cpp rename to opencv_face_detect/src/main/cpp/dlib/threads/thread_pool_extension.cpp diff --git a/app/src/main/cpp/dlib/threads/thread_pool_extension.h b/opencv_face_detect/src/main/cpp/dlib/threads/thread_pool_extension.h similarity index 100% rename from app/src/main/cpp/dlib/threads/thread_pool_extension.h rename to opencv_face_detect/src/main/cpp/dlib/threads/thread_pool_extension.h diff --git a/app/src/main/cpp/dlib/threads/thread_pool_extension_abstract.h b/opencv_face_detect/src/main/cpp/dlib/threads/thread_pool_extension_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/threads/thread_pool_extension_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/threads/thread_pool_extension_abstract.h diff --git a/app/src/main/cpp/dlib/threads/thread_specific_data_extension.h b/opencv_face_detect/src/main/cpp/dlib/threads/thread_specific_data_extension.h similarity index 100% rename from app/src/main/cpp/dlib/threads/thread_specific_data_extension.h rename to opencv_face_detect/src/main/cpp/dlib/threads/thread_specific_data_extension.h diff --git a/app/src/main/cpp/dlib/threads/thread_specific_data_extension_abstract.h b/opencv_face_detect/src/main/cpp/dlib/threads/thread_specific_data_extension_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/threads/thread_specific_data_extension_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/threads/thread_specific_data_extension_abstract.h diff --git a/app/src/main/cpp/dlib/threads/threaded_object_extension.cpp b/opencv_face_detect/src/main/cpp/dlib/threads/threaded_object_extension.cpp similarity index 100% rename from app/src/main/cpp/dlib/threads/threaded_object_extension.cpp rename to opencv_face_detect/src/main/cpp/dlib/threads/threaded_object_extension.cpp diff --git a/app/src/main/cpp/dlib/threads/threaded_object_extension.h b/opencv_face_detect/src/main/cpp/dlib/threads/threaded_object_extension.h similarity index 100% rename from app/src/main/cpp/dlib/threads/threaded_object_extension.h rename to opencv_face_detect/src/main/cpp/dlib/threads/threaded_object_extension.h diff --git a/app/src/main/cpp/dlib/threads/threaded_object_extension_abstract.h b/opencv_face_detect/src/main/cpp/dlib/threads/threaded_object_extension_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/threads/threaded_object_extension_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/threads/threaded_object_extension_abstract.h diff --git a/app/src/main/cpp/dlib/threads/threads_kernel.h b/opencv_face_detect/src/main/cpp/dlib/threads/threads_kernel.h similarity index 100% rename from app/src/main/cpp/dlib/threads/threads_kernel.h rename to opencv_face_detect/src/main/cpp/dlib/threads/threads_kernel.h diff --git a/app/src/main/cpp/dlib/threads/threads_kernel_1.cpp b/opencv_face_detect/src/main/cpp/dlib/threads/threads_kernel_1.cpp similarity index 100% rename from app/src/main/cpp/dlib/threads/threads_kernel_1.cpp rename to opencv_face_detect/src/main/cpp/dlib/threads/threads_kernel_1.cpp diff --git a/app/src/main/cpp/dlib/threads/threads_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/threads/threads_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/threads/threads_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/threads/threads_kernel_1.h diff --git a/app/src/main/cpp/dlib/threads/threads_kernel_2.cpp b/opencv_face_detect/src/main/cpp/dlib/threads/threads_kernel_2.cpp similarity index 100% rename from app/src/main/cpp/dlib/threads/threads_kernel_2.cpp rename to opencv_face_detect/src/main/cpp/dlib/threads/threads_kernel_2.cpp diff --git a/app/src/main/cpp/dlib/threads/threads_kernel_2.h b/opencv_face_detect/src/main/cpp/dlib/threads/threads_kernel_2.h similarity index 100% rename from app/src/main/cpp/dlib/threads/threads_kernel_2.h rename to opencv_face_detect/src/main/cpp/dlib/threads/threads_kernel_2.h diff --git a/app/src/main/cpp/dlib/threads/threads_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/threads/threads_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/threads/threads_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/threads/threads_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/threads/threads_kernel_shared.cpp b/opencv_face_detect/src/main/cpp/dlib/threads/threads_kernel_shared.cpp similarity index 100% rename from app/src/main/cpp/dlib/threads/threads_kernel_shared.cpp rename to opencv_face_detect/src/main/cpp/dlib/threads/threads_kernel_shared.cpp diff --git a/app/src/main/cpp/dlib/threads/threads_kernel_shared.h b/opencv_face_detect/src/main/cpp/dlib/threads/threads_kernel_shared.h similarity index 100% rename from app/src/main/cpp/dlib/threads/threads_kernel_shared.h rename to opencv_face_detect/src/main/cpp/dlib/threads/threads_kernel_shared.h diff --git a/app/src/main/cpp/dlib/threads/windows.h b/opencv_face_detect/src/main/cpp/dlib/threads/windows.h similarity index 100% rename from app/src/main/cpp/dlib/threads/windows.h rename to opencv_face_detect/src/main/cpp/dlib/threads/windows.h diff --git a/app/src/main/cpp/dlib/time_this.h b/opencv_face_detect/src/main/cpp/dlib/time_this.h similarity index 100% rename from app/src/main/cpp/dlib/time_this.h rename to opencv_face_detect/src/main/cpp/dlib/time_this.h diff --git a/app/src/main/cpp/dlib/timeout.h b/opencv_face_detect/src/main/cpp/dlib/timeout.h similarity index 100% rename from app/src/main/cpp/dlib/timeout.h rename to opencv_face_detect/src/main/cpp/dlib/timeout.h diff --git a/app/src/main/cpp/dlib/timeout/timeout.h b/opencv_face_detect/src/main/cpp/dlib/timeout/timeout.h similarity index 100% rename from app/src/main/cpp/dlib/timeout/timeout.h rename to opencv_face_detect/src/main/cpp/dlib/timeout/timeout.h diff --git a/app/src/main/cpp/dlib/timeout/timeout_abstract.h b/opencv_face_detect/src/main/cpp/dlib/timeout/timeout_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/timeout/timeout_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/timeout/timeout_abstract.h diff --git a/app/src/main/cpp/dlib/timer.h b/opencv_face_detect/src/main/cpp/dlib/timer.h similarity index 100% rename from app/src/main/cpp/dlib/timer.h rename to opencv_face_detect/src/main/cpp/dlib/timer.h diff --git a/app/src/main/cpp/dlib/timer/timer.cpp b/opencv_face_detect/src/main/cpp/dlib/timer/timer.cpp similarity index 100% rename from app/src/main/cpp/dlib/timer/timer.cpp rename to opencv_face_detect/src/main/cpp/dlib/timer/timer.cpp diff --git a/app/src/main/cpp/dlib/timer/timer.h b/opencv_face_detect/src/main/cpp/dlib/timer/timer.h similarity index 100% rename from app/src/main/cpp/dlib/timer/timer.h rename to opencv_face_detect/src/main/cpp/dlib/timer/timer.h diff --git a/app/src/main/cpp/dlib/timer/timer_abstract.h b/opencv_face_detect/src/main/cpp/dlib/timer/timer_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/timer/timer_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/timer/timer_abstract.h diff --git a/app/src/main/cpp/dlib/timer/timer_heavy.h b/opencv_face_detect/src/main/cpp/dlib/timer/timer_heavy.h similarity index 100% rename from app/src/main/cpp/dlib/timer/timer_heavy.h rename to opencv_face_detect/src/main/cpp/dlib/timer/timer_heavy.h diff --git a/app/src/main/cpp/dlib/timing.h b/opencv_face_detect/src/main/cpp/dlib/timing.h similarity index 100% rename from app/src/main/cpp/dlib/timing.h rename to opencv_face_detect/src/main/cpp/dlib/timing.h diff --git a/app/src/main/cpp/dlib/tokenizer.h b/opencv_face_detect/src/main/cpp/dlib/tokenizer.h similarity index 100% rename from app/src/main/cpp/dlib/tokenizer.h rename to opencv_face_detect/src/main/cpp/dlib/tokenizer.h diff --git a/app/src/main/cpp/dlib/tokenizer/tokenizer_kernel_1.cpp b/opencv_face_detect/src/main/cpp/dlib/tokenizer/tokenizer_kernel_1.cpp similarity index 100% rename from app/src/main/cpp/dlib/tokenizer/tokenizer_kernel_1.cpp rename to opencv_face_detect/src/main/cpp/dlib/tokenizer/tokenizer_kernel_1.cpp diff --git a/app/src/main/cpp/dlib/tokenizer/tokenizer_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/tokenizer/tokenizer_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/tokenizer/tokenizer_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/tokenizer/tokenizer_kernel_1.h diff --git a/app/src/main/cpp/dlib/tokenizer/tokenizer_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/tokenizer/tokenizer_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/tokenizer/tokenizer_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/tokenizer/tokenizer_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/tokenizer/tokenizer_kernel_c.h b/opencv_face_detect/src/main/cpp/dlib/tokenizer/tokenizer_kernel_c.h similarity index 100% rename from app/src/main/cpp/dlib/tokenizer/tokenizer_kernel_c.h rename to opencv_face_detect/src/main/cpp/dlib/tokenizer/tokenizer_kernel_c.h diff --git a/app/src/main/cpp/dlib/travis/build-and-test.sh b/opencv_face_detect/src/main/cpp/dlib/travis/build-and-test.sh similarity index 100% rename from app/src/main/cpp/dlib/travis/build-and-test.sh rename to opencv_face_detect/src/main/cpp/dlib/travis/build-and-test.sh diff --git a/app/src/main/cpp/dlib/travis/get-old-cmakes.sh b/opencv_face_detect/src/main/cpp/dlib/travis/get-old-cmakes.sh similarity index 100% rename from app/src/main/cpp/dlib/travis/get-old-cmakes.sh rename to opencv_face_detect/src/main/cpp/dlib/travis/get-old-cmakes.sh diff --git a/app/src/main/cpp/dlib/tuple.h b/opencv_face_detect/src/main/cpp/dlib/tuple.h similarity index 100% rename from app/src/main/cpp/dlib/tuple.h rename to opencv_face_detect/src/main/cpp/dlib/tuple.h diff --git a/app/src/main/cpp/dlib/tuple/tuple.h b/opencv_face_detect/src/main/cpp/dlib/tuple/tuple.h similarity index 100% rename from app/src/main/cpp/dlib/tuple/tuple.h rename to opencv_face_detect/src/main/cpp/dlib/tuple/tuple.h diff --git a/app/src/main/cpp/dlib/tuple/tuple_abstract.h b/opencv_face_detect/src/main/cpp/dlib/tuple/tuple_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/tuple/tuple_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/tuple/tuple_abstract.h diff --git a/app/src/main/cpp/dlib/type_safe_union.h b/opencv_face_detect/src/main/cpp/dlib/type_safe_union.h similarity index 100% rename from app/src/main/cpp/dlib/type_safe_union.h rename to opencv_face_detect/src/main/cpp/dlib/type_safe_union.h diff --git a/app/src/main/cpp/dlib/type_safe_union/type_safe_union_kernel.h b/opencv_face_detect/src/main/cpp/dlib/type_safe_union/type_safe_union_kernel.h similarity index 100% rename from app/src/main/cpp/dlib/type_safe_union/type_safe_union_kernel.h rename to opencv_face_detect/src/main/cpp/dlib/type_safe_union/type_safe_union_kernel.h diff --git a/app/src/main/cpp/dlib/type_safe_union/type_safe_union_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/type_safe_union/type_safe_union_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/type_safe_union/type_safe_union_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/type_safe_union/type_safe_union_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/uintn.h b/opencv_face_detect/src/main/cpp/dlib/uintn.h similarity index 100% rename from app/src/main/cpp/dlib/uintn.h rename to opencv_face_detect/src/main/cpp/dlib/uintn.h diff --git a/app/src/main/cpp/dlib/unicode.h b/opencv_face_detect/src/main/cpp/dlib/unicode.h similarity index 100% rename from app/src/main/cpp/dlib/unicode.h rename to opencv_face_detect/src/main/cpp/dlib/unicode.h diff --git a/app/src/main/cpp/dlib/unicode/unicode.cpp b/opencv_face_detect/src/main/cpp/dlib/unicode/unicode.cpp similarity index 100% rename from app/src/main/cpp/dlib/unicode/unicode.cpp rename to opencv_face_detect/src/main/cpp/dlib/unicode/unicode.cpp diff --git a/app/src/main/cpp/dlib/unicode/unicode.h b/opencv_face_detect/src/main/cpp/dlib/unicode/unicode.h similarity index 100% rename from app/src/main/cpp/dlib/unicode/unicode.h rename to opencv_face_detect/src/main/cpp/dlib/unicode/unicode.h diff --git a/app/src/main/cpp/dlib/unicode/unicode_abstract.h b/opencv_face_detect/src/main/cpp/dlib/unicode/unicode_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/unicode/unicode_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/unicode/unicode_abstract.h diff --git a/app/src/main/cpp/dlib/unordered_pair.h b/opencv_face_detect/src/main/cpp/dlib/unordered_pair.h similarity index 100% rename from app/src/main/cpp/dlib/unordered_pair.h rename to opencv_face_detect/src/main/cpp/dlib/unordered_pair.h diff --git a/app/src/main/cpp/dlib/vectorstream.h b/opencv_face_detect/src/main/cpp/dlib/vectorstream.h similarity index 100% rename from app/src/main/cpp/dlib/vectorstream.h rename to opencv_face_detect/src/main/cpp/dlib/vectorstream.h diff --git a/app/src/main/cpp/dlib/vectorstream/unserialize.h b/opencv_face_detect/src/main/cpp/dlib/vectorstream/unserialize.h similarity index 100% rename from app/src/main/cpp/dlib/vectorstream/unserialize.h rename to opencv_face_detect/src/main/cpp/dlib/vectorstream/unserialize.h diff --git a/app/src/main/cpp/dlib/vectorstream/unserialize_abstract.h b/opencv_face_detect/src/main/cpp/dlib/vectorstream/unserialize_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/vectorstream/unserialize_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/vectorstream/unserialize_abstract.h diff --git a/app/src/main/cpp/dlib/vectorstream/vectorstream.h b/opencv_face_detect/src/main/cpp/dlib/vectorstream/vectorstream.h similarity index 100% rename from app/src/main/cpp/dlib/vectorstream/vectorstream.h rename to opencv_face_detect/src/main/cpp/dlib/vectorstream/vectorstream.h diff --git a/app/src/main/cpp/dlib/vectorstream/vectorstream_abstract.h b/opencv_face_detect/src/main/cpp/dlib/vectorstream/vectorstream_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/vectorstream/vectorstream_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/vectorstream/vectorstream_abstract.h diff --git a/app/src/main/cpp/dlib/windows_magic.h b/opencv_face_detect/src/main/cpp/dlib/windows_magic.h similarity index 100% rename from app/src/main/cpp/dlib/windows_magic.h rename to opencv_face_detect/src/main/cpp/dlib/windows_magic.h diff --git a/app/src/main/cpp/dlib/xml_parser.h b/opencv_face_detect/src/main/cpp/dlib/xml_parser.h similarity index 100% rename from app/src/main/cpp/dlib/xml_parser.h rename to opencv_face_detect/src/main/cpp/dlib/xml_parser.h diff --git a/app/src/main/cpp/dlib/xml_parser/xml_parser_kernel_1.h b/opencv_face_detect/src/main/cpp/dlib/xml_parser/xml_parser_kernel_1.h similarity index 100% rename from app/src/main/cpp/dlib/xml_parser/xml_parser_kernel_1.h rename to opencv_face_detect/src/main/cpp/dlib/xml_parser/xml_parser_kernel_1.h diff --git a/app/src/main/cpp/dlib/xml_parser/xml_parser_kernel_abstract.h b/opencv_face_detect/src/main/cpp/dlib/xml_parser/xml_parser_kernel_abstract.h similarity index 100% rename from app/src/main/cpp/dlib/xml_parser/xml_parser_kernel_abstract.h rename to opencv_face_detect/src/main/cpp/dlib/xml_parser/xml_parser_kernel_abstract.h diff --git a/app/src/main/cpp/dlib/xml_parser/xml_parser_kernel_interfaces.h b/opencv_face_detect/src/main/cpp/dlib/xml_parser/xml_parser_kernel_interfaces.h similarity index 100% rename from app/src/main/cpp/dlib/xml_parser/xml_parser_kernel_interfaces.h rename to opencv_face_detect/src/main/cpp/dlib/xml_parser/xml_parser_kernel_interfaces.h diff --git a/app/src/main/cpp/face_detector.cpp b/opencv_face_detect/src/main/cpp/face_detector.cpp old mode 100755 new mode 100644 similarity index 95% rename from app/src/main/cpp/face_detector.cpp rename to opencv_face_detect/src/main/cpp/face_detector.cpp index c4da136..4d40bd7 --- a/app/src/main/cpp/face_detector.cpp +++ b/opencv_face_detect/src/main/cpp/face_detector.cpp @@ -1,31 +1,31 @@ -// -// Created by Lightweh on 2018/11/21. -// - -#include "face_detector.h" - -FaceDetector::FaceDetector() { - face_detector = dlib::get_frontal_face_detector(); -} - -int FaceDetector::Detect(const cv::Mat &image) { - - if (image.empty()) - return 0; - - if (image.channels() == 1) { - cv::cvtColor(image, image, CV_GRAY2BGR); - } - - dlib::cv_image dlib_image(image); - - det_rects.clear(); - - det_rects = face_detector(dlib_image); - - return det_rects.size(); -} - -std::vector FaceDetector::getDetResultRects() { - return det_rects; +// +// Created by Lightweh on 2018/11/21. +// + +#include "face_detector.h" + +FaceDetector::FaceDetector() { + face_detector = dlib::get_frontal_face_detector(); +} + +int FaceDetector::Detect(const cv::Mat &image) { + + if (image.empty()) + return 0; + + if (image.channels() == 1) { + cv::cvtColor(image, image, CV_GRAY2BGR); + } + + dlib::cv_image dlib_image(image); + + det_rects.clear(); + + det_rects = face_detector(dlib_image); + + return det_rects.size(); +} + +std::vector FaceDetector::getDetResultRects() { + return det_rects; } \ No newline at end of file diff --git a/app/src/main/cpp/face_detector.h b/opencv_face_detect/src/main/cpp/face_detector.h old mode 100755 new mode 100644 similarity index 94% rename from app/src/main/cpp/face_detector.h rename to opencv_face_detect/src/main/cpp/face_detector.h index 0998950..adae1e8 --- a/app/src/main/cpp/face_detector.h +++ b/opencv_face_detect/src/main/cpp/face_detector.h @@ -1,31 +1,31 @@ -// -// Created by Lightweh on 2018/11/21. -// - -#ifndef FACEDETECTION_FACE_DETECTOR_H -#define FACEDETECTION_FACE_DETECTOR_H - - -#include -#include -#include -#include - - -class FaceDetector { -private: - - dlib::frontal_face_detector face_detector; - std::vector det_rects; - -public: - - FaceDetector(); - - int Detect(const cv::Mat &image); - - std::vector getDetResultRects(); -}; - - -#endif //FACEDETECTION_FACE_DETECTOR_H +// +// Created by Lightweh on 2018/11/21. +// + +#ifndef FACEDETECTION_FACE_DETECTOR_H +#define FACEDETECTION_FACE_DETECTOR_H + + +#include +#include +#include +#include + + +class FaceDetector { +private: + + dlib::frontal_face_detector face_detector; + std::vector det_rects; + +public: + + FaceDetector(); + + int Detect(const cv::Mat &image); + + std::vector getDetResultRects(); +}; + + +#endif //FACEDETECTION_FACE_DETECTOR_H diff --git a/app/src/main/cpp/jni_common/jni_bitmap2mat.cpp b/opencv_face_detect/src/main/cpp/jni_common/jni_bitmap2mat.cpp similarity index 100% rename from app/src/main/cpp/jni_common/jni_bitmap2mat.cpp rename to opencv_face_detect/src/main/cpp/jni_common/jni_bitmap2mat.cpp diff --git a/app/src/main/cpp/jni_common/jni_bitmap2mat.h b/opencv_face_detect/src/main/cpp/jni_common/jni_bitmap2mat.h similarity index 100% rename from app/src/main/cpp/jni_common/jni_bitmap2mat.h rename to opencv_face_detect/src/main/cpp/jni_common/jni_bitmap2mat.h diff --git a/app/src/main/cpp/jni_common/jni_primitives.h b/opencv_face_detect/src/main/cpp/jni_common/jni_primitives.h similarity index 100% rename from app/src/main/cpp/jni_common/jni_primitives.h rename to opencv_face_detect/src/main/cpp/jni_common/jni_primitives.h diff --git a/app/src/main/cpp/native-lib.cpp b/opencv_face_detect/src/main/cpp/native-lib.cpp old mode 100755 new mode 100644 similarity index 96% rename from app/src/main/cpp/native-lib.cpp rename to opencv_face_detect/src/main/cpp/native-lib.cpp index 8cda61b..0acc4bc --- a/app/src/main/cpp/native-lib.cpp +++ b/opencv_face_detect/src/main/cpp/native-lib.cpp @@ -1,145 +1,145 @@ -/* - * Created on: Oct 20, 2015 - * Author: Tzutalin - * - * Copyright (c) 2015 Tzutalin. All rights reserved. - */ -// Modified by Gaurav on Feb 23, 2018 -// Modified by Lightweh on Nov 21, 2018 - -#include -#include -#include -#include -#include - -using namespace cv; - -JNI_VisionDetRet *g_pJNI_VisionDetRet; - -JavaVM *g_javaVM = NULL; - -JNIEXPORT jint JNI_OnLoad(JavaVM *vm, void *reserved) { - g_javaVM = vm; - JNIEnv *env; - vm->GetEnv((void **) &env, JNI_VERSION_1_6); - - g_pJNI_VisionDetRet = new JNI_VisionDetRet(env); - - return JNI_VERSION_1_6; -} - -void JNI_OnUnload(JavaVM *vm, void *reserved) { - - g_javaVM = NULL; - - delete g_pJNI_VisionDetRet; -} - - -namespace { - -#define JAVA_NULL 0 - using DetPtr = FaceDetector *; - - class JNI_FaceDet { - public: - JNI_FaceDet(JNIEnv *env) { - jclass clazz = env->FindClass(CLASSNAME_FACE_DET); - mNativeContext = env->GetFieldID(clazz, "mNativeFaceDetContext", "J"); - env->DeleteLocalRef(clazz); - } - - DetPtr getDetectorPtrFromJava(JNIEnv *env, jobject thiz) { - DetPtr const p = (DetPtr) env->GetLongField(thiz, mNativeContext); - return p; - } - - void setDetectorPtrToJava(JNIEnv *env, jobject thiz, jlong ptr) { - env->SetLongField(thiz, mNativeContext, ptr); - } - - jfieldID mNativeContext; - }; - - // Protect getting/setting and creating/deleting pointer between java/native - std::mutex gLock; - - std::shared_ptr getJNI_FaceDet(JNIEnv *env) { - static std::once_flag sOnceInitflag; - static std::shared_ptr sJNI_FaceDet; - std::call_once(sOnceInitflag, [env]() { - sJNI_FaceDet = std::make_shared(env); - }); - return sJNI_FaceDet; - } - - DetPtr const getDetPtr(JNIEnv *env, jobject thiz) { - std::lock_guard lock(gLock); - return getJNI_FaceDet(env)->getDetectorPtrFromJava(env, thiz); - } - - // The function to set a pointer to java and delete it if newPtr is empty - void setDetPtr(JNIEnv *env, jobject thiz, DetPtr newPtr) { - std::lock_guard lock(gLock); - DetPtr oldPtr = getJNI_FaceDet(env)->getDetectorPtrFromJava(env, thiz); - if (oldPtr != JAVA_NULL) { - delete oldPtr; - } - - getJNI_FaceDet(env)->setDetectorPtrToJava(env, thiz, (jlong) newPtr); - } - -} // end unnamespace - -#ifdef __cplusplus -extern "C" { -#endif - -#define DLIB_FACE_JNI_METHOD(METHOD_NAME) Java_com_lightweh_dlib_FaceDet_##METHOD_NAME - -void JNIEXPORT -DLIB_FACE_JNI_METHOD(jniNativeClassInit)(JNIEnv *env, jclass _this) {} - - -jobjectArray getRecResult(JNIEnv *env, DetPtr faceDetector, const int &size) { - jobjectArray jDetRetArray = JNI_VisionDetRet::createJObjectArray(env, size); - for (int i = 0; i < size; i++) { - jobject jDetRet = JNI_VisionDetRet::createJObject(env); - env->SetObjectArrayElement(jDetRetArray, i, jDetRet); - dlib::rectangle rect = faceDetector->getDetResultRects()[i]; - - g_pJNI_VisionDetRet->setRect(env, jDetRet, rect.left(), rect.top(), - rect.right(), rect.bottom()); - } - return jDetRetArray; -} - -JNIEXPORT jobjectArray JNICALL -DLIB_FACE_JNI_METHOD(jniBitmapDet)(JNIEnv *env, jobject thiz, jobject bitmap) { - cv::Mat rgbaMat; - cv::Mat bgrMat; - jniutils::ConvertBitmapToRGBAMat(env, bitmap, rgbaMat, true); - cv::cvtColor(rgbaMat, bgrMat, cv::COLOR_RGBA2BGR); - DetPtr mDetPtr = getDetPtr(env, thiz); - jint size = mDetPtr->Detect(bgrMat); - return getRecResult(env, mDetPtr, size); -} - -jint JNIEXPORT JNICALL -DLIB_FACE_JNI_METHOD(jniInit)(JNIEnv *env, jobject thiz) { - DetPtr mDetPtr = new FaceDetector(); - setDetPtr(env, thiz, mDetPtr); - return JNI_OK; -} - - -jint JNIEXPORT JNICALL -DLIB_FACE_JNI_METHOD(jniDeInit)(JNIEnv *env, jobject thiz) { - setDetPtr(env, thiz, JAVA_NULL); - return JNI_OK; -} - -#ifdef __cplusplus -} -#endif +/* + * Created on: Oct 20, 2015 + * Author: Tzutalin + * + * Copyright (c) 2015 Tzutalin. All rights reserved. + */ +// Modified by Gaurav on Feb 23, 2018 +// Modified by Lightweh on Nov 21, 2018 + +#include +#include +#include +#include +#include + +using namespace cv; + +JNI_VisionDetRet *g_pJNI_VisionDetRet; + +JavaVM *g_javaVM = NULL; + +JNIEXPORT jint JNI_OnLoad(JavaVM *vm, void *reserved) { + g_javaVM = vm; + JNIEnv *env; + vm->GetEnv((void **) &env, JNI_VERSION_1_6); + + g_pJNI_VisionDetRet = new JNI_VisionDetRet(env); + + return JNI_VERSION_1_6; +} + +void JNI_OnUnload(JavaVM *vm, void *reserved) { + + g_javaVM = NULL; + + delete g_pJNI_VisionDetRet; +} + + +namespace { + +#define JAVA_NULL 0 + using DetPtr = FaceDetector *; + + class JNI_FaceDet { + public: + JNI_FaceDet(JNIEnv *env) { + jclass clazz = env->FindClass(CLASSNAME_FACE_DET); + mNativeContext = env->GetFieldID(clazz, "mNativeFaceDetContext", "J"); + env->DeleteLocalRef(clazz); + } + + DetPtr getDetectorPtrFromJava(JNIEnv *env, jobject thiz) { + DetPtr const p = (DetPtr) env->GetLongField(thiz, mNativeContext); + return p; + } + + void setDetectorPtrToJava(JNIEnv *env, jobject thiz, jlong ptr) { + env->SetLongField(thiz, mNativeContext, ptr); + } + + jfieldID mNativeContext; + }; + + // Protect getting/setting and creating/deleting pointer between java/native + std::mutex gLock; + + std::shared_ptr getJNI_FaceDet(JNIEnv *env) { + static std::once_flag sOnceInitflag; + static std::shared_ptr sJNI_FaceDet; + std::call_once(sOnceInitflag, [env]() { + sJNI_FaceDet = std::make_shared(env); + }); + return sJNI_FaceDet; + } + + DetPtr const getDetPtr(JNIEnv *env, jobject thiz) { + std::lock_guard lock(gLock); + return getJNI_FaceDet(env)->getDetectorPtrFromJava(env, thiz); + } + + // The function to set a pointer to java and delete it if newPtr is empty + void setDetPtr(JNIEnv *env, jobject thiz, DetPtr newPtr) { + std::lock_guard lock(gLock); + DetPtr oldPtr = getJNI_FaceDet(env)->getDetectorPtrFromJava(env, thiz); + if (oldPtr != JAVA_NULL) { + delete oldPtr; + } + + getJNI_FaceDet(env)->setDetectorPtrToJava(env, thiz, (jlong) newPtr); + } + +} // end unnamespace + +#ifdef __cplusplus +extern "C" { +#endif + +#define DLIB_FACE_JNI_METHOD(METHOD_NAME) Java_com_lightweh_dlib_FaceDet_##METHOD_NAME + +void JNIEXPORT +DLIB_FACE_JNI_METHOD(jniNativeClassInit)(JNIEnv *env, jclass _this) {} + + +jobjectArray getRecResult(JNIEnv *env, DetPtr faceDetector, const int &size) { + jobjectArray jDetRetArray = JNI_VisionDetRet::createJObjectArray(env, size); + for (int i = 0; i < size; i++) { + jobject jDetRet = JNI_VisionDetRet::createJObject(env); + env->SetObjectArrayElement(jDetRetArray, i, jDetRet); + dlib::rectangle rect = faceDetector->getDetResultRects()[i]; + + g_pJNI_VisionDetRet->setRect(env, jDetRet, rect.left(), rect.top(), + rect.right(), rect.bottom()); + } + return jDetRetArray; +} + +JNIEXPORT jobjectArray JNICALL +DLIB_FACE_JNI_METHOD(jniBitmapDet)(JNIEnv *env, jobject thiz, jobject bitmap) { + cv::Mat rgbaMat; + cv::Mat bgrMat; + jniutils::ConvertBitmapToRGBAMat(env, bitmap, rgbaMat, true); + cv::cvtColor(rgbaMat, bgrMat, cv::COLOR_RGBA2BGR); + DetPtr mDetPtr = getDetPtr(env, thiz); + jint size = mDetPtr->Detect(bgrMat); + return getRecResult(env, mDetPtr, size); +} + +jint JNIEXPORT JNICALL +DLIB_FACE_JNI_METHOD(jniInit)(JNIEnv *env, jobject thiz) { + DetPtr mDetPtr = new FaceDetector(); + setDetPtr(env, thiz, mDetPtr); + return JNI_OK; +} + + +jint JNIEXPORT JNICALL +DLIB_FACE_JNI_METHOD(jniDeInit)(JNIEnv *env, jobject thiz) { + setDetPtr(env, thiz, JAVA_NULL); + return JNI_OK; +} + +#ifdef __cplusplus +} +#endif diff --git a/app/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/libIlmImf.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/libIlmImf.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/libIlmImf.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/libIlmImf.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/liblibjasper.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/liblibjasper.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/liblibjasper.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/liblibjasper.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/liblibjpeg.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/liblibjpeg.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/liblibjpeg.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/liblibjpeg.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/liblibpng.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/liblibpng.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/liblibpng.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/liblibpng.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/liblibtiff.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/liblibtiff.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/liblibtiff.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/liblibtiff.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/liblibwebp.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/liblibwebp.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/liblibwebp.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/liblibwebp.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/libtbb.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/libtbb.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/libtbb.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/arm64-v8a/libtbb.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/libIlmImf.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/libIlmImf.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/libIlmImf.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/libIlmImf.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/liblibjasper.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/liblibjasper.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/liblibjasper.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/liblibjasper.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/liblibjpeg.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/liblibjpeg.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/liblibjpeg.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/liblibjpeg.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/liblibpng.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/liblibpng.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/liblibpng.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/liblibpng.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/liblibtiff.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/liblibtiff.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/liblibtiff.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/liblibtiff.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/liblibwebp.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/liblibwebp.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/liblibwebp.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/liblibwebp.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/libtbb.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/libtbb.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/libtbb.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi-v7a/libtbb.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/armeabi/libIlmImf.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi/libIlmImf.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/armeabi/libIlmImf.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi/libIlmImf.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/armeabi/liblibjasper.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi/liblibjasper.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/armeabi/liblibjasper.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi/liblibjasper.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/armeabi/liblibjpeg.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi/liblibjpeg.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/armeabi/liblibjpeg.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi/liblibjpeg.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/armeabi/liblibpng.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi/liblibpng.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/armeabi/liblibpng.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi/liblibpng.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/armeabi/liblibtiff.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi/liblibtiff.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/armeabi/liblibtiff.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi/liblibtiff.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/armeabi/liblibwebp.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi/liblibwebp.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/armeabi/liblibwebp.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi/liblibwebp.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/armeabi/libtbb.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi/libtbb.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/armeabi/libtbb.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/armeabi/libtbb.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/mips/libIlmImf.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips/libIlmImf.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/mips/libIlmImf.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips/libIlmImf.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/mips/liblibjasper.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips/liblibjasper.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/mips/liblibjasper.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips/liblibjasper.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/mips/liblibjpeg.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips/liblibjpeg.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/mips/liblibjpeg.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips/liblibjpeg.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/mips/liblibpng.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips/liblibpng.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/mips/liblibpng.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips/liblibpng.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/mips/liblibtiff.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips/liblibtiff.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/mips/liblibtiff.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips/liblibtiff.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/mips/liblibwebp.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips/liblibwebp.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/mips/liblibwebp.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips/liblibwebp.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/mips/libtbb.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips/libtbb.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/mips/libtbb.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips/libtbb.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/mips64/libIlmImf.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips64/libIlmImf.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/mips64/libIlmImf.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips64/libIlmImf.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/mips64/liblibjasper.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips64/liblibjasper.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/mips64/liblibjasper.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips64/liblibjasper.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/mips64/liblibjpeg.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips64/liblibjpeg.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/mips64/liblibjpeg.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips64/liblibjpeg.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/mips64/liblibpng.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips64/liblibpng.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/mips64/liblibpng.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips64/liblibpng.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/mips64/liblibtiff.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips64/liblibtiff.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/mips64/liblibtiff.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips64/liblibtiff.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/mips64/liblibwebp.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips64/liblibwebp.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/mips64/liblibwebp.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips64/liblibwebp.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/mips64/libtbb.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips64/libtbb.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/mips64/libtbb.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/mips64/libtbb.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/x86/libIlmImf.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86/libIlmImf.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/x86/libIlmImf.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86/libIlmImf.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/x86/liblibjasper.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86/liblibjasper.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/x86/liblibjasper.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86/liblibjasper.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/x86/liblibjpeg.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86/liblibjpeg.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/x86/liblibjpeg.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86/liblibjpeg.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/x86/liblibpng.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86/liblibpng.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/x86/liblibpng.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86/liblibpng.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/x86/liblibtiff.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86/liblibtiff.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/x86/liblibtiff.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86/liblibtiff.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/x86/liblibwebp.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86/liblibwebp.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/x86/liblibwebp.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86/liblibwebp.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/x86/libtbb.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86/libtbb.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/x86/libtbb.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86/libtbb.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/x86_64/libIlmImf.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86_64/libIlmImf.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/x86_64/libIlmImf.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86_64/libIlmImf.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/x86_64/liblibjasper.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86_64/liblibjasper.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/x86_64/liblibjasper.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86_64/liblibjasper.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/x86_64/liblibjpeg.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86_64/liblibjpeg.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/x86_64/liblibjpeg.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86_64/liblibjpeg.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/x86_64/liblibpng.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86_64/liblibpng.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/x86_64/liblibpng.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86_64/liblibpng.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/x86_64/liblibtiff.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86_64/liblibtiff.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/x86_64/liblibtiff.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86_64/liblibtiff.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/x86_64/liblibwebp.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86_64/liblibwebp.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/x86_64/liblibwebp.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86_64/liblibwebp.a diff --git a/app/src/main/cpp/opencv/3rdparty/libs/x86_64/libtbb.a b/opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86_64/libtbb.a similarity index 100% rename from app/src/main/cpp/opencv/3rdparty/libs/x86_64/libtbb.a rename to opencv_face_detect/src/main/cpp/opencv/3rdparty/libs/x86_64/libtbb.a diff --git a/app/src/main/cpp/opencv/jni/OpenCV-arm64-v8a.mk b/opencv_face_detect/src/main/cpp/opencv/jni/OpenCV-arm64-v8a.mk similarity index 100% rename from app/src/main/cpp/opencv/jni/OpenCV-arm64-v8a.mk rename to opencv_face_detect/src/main/cpp/opencv/jni/OpenCV-arm64-v8a.mk diff --git a/app/src/main/cpp/opencv/jni/OpenCV-armeabi-v7a.mk b/opencv_face_detect/src/main/cpp/opencv/jni/OpenCV-armeabi-v7a.mk similarity index 100% rename from app/src/main/cpp/opencv/jni/OpenCV-armeabi-v7a.mk rename to opencv_face_detect/src/main/cpp/opencv/jni/OpenCV-armeabi-v7a.mk diff --git a/app/src/main/cpp/opencv/jni/OpenCV-armeabi.mk b/opencv_face_detect/src/main/cpp/opencv/jni/OpenCV-armeabi.mk similarity index 100% rename from app/src/main/cpp/opencv/jni/OpenCV-armeabi.mk rename to opencv_face_detect/src/main/cpp/opencv/jni/OpenCV-armeabi.mk diff --git a/app/src/main/cpp/opencv/jni/OpenCV-mips.mk b/opencv_face_detect/src/main/cpp/opencv/jni/OpenCV-mips.mk similarity index 100% rename from app/src/main/cpp/opencv/jni/OpenCV-mips.mk rename to opencv_face_detect/src/main/cpp/opencv/jni/OpenCV-mips.mk diff --git a/app/src/main/cpp/opencv/jni/OpenCV-mips64.mk b/opencv_face_detect/src/main/cpp/opencv/jni/OpenCV-mips64.mk similarity index 100% rename from app/src/main/cpp/opencv/jni/OpenCV-mips64.mk rename to opencv_face_detect/src/main/cpp/opencv/jni/OpenCV-mips64.mk diff --git a/app/src/main/cpp/opencv/jni/OpenCV-x86.mk b/opencv_face_detect/src/main/cpp/opencv/jni/OpenCV-x86.mk similarity index 100% rename from app/src/main/cpp/opencv/jni/OpenCV-x86.mk rename to opencv_face_detect/src/main/cpp/opencv/jni/OpenCV-x86.mk diff --git a/app/src/main/cpp/opencv/jni/OpenCV-x86_64.mk b/opencv_face_detect/src/main/cpp/opencv/jni/OpenCV-x86_64.mk similarity index 100% rename from app/src/main/cpp/opencv/jni/OpenCV-x86_64.mk rename to opencv_face_detect/src/main/cpp/opencv/jni/OpenCV-x86_64.mk diff --git a/app/src/main/cpp/opencv/jni/OpenCV.mk b/opencv_face_detect/src/main/cpp/opencv/jni/OpenCV.mk similarity index 100% rename from app/src/main/cpp/opencv/jni/OpenCV.mk rename to opencv_face_detect/src/main/cpp/opencv/jni/OpenCV.mk diff --git a/app/src/main/cpp/opencv/jni/OpenCVConfig-version.cmake b/opencv_face_detect/src/main/cpp/opencv/jni/OpenCVConfig-version.cmake similarity index 100% rename from app/src/main/cpp/opencv/jni/OpenCVConfig-version.cmake rename to opencv_face_detect/src/main/cpp/opencv/jni/OpenCVConfig-version.cmake diff --git a/app/src/main/cpp/opencv/jni/OpenCVConfig.cmake b/opencv_face_detect/src/main/cpp/opencv/jni/OpenCVConfig.cmake similarity index 100% rename from app/src/main/cpp/opencv/jni/OpenCVConfig.cmake rename to opencv_face_detect/src/main/cpp/opencv/jni/OpenCVConfig.cmake diff --git a/app/src/main/cpp/opencv/jni/OpenCVModules_arm64_v8a-release.cmake b/opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_arm64_v8a-release.cmake similarity index 100% rename from app/src/main/cpp/opencv/jni/OpenCVModules_arm64_v8a-release.cmake rename to opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_arm64_v8a-release.cmake diff --git a/app/src/main/cpp/opencv/jni/OpenCVModules_arm64_v8a.cmake b/opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_arm64_v8a.cmake similarity index 100% rename from app/src/main/cpp/opencv/jni/OpenCVModules_arm64_v8a.cmake rename to opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_arm64_v8a.cmake diff --git a/app/src/main/cpp/opencv/jni/OpenCVModules_armeabi-release.cmake b/opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_armeabi-release.cmake similarity index 100% rename from app/src/main/cpp/opencv/jni/OpenCVModules_armeabi-release.cmake rename to opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_armeabi-release.cmake diff --git a/app/src/main/cpp/opencv/jni/OpenCVModules_armeabi.cmake b/opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_armeabi.cmake similarity index 100% rename from app/src/main/cpp/opencv/jni/OpenCVModules_armeabi.cmake rename to opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_armeabi.cmake diff --git a/app/src/main/cpp/opencv/jni/OpenCVModules_armeabi_v7a-release.cmake b/opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_armeabi_v7a-release.cmake similarity index 100% rename from app/src/main/cpp/opencv/jni/OpenCVModules_armeabi_v7a-release.cmake rename to opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_armeabi_v7a-release.cmake diff --git a/app/src/main/cpp/opencv/jni/OpenCVModules_armeabi_v7a.cmake b/opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_armeabi_v7a.cmake similarity index 100% rename from app/src/main/cpp/opencv/jni/OpenCVModules_armeabi_v7a.cmake rename to opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_armeabi_v7a.cmake diff --git a/app/src/main/cpp/opencv/jni/OpenCVModules_mips-release.cmake b/opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_mips-release.cmake similarity index 100% rename from app/src/main/cpp/opencv/jni/OpenCVModules_mips-release.cmake rename to opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_mips-release.cmake diff --git a/app/src/main/cpp/opencv/jni/OpenCVModules_mips.cmake b/opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_mips.cmake similarity index 100% rename from app/src/main/cpp/opencv/jni/OpenCVModules_mips.cmake rename to opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_mips.cmake diff --git a/app/src/main/cpp/opencv/jni/OpenCVModules_mips64-release.cmake b/opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_mips64-release.cmake similarity index 100% rename from app/src/main/cpp/opencv/jni/OpenCVModules_mips64-release.cmake rename to opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_mips64-release.cmake diff --git a/app/src/main/cpp/opencv/jni/OpenCVModules_mips64.cmake b/opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_mips64.cmake similarity index 100% rename from app/src/main/cpp/opencv/jni/OpenCVModules_mips64.cmake rename to opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_mips64.cmake diff --git a/app/src/main/cpp/opencv/jni/OpenCVModules_x86-release.cmake b/opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_x86-release.cmake similarity index 100% rename from app/src/main/cpp/opencv/jni/OpenCVModules_x86-release.cmake rename to opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_x86-release.cmake diff --git a/app/src/main/cpp/opencv/jni/OpenCVModules_x86.cmake b/opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_x86.cmake similarity index 100% rename from app/src/main/cpp/opencv/jni/OpenCVModules_x86.cmake rename to opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_x86.cmake diff --git a/app/src/main/cpp/opencv/jni/OpenCVModules_x86_64-release.cmake b/opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_x86_64-release.cmake similarity index 100% rename from app/src/main/cpp/opencv/jni/OpenCVModules_x86_64-release.cmake rename to opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_x86_64-release.cmake diff --git a/app/src/main/cpp/opencv/jni/OpenCVModules_x86_64.cmake b/opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_x86_64.cmake similarity index 100% rename from app/src/main/cpp/opencv/jni/OpenCVModules_x86_64.cmake rename to opencv_face_detect/src/main/cpp/opencv/jni/OpenCVModules_x86_64.cmake diff --git a/app/src/main/cpp/opencv/jni/android.toolchain.cmake b/opencv_face_detect/src/main/cpp/opencv/jni/android.toolchain.cmake similarity index 100% rename from app/src/main/cpp/opencv/jni/android.toolchain.cmake rename to opencv_face_detect/src/main/cpp/opencv/jni/android.toolchain.cmake diff --git a/app/src/main/cpp/opencv/jni/include/opencv/cv.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv/cv.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv/cv.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv/cv.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv/cv.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv/cv.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv/cv.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv/cv.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv/cvaux.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv/cvaux.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv/cvaux.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv/cvaux.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv/cvaux.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv/cvaux.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv/cvaux.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv/cvaux.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv/cvwimage.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv/cvwimage.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv/cvwimage.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv/cvwimage.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv/cxcore.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv/cxcore.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv/cxcore.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv/cxcore.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv/cxcore.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv/cxcore.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv/cxcore.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv/cxcore.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv/cxeigen.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv/cxeigen.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv/cxeigen.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv/cxeigen.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv/cxmisc.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv/cxmisc.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv/cxmisc.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv/cxmisc.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv/highgui.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv/highgui.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv/highgui.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv/highgui.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv/ml.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv/ml.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv/ml.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv/ml.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/calib3d.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/calib3d.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/calib3d.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/calib3d.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/calib3d/calib3d.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/calib3d/calib3d.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/calib3d/calib3d.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/calib3d/calib3d.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/calib3d/calib3d_c.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/calib3d/calib3d_c.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/calib3d/calib3d_c.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/calib3d/calib3d_c.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/affine.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/affine.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/affine.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/affine.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/base.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/base.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/base.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/base.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/bufferpool.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/bufferpool.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/bufferpool.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/bufferpool.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/core.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/core.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/core.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/core.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/core_c.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/core_c.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/core_c.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/core_c.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda.inl.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda.inl.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda.inl.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda.inl.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/block.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/block.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/block.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/block.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/border_interpolate.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/border_interpolate.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/border_interpolate.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/border_interpolate.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/color.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/color.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/color.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/color.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/common.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/common.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/common.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/common.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/datamov_utils.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/datamov_utils.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/datamov_utils.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/datamov_utils.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/detail/color_detail.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/detail/color_detail.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/detail/color_detail.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/detail/color_detail.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/detail/reduce.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/detail/reduce.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/detail/reduce.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/detail/reduce.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/detail/reduce_key_val.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/detail/reduce_key_val.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/detail/reduce_key_val.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/detail/reduce_key_val.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/detail/transform_detail.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/detail/transform_detail.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/detail/transform_detail.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/detail/transform_detail.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/detail/type_traits_detail.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/detail/type_traits_detail.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/detail/type_traits_detail.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/detail/type_traits_detail.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/detail/vec_distance_detail.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/detail/vec_distance_detail.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/detail/vec_distance_detail.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/detail/vec_distance_detail.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/dynamic_smem.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/dynamic_smem.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/dynamic_smem.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/dynamic_smem.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/emulation.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/emulation.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/emulation.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/emulation.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/filters.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/filters.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/filters.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/filters.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/funcattrib.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/funcattrib.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/funcattrib.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/funcattrib.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/functional.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/functional.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/functional.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/functional.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/limits.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/limits.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/limits.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/limits.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/reduce.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/reduce.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/reduce.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/reduce.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/saturate_cast.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/saturate_cast.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/saturate_cast.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/saturate_cast.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/scan.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/scan.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/scan.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/scan.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/simd_functions.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/simd_functions.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/simd_functions.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/simd_functions.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/transform.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/transform.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/transform.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/transform.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/type_traits.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/type_traits.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/type_traits.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/type_traits.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/utility.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/utility.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/utility.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/utility.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/vec_distance.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/vec_distance.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/vec_distance.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/vec_distance.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/vec_math.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/vec_math.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/vec_math.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/vec_math.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/vec_traits.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/vec_traits.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/vec_traits.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/vec_traits.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/warp.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/warp.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/warp.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/warp.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/warp_reduce.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/warp_reduce.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/warp_reduce.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/warp_reduce.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/warp_shuffle.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/warp_shuffle.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda/warp_shuffle.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda/warp_shuffle.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda_stream_accessor.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda_stream_accessor.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda_stream_accessor.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda_stream_accessor.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cuda_types.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda_types.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cuda_types.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cuda_types.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cvdef.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cvdef.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cvdef.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cvdef.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cvstd.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cvstd.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cvstd.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cvstd.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/cvstd.inl.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cvstd.inl.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/cvstd.inl.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/cvstd.inl.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/directx.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/directx.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/directx.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/directx.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/eigen.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/eigen.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/eigen.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/eigen.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/fast_math.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/fast_math.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/fast_math.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/fast_math.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/hal/hal.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/hal/hal.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/hal/hal.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/hal/hal.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/hal/interface.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/hal/interface.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/hal/interface.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/hal/interface.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/hal/intrin.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/hal/intrin.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/hal/intrin.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/hal/intrin.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/hal/intrin_cpp.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/hal/intrin_cpp.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/hal/intrin_cpp.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/hal/intrin_cpp.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/hal/intrin_neon.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/hal/intrin_neon.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/hal/intrin_neon.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/hal/intrin_neon.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/hal/intrin_sse.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/hal/intrin_sse.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/hal/intrin_sse.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/hal/intrin_sse.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/ippasync.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/ippasync.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/ippasync.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/ippasync.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/mat.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/mat.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/mat.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/mat.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/mat.inl.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/mat.inl.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/mat.inl.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/mat.inl.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/matx.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/matx.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/matx.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/matx.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/neon_utils.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/neon_utils.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/neon_utils.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/neon_utils.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/ocl.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/ocl.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/ocl.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/ocl.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/ocl_genbase.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/ocl_genbase.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/ocl_genbase.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/ocl_genbase.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/opengl.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/opengl.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/opengl.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/opengl.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/operations.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/operations.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/operations.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/operations.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/optim.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/optim.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/optim.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/optim.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/persistence.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/persistence.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/persistence.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/persistence.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/private.cuda.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/private.cuda.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/private.cuda.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/private.cuda.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/private.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/private.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/private.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/private.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/ptr.inl.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/ptr.inl.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/ptr.inl.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/ptr.inl.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/saturate.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/saturate.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/saturate.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/saturate.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/sse_utils.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/sse_utils.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/sse_utils.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/sse_utils.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/traits.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/traits.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/traits.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/traits.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/types.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/types.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/types.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/types.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/types_c.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/types_c.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/types_c.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/types_c.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/utility.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/utility.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/utility.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/utility.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/va_intel.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/va_intel.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/va_intel.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/va_intel.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/version.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/version.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/version.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/version.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/core/wimage.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/wimage.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/core/wimage.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/core/wimage.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/cvconfig.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/cvconfig.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/cvconfig.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/cvconfig.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/features2d.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/features2d.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/features2d.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/features2d.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/features2d/features2d.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/features2d/features2d.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/features2d/features2d.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/features2d/features2d.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/all_indices.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/all_indices.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/all_indices.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/all_indices.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/allocator.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/allocator.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/allocator.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/allocator.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/any.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/any.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/any.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/any.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/autotuned_index.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/autotuned_index.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/autotuned_index.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/autotuned_index.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/composite_index.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/composite_index.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/composite_index.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/composite_index.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/config.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/config.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/config.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/config.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/defines.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/defines.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/defines.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/defines.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/dist.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/dist.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/dist.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/dist.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/dummy.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/dummy.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/dummy.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/dummy.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/dynamic_bitset.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/dynamic_bitset.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/dynamic_bitset.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/dynamic_bitset.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/flann.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/flann.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/flann.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/flann.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/flann_base.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/flann_base.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/flann_base.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/flann_base.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/general.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/general.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/general.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/general.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/ground_truth.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/ground_truth.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/ground_truth.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/ground_truth.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/hdf5.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/hdf5.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/hdf5.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/hdf5.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/heap.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/heap.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/heap.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/heap.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/hierarchical_clustering_index.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/hierarchical_clustering_index.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/hierarchical_clustering_index.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/hierarchical_clustering_index.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/index_testing.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/index_testing.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/index_testing.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/index_testing.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/kdtree_index.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/kdtree_index.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/kdtree_index.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/kdtree_index.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/kdtree_single_index.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/kdtree_single_index.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/kdtree_single_index.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/kdtree_single_index.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/kmeans_index.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/kmeans_index.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/kmeans_index.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/kmeans_index.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/linear_index.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/linear_index.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/linear_index.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/linear_index.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/logger.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/logger.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/logger.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/logger.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/lsh_index.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/lsh_index.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/lsh_index.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/lsh_index.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/lsh_table.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/lsh_table.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/lsh_table.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/lsh_table.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/matrix.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/matrix.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/matrix.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/matrix.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/miniflann.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/miniflann.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/miniflann.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/miniflann.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/nn_index.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/nn_index.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/nn_index.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/nn_index.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/object_factory.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/object_factory.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/object_factory.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/object_factory.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/params.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/params.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/params.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/params.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/random.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/random.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/random.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/random.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/result_set.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/result_set.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/result_set.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/result_set.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/sampling.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/sampling.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/sampling.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/sampling.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/saving.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/saving.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/saving.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/saving.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/simplex_downhill.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/simplex_downhill.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/simplex_downhill.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/simplex_downhill.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/flann/timer.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/timer.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/flann/timer.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/flann/timer.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/highgui.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/highgui.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/highgui.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/highgui.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/highgui/highgui.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/highgui/highgui.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/highgui/highgui.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/highgui/highgui.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/highgui/highgui_c.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/highgui/highgui_c.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/highgui/highgui_c.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/highgui/highgui_c.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/imgcodecs.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/imgcodecs.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/imgcodecs.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/imgcodecs.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/imgcodecs/imgcodecs.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/imgcodecs/imgcodecs.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/imgcodecs/imgcodecs.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/imgcodecs/imgcodecs.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/imgcodecs/imgcodecs_c.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/imgcodecs/imgcodecs_c.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/imgcodecs/imgcodecs_c.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/imgcodecs/imgcodecs_c.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/imgcodecs/ios.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/imgcodecs/ios.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/imgcodecs/ios.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/imgcodecs/ios.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/imgproc.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/imgproc.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/imgproc.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/imgproc.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/imgproc/detail/distortion_model.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/imgproc/detail/distortion_model.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/imgproc/detail/distortion_model.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/imgproc/detail/distortion_model.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/imgproc/imgproc.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/imgproc/imgproc.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/imgproc/imgproc.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/imgproc/imgproc.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/imgproc/imgproc_c.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/imgproc/imgproc_c.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/imgproc/imgproc_c.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/imgproc/imgproc_c.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/imgproc/types_c.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/imgproc/types_c.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/imgproc/types_c.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/imgproc/types_c.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/ml.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/ml.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/ml.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/ml.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/ml/ml.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/ml/ml.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/ml/ml.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/ml/ml.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/objdetect.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/objdetect.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/objdetect.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/objdetect.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/objdetect/detection_based_tracker.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/objdetect/detection_based_tracker.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/objdetect/detection_based_tracker.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/objdetect/detection_based_tracker.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/objdetect/objdetect.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/objdetect/objdetect.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/objdetect/objdetect.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/objdetect/objdetect.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/objdetect/objdetect_c.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/objdetect/objdetect_c.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/objdetect/objdetect_c.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/objdetect/objdetect_c.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/opencv.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/opencv.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/opencv.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/opencv.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/opencv_modules.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/opencv_modules.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/opencv_modules.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/opencv_modules.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/photo.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/photo.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/photo.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/photo.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/photo/cuda.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/photo/cuda.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/photo/cuda.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/photo/cuda.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/photo/photo.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/photo/photo.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/photo/photo.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/photo/photo.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/photo/photo_c.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/photo/photo_c.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/photo/photo_c.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/photo/photo_c.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/shape.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/shape.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/shape.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/shape.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/shape/emdL1.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/shape/emdL1.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/shape/emdL1.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/shape/emdL1.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/shape/hist_cost.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/shape/hist_cost.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/shape/hist_cost.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/shape/hist_cost.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/shape/shape.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/shape/shape.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/shape/shape.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/shape/shape.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/shape/shape_distance.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/shape/shape_distance.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/shape/shape_distance.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/shape/shape_distance.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/shape/shape_transformer.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/shape/shape_transformer.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/shape/shape_transformer.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/shape/shape_transformer.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/stitching.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/stitching.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/autocalib.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/autocalib.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/autocalib.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/autocalib.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/blenders.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/blenders.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/blenders.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/blenders.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/camera.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/camera.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/camera.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/camera.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/exposure_compensate.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/exposure_compensate.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/exposure_compensate.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/exposure_compensate.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/matchers.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/matchers.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/matchers.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/matchers.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/motion_estimators.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/motion_estimators.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/motion_estimators.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/motion_estimators.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/seam_finders.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/seam_finders.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/seam_finders.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/seam_finders.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/timelapsers.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/timelapsers.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/timelapsers.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/timelapsers.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/util.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/util.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/util.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/util.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/util_inl.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/util_inl.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/util_inl.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/util_inl.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/warpers.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/warpers.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/warpers.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/warpers.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/warpers_inl.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/warpers_inl.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/warpers_inl.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching/detail/warpers_inl.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/stitching/warpers.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching/warpers.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/stitching/warpers.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/stitching/warpers.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/superres.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/superres.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/superres.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/superres.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/superres/optical_flow.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/superres/optical_flow.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/superres/optical_flow.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/superres/optical_flow.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/video.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/video.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/video.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/video.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/video/background_segm.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/video/background_segm.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/video/background_segm.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/video/background_segm.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/video/tracking.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/video/tracking.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/video/tracking.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/video/tracking.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/video/tracking_c.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/video/tracking_c.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/video/tracking_c.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/video/tracking_c.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/video/video.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/video/video.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/video/video.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/video/video.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/videoio.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videoio.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/videoio.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videoio.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/videoio/cap_ios.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videoio/cap_ios.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/videoio/cap_ios.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videoio/cap_ios.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/videoio/videoio.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videoio/videoio.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/videoio/videoio.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videoio/videoio.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/videoio/videoio_c.h b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videoio/videoio_c.h similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/videoio/videoio_c.h rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videoio/videoio_c.h diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/videostab.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/videostab.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/videostab/deblurring.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/deblurring.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/videostab/deblurring.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/deblurring.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/videostab/fast_marching.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/fast_marching.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/videostab/fast_marching.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/fast_marching.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/videostab/fast_marching_inl.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/fast_marching_inl.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/videostab/fast_marching_inl.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/fast_marching_inl.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/videostab/frame_source.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/frame_source.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/videostab/frame_source.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/frame_source.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/videostab/global_motion.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/global_motion.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/videostab/global_motion.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/global_motion.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/videostab/inpainting.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/inpainting.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/videostab/inpainting.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/inpainting.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/videostab/log.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/log.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/videostab/log.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/log.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/videostab/motion_core.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/motion_core.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/videostab/motion_core.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/motion_core.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/videostab/motion_stabilizing.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/motion_stabilizing.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/videostab/motion_stabilizing.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/motion_stabilizing.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/videostab/optical_flow.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/optical_flow.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/videostab/optical_flow.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/optical_flow.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/videostab/outlier_rejection.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/outlier_rejection.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/videostab/outlier_rejection.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/outlier_rejection.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/videostab/ring_buffer.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/ring_buffer.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/videostab/ring_buffer.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/ring_buffer.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/videostab/stabilizer.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/stabilizer.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/videostab/stabilizer.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/stabilizer.hpp diff --git a/app/src/main/cpp/opencv/jni/include/opencv2/videostab/wobble_suppression.hpp b/opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/wobble_suppression.hpp similarity index 100% rename from app/src/main/cpp/opencv/jni/include/opencv2/videostab/wobble_suppression.hpp rename to opencv_face_detect/src/main/cpp/opencv/jni/include/opencv2/videostab/wobble_suppression.hpp diff --git a/app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_calib3d.a b/opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_calib3d.a similarity index 100% rename from app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_calib3d.a rename to opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_calib3d.a diff --git a/app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_core.a b/opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_core.a similarity index 100% rename from app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_core.a rename to opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_core.a diff --git a/app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_features2d.a b/opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_features2d.a similarity index 100% rename from app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_features2d.a rename to opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_features2d.a diff --git a/app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_flann.a b/opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_flann.a similarity index 100% rename from app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_flann.a rename to opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_flann.a diff --git a/app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_highgui.a b/opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_highgui.a similarity index 100% rename from app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_highgui.a rename to opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_highgui.a diff --git a/app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_imgcodecs.a b/opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_imgcodecs.a similarity index 100% rename from app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_imgcodecs.a rename to opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_imgcodecs.a diff --git a/app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_imgproc.a b/opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_imgproc.a similarity index 100% rename from app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_imgproc.a rename to opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_imgproc.a diff --git a/app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_java3.so b/opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_java3.so similarity index 100% rename from app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_java3.so rename to opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_java3.so diff --git a/app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_ml.a b/opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_ml.a similarity index 100% rename from app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_ml.a rename to opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_ml.a diff --git a/app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_objdetect.a b/opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_objdetect.a similarity index 100% rename from app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_objdetect.a rename to opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_objdetect.a diff --git a/app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_photo.a b/opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_photo.a similarity index 100% rename from app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_photo.a rename to opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_photo.a diff --git a/app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_shape.a b/opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_shape.a similarity index 100% rename from app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_shape.a rename to opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_shape.a diff --git a/app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_stitching.a b/opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_stitching.a similarity index 100% rename from app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_stitching.a rename to opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_stitching.a diff --git a/app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_superres.a b/opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_superres.a similarity index 100% rename from app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_superres.a rename to opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_superres.a diff --git a/app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_video.a b/opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_video.a similarity index 100% rename from app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_video.a rename to opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_video.a diff --git a/app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_videoio.a b/opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_videoio.a similarity index 100% rename from app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_videoio.a rename to opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_videoio.a diff --git a/app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_videostab.a b/opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_videostab.a similarity index 100% rename from app/src/main/cpp/opencv/libs/arm64-v8a/libopencv_videostab.a rename to opencv_face_detect/src/main/cpp/opencv/libs/arm64-v8a/libopencv_videostab.a diff --git a/app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_calib3d.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_calib3d.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_calib3d.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_calib3d.a diff --git a/app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_core.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_core.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_core.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_core.a diff --git a/app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_features2d.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_features2d.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_features2d.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_features2d.a diff --git a/app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_flann.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_flann.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_flann.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_flann.a diff --git a/app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_highgui.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_highgui.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_highgui.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_highgui.a diff --git a/app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_imgcodecs.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_imgcodecs.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_imgcodecs.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_imgcodecs.a diff --git a/app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_imgproc.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_imgproc.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_imgproc.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_imgproc.a diff --git a/app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_java3.so b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_java3.so similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_java3.so rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_java3.so diff --git a/app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_ml.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_ml.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_ml.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_ml.a diff --git a/app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_objdetect.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_objdetect.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_objdetect.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_objdetect.a diff --git a/app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_photo.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_photo.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_photo.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_photo.a diff --git a/app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_shape.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_shape.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_shape.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_shape.a diff --git a/app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_stitching.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_stitching.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_stitching.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_stitching.a diff --git a/app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_superres.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_superres.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_superres.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_superres.a diff --git a/app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_ts.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_ts.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_ts.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_ts.a diff --git a/app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_video.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_video.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_video.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_video.a diff --git a/app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_videoio.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_videoio.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_videoio.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_videoio.a diff --git a/app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_videostab.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_videostab.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_videostab.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi-v7a/libopencv_videostab.a diff --git a/app/src/main/cpp/opencv/libs/armeabi/libopencv_calib3d.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_calib3d.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi/libopencv_calib3d.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_calib3d.a diff --git a/app/src/main/cpp/opencv/libs/armeabi/libopencv_core.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_core.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi/libopencv_core.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_core.a diff --git a/app/src/main/cpp/opencv/libs/armeabi/libopencv_features2d.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_features2d.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi/libopencv_features2d.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_features2d.a diff --git a/app/src/main/cpp/opencv/libs/armeabi/libopencv_flann.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_flann.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi/libopencv_flann.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_flann.a diff --git a/app/src/main/cpp/opencv/libs/armeabi/libopencv_highgui.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_highgui.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi/libopencv_highgui.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_highgui.a diff --git a/app/src/main/cpp/opencv/libs/armeabi/libopencv_imgcodecs.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_imgcodecs.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi/libopencv_imgcodecs.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_imgcodecs.a diff --git a/app/src/main/cpp/opencv/libs/armeabi/libopencv_imgproc.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_imgproc.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi/libopencv_imgproc.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_imgproc.a diff --git a/app/src/main/cpp/opencv/libs/armeabi/libopencv_java3.so b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_java3.so similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi/libopencv_java3.so rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_java3.so diff --git a/app/src/main/cpp/opencv/libs/armeabi/libopencv_ml.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_ml.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi/libopencv_ml.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_ml.a diff --git a/app/src/main/cpp/opencv/libs/armeabi/libopencv_objdetect.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_objdetect.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi/libopencv_objdetect.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_objdetect.a diff --git a/app/src/main/cpp/opencv/libs/armeabi/libopencv_photo.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_photo.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi/libopencv_photo.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_photo.a diff --git a/app/src/main/cpp/opencv/libs/armeabi/libopencv_shape.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_shape.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi/libopencv_shape.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_shape.a diff --git a/app/src/main/cpp/opencv/libs/armeabi/libopencv_stitching.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_stitching.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi/libopencv_stitching.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_stitching.a diff --git a/app/src/main/cpp/opencv/libs/armeabi/libopencv_superres.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_superres.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi/libopencv_superres.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_superres.a diff --git a/app/src/main/cpp/opencv/libs/armeabi/libopencv_video.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_video.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi/libopencv_video.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_video.a diff --git a/app/src/main/cpp/opencv/libs/armeabi/libopencv_videoio.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_videoio.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi/libopencv_videoio.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_videoio.a diff --git a/app/src/main/cpp/opencv/libs/armeabi/libopencv_videostab.a b/opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_videostab.a similarity index 100% rename from app/src/main/cpp/opencv/libs/armeabi/libopencv_videostab.a rename to opencv_face_detect/src/main/cpp/opencv/libs/armeabi/libopencv_videostab.a diff --git a/app/src/main/cpp/opencv/libs/mips/libopencv_calib3d.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_calib3d.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips/libopencv_calib3d.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_calib3d.a diff --git a/app/src/main/cpp/opencv/libs/mips/libopencv_core.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_core.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips/libopencv_core.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_core.a diff --git a/app/src/main/cpp/opencv/libs/mips/libopencv_features2d.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_features2d.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips/libopencv_features2d.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_features2d.a diff --git a/app/src/main/cpp/opencv/libs/mips/libopencv_flann.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_flann.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips/libopencv_flann.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_flann.a diff --git a/app/src/main/cpp/opencv/libs/mips/libopencv_highgui.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_highgui.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips/libopencv_highgui.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_highgui.a diff --git a/app/src/main/cpp/opencv/libs/mips/libopencv_imgcodecs.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_imgcodecs.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips/libopencv_imgcodecs.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_imgcodecs.a diff --git a/app/src/main/cpp/opencv/libs/mips/libopencv_imgproc.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_imgproc.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips/libopencv_imgproc.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_imgproc.a diff --git a/app/src/main/cpp/opencv/libs/mips/libopencv_java3.so b/opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_java3.so similarity index 100% rename from app/src/main/cpp/opencv/libs/mips/libopencv_java3.so rename to opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_java3.so diff --git a/app/src/main/cpp/opencv/libs/mips/libopencv_ml.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_ml.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips/libopencv_ml.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_ml.a diff --git a/app/src/main/cpp/opencv/libs/mips/libopencv_objdetect.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_objdetect.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips/libopencv_objdetect.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_objdetect.a diff --git a/app/src/main/cpp/opencv/libs/mips/libopencv_photo.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_photo.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips/libopencv_photo.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_photo.a diff --git a/app/src/main/cpp/opencv/libs/mips/libopencv_shape.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_shape.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips/libopencv_shape.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_shape.a diff --git a/app/src/main/cpp/opencv/libs/mips/libopencv_stitching.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_stitching.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips/libopencv_stitching.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_stitching.a diff --git a/app/src/main/cpp/opencv/libs/mips/libopencv_superres.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_superres.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips/libopencv_superres.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_superres.a diff --git a/app/src/main/cpp/opencv/libs/mips/libopencv_video.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_video.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips/libopencv_video.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_video.a diff --git a/app/src/main/cpp/opencv/libs/mips/libopencv_videoio.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_videoio.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips/libopencv_videoio.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_videoio.a diff --git a/app/src/main/cpp/opencv/libs/mips/libopencv_videostab.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_videostab.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips/libopencv_videostab.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips/libopencv_videostab.a diff --git a/app/src/main/cpp/opencv/libs/mips64/libopencv_calib3d.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_calib3d.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips64/libopencv_calib3d.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_calib3d.a diff --git a/app/src/main/cpp/opencv/libs/mips64/libopencv_core.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_core.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips64/libopencv_core.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_core.a diff --git a/app/src/main/cpp/opencv/libs/mips64/libopencv_features2d.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_features2d.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips64/libopencv_features2d.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_features2d.a diff --git a/app/src/main/cpp/opencv/libs/mips64/libopencv_flann.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_flann.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips64/libopencv_flann.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_flann.a diff --git a/app/src/main/cpp/opencv/libs/mips64/libopencv_highgui.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_highgui.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips64/libopencv_highgui.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_highgui.a diff --git a/app/src/main/cpp/opencv/libs/mips64/libopencv_imgcodecs.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_imgcodecs.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips64/libopencv_imgcodecs.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_imgcodecs.a diff --git a/app/src/main/cpp/opencv/libs/mips64/libopencv_imgproc.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_imgproc.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips64/libopencv_imgproc.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_imgproc.a diff --git a/app/src/main/cpp/opencv/libs/mips64/libopencv_java3.so b/opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_java3.so similarity index 100% rename from app/src/main/cpp/opencv/libs/mips64/libopencv_java3.so rename to opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_java3.so diff --git a/app/src/main/cpp/opencv/libs/mips64/libopencv_ml.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_ml.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips64/libopencv_ml.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_ml.a diff --git a/app/src/main/cpp/opencv/libs/mips64/libopencv_objdetect.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_objdetect.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips64/libopencv_objdetect.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_objdetect.a diff --git a/app/src/main/cpp/opencv/libs/mips64/libopencv_photo.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_photo.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips64/libopencv_photo.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_photo.a diff --git a/app/src/main/cpp/opencv/libs/mips64/libopencv_shape.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_shape.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips64/libopencv_shape.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_shape.a diff --git a/app/src/main/cpp/opencv/libs/mips64/libopencv_stitching.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_stitching.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips64/libopencv_stitching.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_stitching.a diff --git a/app/src/main/cpp/opencv/libs/mips64/libopencv_superres.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_superres.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips64/libopencv_superres.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_superres.a diff --git a/app/src/main/cpp/opencv/libs/mips64/libopencv_video.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_video.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips64/libopencv_video.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_video.a diff --git a/app/src/main/cpp/opencv/libs/mips64/libopencv_videoio.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_videoio.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips64/libopencv_videoio.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_videoio.a diff --git a/app/src/main/cpp/opencv/libs/mips64/libopencv_videostab.a b/opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_videostab.a similarity index 100% rename from app/src/main/cpp/opencv/libs/mips64/libopencv_videostab.a rename to opencv_face_detect/src/main/cpp/opencv/libs/mips64/libopencv_videostab.a diff --git a/app/src/main/cpp/opencv/libs/x86/libopencv_calib3d.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_calib3d.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86/libopencv_calib3d.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_calib3d.a diff --git a/app/src/main/cpp/opencv/libs/x86/libopencv_core.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_core.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86/libopencv_core.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_core.a diff --git a/app/src/main/cpp/opencv/libs/x86/libopencv_features2d.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_features2d.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86/libopencv_features2d.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_features2d.a diff --git a/app/src/main/cpp/opencv/libs/x86/libopencv_flann.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_flann.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86/libopencv_flann.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_flann.a diff --git a/app/src/main/cpp/opencv/libs/x86/libopencv_highgui.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_highgui.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86/libopencv_highgui.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_highgui.a diff --git a/app/src/main/cpp/opencv/libs/x86/libopencv_imgcodecs.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_imgcodecs.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86/libopencv_imgcodecs.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_imgcodecs.a diff --git a/app/src/main/cpp/opencv/libs/x86/libopencv_imgproc.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_imgproc.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86/libopencv_imgproc.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_imgproc.a diff --git a/app/src/main/cpp/opencv/libs/x86/libopencv_java3.so b/opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_java3.so similarity index 100% rename from app/src/main/cpp/opencv/libs/x86/libopencv_java3.so rename to opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_java3.so diff --git a/app/src/main/cpp/opencv/libs/x86/libopencv_ml.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_ml.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86/libopencv_ml.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_ml.a diff --git a/app/src/main/cpp/opencv/libs/x86/libopencv_objdetect.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_objdetect.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86/libopencv_objdetect.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_objdetect.a diff --git a/app/src/main/cpp/opencv/libs/x86/libopencv_photo.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_photo.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86/libopencv_photo.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_photo.a diff --git a/app/src/main/cpp/opencv/libs/x86/libopencv_shape.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_shape.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86/libopencv_shape.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_shape.a diff --git a/app/src/main/cpp/opencv/libs/x86/libopencv_stitching.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_stitching.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86/libopencv_stitching.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_stitching.a diff --git a/app/src/main/cpp/opencv/libs/x86/libopencv_superres.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_superres.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86/libopencv_superres.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_superres.a diff --git a/app/src/main/cpp/opencv/libs/x86/libopencv_video.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_video.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86/libopencv_video.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_video.a diff --git a/app/src/main/cpp/opencv/libs/x86/libopencv_videoio.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_videoio.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86/libopencv_videoio.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_videoio.a diff --git a/app/src/main/cpp/opencv/libs/x86/libopencv_videostab.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_videostab.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86/libopencv_videostab.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86/libopencv_videostab.a diff --git a/app/src/main/cpp/opencv/libs/x86_64/libopencv_calib3d.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_calib3d.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86_64/libopencv_calib3d.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_calib3d.a diff --git a/app/src/main/cpp/opencv/libs/x86_64/libopencv_core.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_core.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86_64/libopencv_core.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_core.a diff --git a/app/src/main/cpp/opencv/libs/x86_64/libopencv_features2d.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_features2d.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86_64/libopencv_features2d.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_features2d.a diff --git a/app/src/main/cpp/opencv/libs/x86_64/libopencv_flann.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_flann.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86_64/libopencv_flann.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_flann.a diff --git a/app/src/main/cpp/opencv/libs/x86_64/libopencv_highgui.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_highgui.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86_64/libopencv_highgui.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_highgui.a diff --git a/app/src/main/cpp/opencv/libs/x86_64/libopencv_imgcodecs.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_imgcodecs.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86_64/libopencv_imgcodecs.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_imgcodecs.a diff --git a/app/src/main/cpp/opencv/libs/x86_64/libopencv_imgproc.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_imgproc.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86_64/libopencv_imgproc.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_imgproc.a diff --git a/app/src/main/cpp/opencv/libs/x86_64/libopencv_java3.so b/opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_java3.so similarity index 100% rename from app/src/main/cpp/opencv/libs/x86_64/libopencv_java3.so rename to opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_java3.so diff --git a/app/src/main/cpp/opencv/libs/x86_64/libopencv_ml.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_ml.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86_64/libopencv_ml.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_ml.a diff --git a/app/src/main/cpp/opencv/libs/x86_64/libopencv_objdetect.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_objdetect.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86_64/libopencv_objdetect.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_objdetect.a diff --git a/app/src/main/cpp/opencv/libs/x86_64/libopencv_photo.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_photo.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86_64/libopencv_photo.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_photo.a diff --git a/app/src/main/cpp/opencv/libs/x86_64/libopencv_shape.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_shape.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86_64/libopencv_shape.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_shape.a diff --git a/app/src/main/cpp/opencv/libs/x86_64/libopencv_stitching.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_stitching.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86_64/libopencv_stitching.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_stitching.a diff --git a/app/src/main/cpp/opencv/libs/x86_64/libopencv_superres.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_superres.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86_64/libopencv_superres.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_superres.a diff --git a/app/src/main/cpp/opencv/libs/x86_64/libopencv_video.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_video.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86_64/libopencv_video.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_video.a diff --git a/app/src/main/cpp/opencv/libs/x86_64/libopencv_videoio.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_videoio.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86_64/libopencv_videoio.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_videoio.a diff --git a/app/src/main/cpp/opencv/libs/x86_64/libopencv_videostab.a b/opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_videostab.a similarity index 100% rename from app/src/main/cpp/opencv/libs/x86_64/libopencv_videostab.a rename to opencv_face_detect/src/main/cpp/opencv/libs/x86_64/libopencv_videostab.a diff --git a/app/src/main/java/com/lightweh/dlib/FaceDet.java b/opencv_face_detect/src/main/java/com/lightweh/dlib/FaceDet.java similarity index 82% rename from app/src/main/java/com/lightweh/dlib/FaceDet.java rename to opencv_face_detect/src/main/java/com/lightweh/dlib/FaceDet.java index 67b6c5d..adfeb5f 100644 --- a/app/src/main/java/com/lightweh/dlib/FaceDet.java +++ b/opencv_face_detect/src/main/java/com/lightweh/dlib/FaceDet.java @@ -1,71 +1,71 @@ -package com.lightweh.dlib; - -import android.graphics.Bitmap; -import android.support.annotation.Keep; -import android.support.annotation.NonNull; -import android.support.annotation.Nullable; -import android.support.annotation.WorkerThread; -import android.util.Log; - -import java.util.Arrays; -import java.util.List; - -/** - * Created by houzhi on 16-10-20. - * Modified by tzutalin on 16-11-15 - * Modified by Gaurav on Feb 23, 2018 - * Modified by Lightweh on Nov 21, 2018 - */ - -public class FaceDet { - private static final String TAG = "FaceDet"; - - // accessed by native methods - @SuppressWarnings("unused") - private long mNativeFaceDetContext; - - static { - try { - System.loadLibrary("native-lib"); - jniNativeClassInit(); - Log.d(TAG, "jniNativeClassInit success"); - } catch (UnsatisfiedLinkError e) { - Log.e(TAG, "library not found"); - } - } - - public FaceDet() { - jniInit(); - } - - - - @Nullable - @WorkerThread - public List detect(@NonNull Bitmap bitmap) { - VisionDetRet[] detRets = jniBitmapDet(bitmap); - return Arrays.asList(detRets); - } - - @Override - protected void finalize() throws Throwable { - super.finalize(); - release(); - } - - public void release() { - jniDeInit(); - } - - @Keep - private native static void jniNativeClassInit(); - - @Keep - private synchronized native int jniInit(); - - @Keep - private synchronized native int jniDeInit(); - - @Keep - private synchronized native VisionDetRet[] jniBitmapDet(Bitmap bitmap); -} +package com.lightweh.dlib; + +import android.graphics.Bitmap; +import androidx.annotation.Keep; +import androidx.annotation.NonNull; +import androidx.annotation.Nullable; +import androidx.annotation.WorkerThread; +import android.util.Log; + +import java.util.Arrays; +import java.util.List; + +/** + * Created by houzhi on 16-10-20. + * Modified by tzutalin on 16-11-15 + * Modified by Gaurav on Feb 23, 2018 + * Modified by Lightweh on Nov 21, 2018 + */ + +public class FaceDet { + private static final String TAG = "FaceDet"; + + // accessed by native methods + @SuppressWarnings("unused") + private long mNativeFaceDetContext; + + static { + try { + System.loadLibrary("facedetec-lib"); + jniNativeClassInit(); + Log.d(TAG, "jniNativeClassInit success"); + } catch (UnsatisfiedLinkError e) { + Log.e(TAG, "library not found"); + } + } + + public FaceDet() { + jniInit(); + } + + + + @Nullable + @WorkerThread + public List detect(@NonNull Bitmap bitmap) { + VisionDetRet[] detRets = jniBitmapDet(bitmap); + return Arrays.asList(detRets); + } + + @Override + protected void finalize() throws Throwable { + super.finalize(); + release(); + } + + public void release() { + jniDeInit(); + } + + @Keep + private native static void jniNativeClassInit(); + + @Keep + private synchronized native int jniInit(); + + @Keep + private synchronized native int jniDeInit(); + + @Keep + private synchronized native VisionDetRet[] jniBitmapDet(Bitmap bitmap); +} diff --git a/app/src/main/java/com/lightweh/dlib/VisionDetRet.java b/opencv_face_detect/src/main/java/com/lightweh/dlib/VisionDetRet.java similarity index 96% rename from app/src/main/java/com/lightweh/dlib/VisionDetRet.java rename to opencv_face_detect/src/main/java/com/lightweh/dlib/VisionDetRet.java index 9af4840..48b6bd8 100644 --- a/app/src/main/java/com/lightweh/dlib/VisionDetRet.java +++ b/opencv_face_detect/src/main/java/com/lightweh/dlib/VisionDetRet.java @@ -1,75 +1,75 @@ -/* - * Copyright (C) 2015 TzuTaLin - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.lightweh.dlib; - - -/** - * Created by Tzutalin on 2015/10/20. - * Modified by Lightweh on Nov 21, 2018 - */ - - -public final class VisionDetRet { - - private int mLeft; - private int mTop; - private int mRight; - private int mBottom; - - VisionDetRet() {} - - /** - * @param l The X coordinate of the left side of the result - * @param t The Y coordinate of the top of the result - * @param r The X coordinate of the right side of the result - * @param b The Y coordinate of the bottom of the result - */ - public VisionDetRet(int l, int t, int r, int b) { - mLeft = l; - mTop = t; - mRight = r; - mBottom = b; - } - - /** - * @return The X coordinate of the left side of the result - */ - public int getLeft() { - return mLeft; - } - - /** - * @return The Y coordinate of the top of the result - */ - public int getTop() { - return mTop; - } - - /** - * @return The X coordinate of the right side of the result - */ - public int getRight() { - return mRight; - } - - /** - * @return The Y coordinate of the bottom of the result - */ - public int getBottom() { - return mBottom; - } -} +/* + * Copyright (C) 2015 TzuTaLin + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.lightweh.dlib; + + +/** + * Created by Tzutalin on 2015/10/20. + * Modified by Lightweh on Nov 21, 2018 + */ + + +public final class VisionDetRet { + + private int mLeft; + private int mTop; + private int mRight; + private int mBottom; + + VisionDetRet() {} + + /** + * @param l The X coordinate of the left side of the result + * @param t The Y coordinate of the top of the result + * @param r The X coordinate of the right side of the result + * @param b The Y coordinate of the bottom of the result + */ + public VisionDetRet(int l, int t, int r, int b) { + mLeft = l; + mTop = t; + mRight = r; + mBottom = b; + } + + /** + * @return The X coordinate of the left side of the result + */ + public int getLeft() { + return mLeft; + } + + /** + * @return The Y coordinate of the top of the result + */ + public int getTop() { + return mTop; + } + + /** + * @return The X coordinate of the right side of the result + */ + public int getRight() { + return mRight; + } + + /** + * @return The Y coordinate of the bottom of the result + */ + public int getBottom() { + return mBottom; + } +} diff --git a/opencv_face_detect/version.properties b/opencv_face_detect/version.properties new file mode 100644 index 0000000..6b602a5 --- /dev/null +++ b/opencv_face_detect/version.properties @@ -0,0 +1,5 @@ +#Sun Oct 23 02:53:49 CST 2022 +VERSION_NAME_HOTFIX=0 +VERSION_NAME_BUILD=1 +VERSION_CODE=1 +VERSION_NAME_PREFIX=0.0 diff --git a/settings.gradle b/settings.gradle index d3db109..fcaf912 100755 --- a/settings.gradle +++ b/settings.gradle @@ -1 +1,2 @@ include ':app' +include ':opencv_face_detect' \ No newline at end of file