├── app ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ └── styles.xml │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ └── layout │ │ │ │ └── activity_main2.xml │ │ ├── cpp │ │ │ ├── native-lib.h │ │ │ └── native-lib.cpp │ │ ├── java │ │ │ └── ir │ │ │ │ └── whiteapp │ │ │ │ └── maremat │ │ │ │ ├── Inpainting.java │ │ │ │ └── Main2Activity.java │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── ir │ │ │ └── whiteapp │ │ │ └── maremat │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── ir │ │ └── whiteapp │ │ └── maremat │ │ └── ExampleInstrumentedTest.java ├── .externalNativeBuild │ └── cmake │ │ ├── debug │ │ ├── x86 │ │ │ ├── CMakeFiles │ │ │ │ ├── cmake.check_cache │ │ │ │ ├── 3.6.0-rc2 │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ └── CMakeSystem.cmake │ │ │ │ └── TargetDirectories.txt │ │ │ ├── cmake_build_command.txt │ │ │ ├── cmake_build_output.txt │ │ │ └── cmake_install.cmake │ │ ├── armeabi │ │ │ ├── CMakeFiles │ │ │ │ ├── cmake.check_cache │ │ │ │ ├── 3.6.0-rc2 │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ └── CMakeSystem.cmake │ │ │ │ └── TargetDirectories.txt │ │ │ ├── cmake_build_command.txt │ │ │ ├── cmake_build_output.txt │ │ │ └── cmake_install.cmake │ │ ├── mips │ │ │ ├── CMakeFiles │ │ │ │ ├── cmake.check_cache │ │ │ │ ├── 3.6.0-rc2 │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ └── CMakeSystem.cmake │ │ │ │ └── TargetDirectories.txt │ │ │ ├── cmake_build_command.txt │ │ │ ├── cmake_build_output.txt │ │ │ └── cmake_install.cmake │ │ ├── mips64 │ │ │ ├── CMakeFiles │ │ │ │ ├── cmake.check_cache │ │ │ │ ├── 3.6.0-rc2 │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ └── CMakeSystem.cmake │ │ │ │ ├── native-lib.dir │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── cpp │ │ │ │ │ │ └── native-lib.cpp.o │ │ │ │ ├── libdetection_based_tracker.dir │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── cpp │ │ │ │ │ │ └── libdetection_based_tracker.cpp.o │ │ │ │ └── TargetDirectories.txt │ │ │ ├── .ninja_deps │ │ │ ├── .ninja_log │ │ │ ├── cmake_build_command.txt │ │ │ ├── cmake_build_output.txt │ │ │ └── cmake_install.cmake │ │ ├── x86_64 │ │ │ ├── CMakeFiles │ │ │ │ ├── cmake.check_cache │ │ │ │ ├── 3.6.0-rc2 │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ └── CMakeSystem.cmake │ │ │ │ └── TargetDirectories.txt │ │ │ ├── cmake_build_command.txt │ │ │ ├── cmake_build_output.txt │ │ │ └── cmake_install.cmake │ │ ├── arm64-v8a │ │ │ ├── CMakeFiles │ │ │ │ ├── cmake.check_cache │ │ │ │ ├── 3.6.0-rc2 │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ └── CMakeSystem.cmake │ │ │ │ └── TargetDirectories.txt │ │ │ ├── cmake_build_command.txt │ │ │ ├── cmake_build_output.txt │ │ │ └── cmake_install.cmake │ │ └── armeabi-v7a │ │ │ ├── CMakeFiles │ │ │ ├── cmake.check_cache │ │ │ ├── 3.6.0-rc2 │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ └── CMakeSystem.cmake │ │ │ └── TargetDirectories.txt │ │ │ ├── cmake_build_command.txt │ │ │ ├── cmake_build_output.txt │ │ │ └── cmake_install.cmake │ │ └── release │ │ ├── mips │ │ ├── CMakeFiles │ │ │ ├── cmake.check_cache │ │ │ ├── 3.6.0-rc2 │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ └── CMakeSystem.cmake │ │ │ └── TargetDirectories.txt │ │ ├── cmake_build_command.txt │ │ ├── cmake_build_output.txt │ │ └── cmake_install.cmake │ │ ├── mips64 │ │ ├── CMakeFiles │ │ │ ├── cmake.check_cache │ │ │ ├── 3.6.0-rc2 │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ └── CMakeSystem.cmake │ │ │ └── TargetDirectories.txt │ │ ├── cmake_build_command.txt │ │ ├── cmake_build_output.txt │ │ └── cmake_install.cmake │ │ ├── x86 │ │ ├── CMakeFiles │ │ │ ├── cmake.check_cache │ │ │ ├── 3.6.0-rc2 │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ └── CMakeSystem.cmake │ │ │ └── TargetDirectories.txt │ │ ├── cmake_build_command.txt │ │ ├── cmake_build_output.txt │ │ └── cmake_install.cmake │ │ ├── x86_64 │ │ ├── CMakeFiles │ │ │ ├── cmake.check_cache │ │ │ ├── 3.6.0-rc2 │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ └── CMakeSystem.cmake │ │ │ └── TargetDirectories.txt │ │ ├── cmake_build_command.txt │ │ ├── cmake_build_output.txt │ │ └── cmake_install.cmake │ │ ├── arm64-v8a │ │ ├── CMakeFiles │ │ │ ├── cmake.check_cache │ │ │ ├── 3.6.0-rc2 │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ └── CMakeSystem.cmake │ │ │ └── TargetDirectories.txt │ │ ├── cmake_build_command.txt │ │ ├── cmake_build_output.txt │ │ └── cmake_install.cmake │ │ ├── armeabi-v7a │ │ ├── CMakeFiles │ │ │ ├── cmake.check_cache │ │ │ ├── 3.6.0-rc2 │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ └── CMakeSystem.cmake │ │ │ └── TargetDirectories.txt │ │ ├── cmake_build_command.txt │ │ ├── cmake_build_output.txt │ │ └── cmake_install.cmake │ │ └── armeabi │ │ ├── CMakeFiles │ │ ├── cmake.check_cache │ │ ├── 3.6.0-rc2 │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ └── CMakeSystem.cmake │ │ └── TargetDirectories.txt │ │ ├── cmake_build_command.txt │ │ ├── cmake_build_output.txt │ │ └── cmake_install.cmake ├── proguard-rules.pro ├── CMakeLists.txt └── build.gradle ├── _config.yml ├── settings.gradle ├── openCVLibrary320 ├── build │ ├── intermediates │ │ ├── incremental │ │ │ ├── compileDebugAndroidTestAidl │ │ │ │ └── dependency.store │ │ │ ├── packageDebugResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ ├── merged.dir │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ └── merger.xml │ │ │ ├── packageReleaseResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ ├── merged.dir │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugAndroidTestResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ ├── merged.dir │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ └── merger.xml │ │ │ ├── compileDebugAidl │ │ │ │ └── dependency.store │ │ │ ├── compileReleaseAidl │ │ │ │ └── dependency.store │ │ │ ├── mergeDebugShaders │ │ │ │ └── merger.xml │ │ │ ├── mergeReleaseShaders │ │ │ │ └── merger.xml │ │ │ ├── mergeReleaseJniLibFolders │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugAssets │ │ │ │ └── merger.xml │ │ │ └── mergeReleaseAssets │ │ │ │ └── merger.xml │ │ ├── incremental-safeguard │ │ │ └── release │ │ │ │ └── tag.txt │ │ ├── bundles │ │ │ ├── release │ │ │ │ ├── classes.jar │ │ │ │ ├── R.txt │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── res │ │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ └── debug │ │ │ │ ├── R.txt │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── values.xml │ │ ├── classes │ │ │ └── release │ │ │ │ └── org │ │ │ │ └── opencv │ │ │ │ ├── R.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$id.class │ │ │ │ ├── ml │ │ │ │ ├── EM.class │ │ │ │ ├── Ml.class │ │ │ │ ├── SVM.class │ │ │ │ ├── Boost.class │ │ │ │ ├── ANN_MLP.class │ │ │ │ ├── DTrees.class │ │ │ │ ├── KNearest.class │ │ │ │ ├── RTrees.class │ │ │ │ ├── SVMSGD.class │ │ │ │ ├── StatModel.class │ │ │ │ ├── TrainData.class │ │ │ │ ├── LogisticRegression.class │ │ │ │ └── NormalBayesClassifier.class │ │ │ │ ├── core │ │ │ │ ├── Mat.class │ │ │ │ ├── Core.class │ │ │ │ ├── CvType.class │ │ │ │ ├── DMatch.class │ │ │ │ ├── Point.class │ │ │ │ ├── Point3.class │ │ │ │ ├── Range.class │ │ │ │ ├── Rect.class │ │ │ │ ├── Scalar.class │ │ │ │ ├── Size.class │ │ │ │ ├── KeyPoint.class │ │ │ │ ├── MatOfInt.class │ │ │ │ ├── Algorithm.class │ │ │ │ ├── CvException.class │ │ │ │ ├── MatOfByte.class │ │ │ │ ├── MatOfDMatch.class │ │ │ │ ├── MatOfDouble.class │ │ │ │ ├── MatOfFloat.class │ │ │ │ ├── MatOfFloat4.class │ │ │ │ ├── MatOfFloat6.class │ │ │ │ ├── MatOfInt4.class │ │ │ │ ├── MatOfPoint.class │ │ │ │ ├── MatOfPoint3.class │ │ │ │ ├── MatOfRect.class │ │ │ │ ├── RotatedRect.class │ │ │ │ ├── TickMeter.class │ │ │ │ ├── MatOfKeyPoint.class │ │ │ │ ├── MatOfPoint2f.class │ │ │ │ ├── MatOfPoint3f.class │ │ │ │ ├── TermCriteria.class │ │ │ │ └── Core$MinMaxLocResult.class │ │ │ │ ├── BuildConfig.class │ │ │ │ ├── R$styleable.class │ │ │ │ ├── photo │ │ │ │ ├── Photo.class │ │ │ │ ├── Tonemap.class │ │ │ │ ├── AlignMTB.class │ │ │ │ ├── CalibrateCRF.class │ │ │ │ ├── MergeDebevec.class │ │ │ │ ├── MergeMertens.class │ │ │ │ ├── TonemapDrago.class │ │ │ │ ├── AlignExposures.class │ │ │ │ ├── MergeExposures.class │ │ │ │ ├── MergeRobertson.class │ │ │ │ ├── TonemapDurand.class │ │ │ │ ├── TonemapMantiuk.class │ │ │ │ ├── TonemapReinhard.class │ │ │ │ ├── CalibrateDebevec.class │ │ │ │ └── CalibrateRobertson.class │ │ │ │ ├── video │ │ │ │ ├── Video.class │ │ │ │ ├── KalmanFilter.class │ │ │ │ ├── DenseOpticalFlow.class │ │ │ │ ├── SparseOpticalFlow.class │ │ │ │ ├── BackgroundSubtractor.class │ │ │ │ ├── DualTVL1OpticalFlow.class │ │ │ │ ├── FarnebackOpticalFlow.class │ │ │ │ ├── SparsePyrLKOpticalFlow.class │ │ │ │ ├── BackgroundSubtractorKNN.class │ │ │ │ └── BackgroundSubtractorMOG2.class │ │ │ │ ├── android │ │ │ │ ├── Utils.class │ │ │ │ ├── FpsMeter.class │ │ │ │ ├── OpenCVLoader.class │ │ │ │ ├── StaticHelper.class │ │ │ │ ├── Camera2Renderer.class │ │ │ │ ├── CameraRenderer.class │ │ │ │ ├── JavaCameraView.class │ │ │ │ ├── AsyncServiceHelper.class │ │ │ │ ├── BaseLoaderCallback.class │ │ │ │ ├── Camera2Renderer$1.class │ │ │ │ ├── Camera2Renderer$2.class │ │ │ │ ├── JavaCameraView$1.class │ │ │ │ ├── AsyncServiceHelper$1.class │ │ │ │ ├── AsyncServiceHelper$2.class │ │ │ │ ├── AsyncServiceHelper$3.class │ │ │ │ ├── BaseLoaderCallback$1.class │ │ │ │ ├── BaseLoaderCallback$2.class │ │ │ │ ├── BaseLoaderCallback$3.class │ │ │ │ ├── BaseLoaderCallback$4.class │ │ │ │ ├── BaseLoaderCallback$5.class │ │ │ │ ├── BaseLoaderCallback$6.class │ │ │ │ ├── BaseLoaderCallback$7.class │ │ │ │ ├── CameraBridgeViewBase.class │ │ │ │ ├── CameraGLRendererBase.class │ │ │ │ ├── CameraGLSurfaceView.class │ │ │ │ ├── AsyncServiceHelper$3$1.class │ │ │ │ ├── AsyncServiceHelper$3$2.class │ │ │ │ ├── CameraBridgeViewBase$1.class │ │ │ │ ├── LoaderCallbackInterface.class │ │ │ │ ├── InstallCallbackInterface.class │ │ │ │ ├── JavaCameraView$CameraWorker.class │ │ │ │ ├── JavaCameraView$JavaCameraFrame.class │ │ │ │ ├── CameraBridgeViewBase$CvCameraViewFrame.class │ │ │ │ ├── CameraBridgeViewBase$ListItemAccessor.class │ │ │ │ ├── JavaCameraView$JavaCameraSizeAccessor.class │ │ │ │ ├── CameraBridgeViewBase$CvCameraViewListener.class │ │ │ │ ├── CameraBridgeViewBase$CvCameraViewListener2.class │ │ │ │ ├── CameraGLSurfaceView$CameraTextureListener.class │ │ │ │ └── CameraBridgeViewBase$CvCameraViewListenerAdapter.class │ │ │ │ ├── imgproc │ │ │ │ ├── CLAHE.class │ │ │ │ ├── Imgproc.class │ │ │ │ ├── Moments.class │ │ │ │ ├── Subdiv2D.class │ │ │ │ └── LineSegmentDetector.class │ │ │ │ ├── calib3d │ │ │ │ ├── Calib3d.class │ │ │ │ ├── StereoBM.class │ │ │ │ ├── StereoSGBM.class │ │ │ │ └── StereoMatcher.class │ │ │ │ ├── features2d │ │ │ │ ├── AKAZE.class │ │ │ │ ├── BRISK.class │ │ │ │ ├── KAZE.class │ │ │ │ ├── MSER.class │ │ │ │ ├── ORB.class │ │ │ │ ├── Params.class │ │ │ │ ├── BFMatcher.class │ │ │ │ ├── BOWTrainer.class │ │ │ │ ├── Feature2D.class │ │ │ │ ├── Features2d.class │ │ │ │ ├── GFTTDetector.class │ │ │ │ ├── FeatureDetector.class │ │ │ │ ├── BOWKMeansTrainer.class │ │ │ │ ├── DescriptorMatcher.class │ │ │ │ ├── FlannBasedMatcher.class │ │ │ │ ├── AgastFeatureDetector.class │ │ │ │ ├── DescriptorExtractor.class │ │ │ │ ├── FastFeatureDetector.class │ │ │ │ └── BOWImgDescriptorExtractor.class │ │ │ │ ├── utils │ │ │ │ └── Converters.class │ │ │ │ ├── videoio │ │ │ │ ├── Videoio.class │ │ │ │ ├── VideoCapture.class │ │ │ │ └── VideoWriter.class │ │ │ │ ├── imgcodecs │ │ │ │ └── Imgcodecs.class │ │ │ │ ├── objdetect │ │ │ │ ├── Objdetect.class │ │ │ │ ├── HOGDescriptor.class │ │ │ │ ├── CascadeClassifier.class │ │ │ │ └── BaseCascadeClassifier.class │ │ │ │ └── engine │ │ │ │ ├── OpenCVEngineInterface.class │ │ │ │ ├── OpenCVEngineInterface$Stub.class │ │ │ │ └── OpenCVEngineInterface$Stub$Proxy.class │ │ ├── res │ │ │ ├── resources-debug-androidTest.ap_ │ │ │ └── merged │ │ │ │ └── androidTest │ │ │ │ └── debug │ │ │ │ └── values │ │ │ │ └── values.xml │ │ ├── blame │ │ │ └── res │ │ │ │ └── androidTest │ │ │ │ └── debug │ │ │ │ └── multi │ │ │ │ └── values.json │ │ ├── symbols │ │ │ └── androidTest │ │ │ │ └── debug │ │ │ │ └── R.txt │ │ ├── manifests │ │ │ └── aapt │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── release │ │ │ │ └── AndroidManifest.xml │ │ └── manifest │ │ │ └── androidTest │ │ │ └── debug │ │ │ └── AndroidManifest.xml │ ├── outputs │ │ └── aar │ │ │ ├── openCVLibrary320-debug.aar │ │ │ └── openCVLibrary320-release.aar │ └── generated │ │ └── source │ │ ├── buildConfig │ │ ├── release │ │ │ └── org │ │ │ │ └── opencv │ │ │ │ └── BuildConfig.java │ │ ├── debug │ │ │ └── org │ │ │ │ └── opencv │ │ │ │ └── BuildConfig.java │ │ └── androidTest │ │ │ └── debug │ │ │ └── org │ │ │ └── opencv │ │ │ └── test │ │ │ └── BuildConfig.java │ │ └── r │ │ └── androidTest │ │ └── debug │ │ └── org │ │ └── opencv │ │ └── R.java ├── lint.xml ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── org │ │ │ └── opencv │ │ │ ├── core │ │ │ ├── CvException.java │ │ │ ├── DMatch.java │ │ │ ├── Point.java │ │ │ ├── Algorithm.java │ │ │ ├── Size.java │ │ │ └── Point3.java │ │ │ ├── ml │ │ │ └── Ml.java │ │ │ ├── objdetect │ │ │ ├── BaseCascadeClassifier.java │ │ │ └── Objdetect.java │ │ │ ├── android │ │ │ ├── InstallCallbackInterface.java │ │ │ └── LoaderCallbackInterface.java │ │ │ ├── photo │ │ │ ├── CalibrateCRF.java │ │ │ ├── MergeExposures.java │ │ │ ├── AlignExposures.java │ │ │ ├── Tonemap.java │ │ │ ├── MergeDebevec.java │ │ │ └── MergeRobertson.java │ │ │ ├── video │ │ │ ├── DenseOpticalFlow.java │ │ │ └── SparseOpticalFlow.java │ │ │ └── features2d │ │ │ ├── FlannBasedMatcher.java │ │ │ └── BFMatcher.java │ │ ├── res │ │ └── values │ │ │ └── attrs.xml │ │ └── aidl │ │ └── org │ │ └── opencv │ │ └── engine │ │ └── OpenCVEngineInterface.aidl └── build.gradle ├── images ├── LOGO.png └── logo.jpg ├── .idea ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── modules.xml ├── runConfigurations.xml ├── gradle.xml └── compiler.xml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .gitignore └── gradle.properties /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | include ':openCVLibrary320' 3 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /images/LOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/images/LOGO.png -------------------------------------------------------------------------------- /images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/images/logo.jpg -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/incremental-safeguard/release/tag.txt: -------------------------------------------------------------------------------- 1 | incremental task execution -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Maremat 3 | 4 | -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/incremental/packageDebugResources/compile-file-map.properties: -------------------------------------------------------------------------------- 1 | #Sat Feb 25 16:25:05 IRST 2017 2 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/incremental/packageReleaseResources/compile-file-map.properties: -------------------------------------------------------------------------------- 1 | #Sat Feb 25 16:23:58 IRST 2017 2 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties: -------------------------------------------------------------------------------- 1 | #Sat Feb 25 16:25:05 IRST 2017 2 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/x86/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | /app/src/main/jniLibs/* -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/mips/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/mips64/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/x86_64/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/mips/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/mips64/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/x86/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/x86_64/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/arm64-v8a/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/armeabi-v7a/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/arm64-v8a/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/armeabi-v7a/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/mips64/.ninja_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/debug/mips64/.ninja_deps -------------------------------------------------------------------------------- /openCVLibrary320/build/outputs/aar/openCVLibrary320-debug.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/outputs/aar/openCVLibrary320-debug.aar -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /openCVLibrary320/build/outputs/aar/openCVLibrary320-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/outputs/aar/openCVLibrary320-release.aar -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/bundles/release/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/bundles/release/classes.jar -------------------------------------------------------------------------------- /app/src/main/cpp/native-lib.h: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | 4 | 5 | extern "C" 6 | { 7 | JNIEXPORT jstring JNICALL 8 | Java_ir_whiteapp_maremat_Inpainting_test(JNIEnv *env, jclass type, jint a); 9 | } -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/R.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/res/resources-debug-androidTest.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/res/resources-debug-androidTest.ap_ -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/R$attr.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/R$id.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/ml/EM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/ml/EM.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/ml/Ml.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/ml/Ml.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/ml/SVM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/ml/SVM.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/Mat.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/Mat.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/ml/Boost.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/ml/Boost.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/BuildConfig.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/R$styleable.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/Core.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/Core.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/CvType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/CvType.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/DMatch.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/DMatch.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/Point.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/Point.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/Point3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/Point3.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/Range.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/Range.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/Rect.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/Rect.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/Scalar.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/Scalar.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/Size.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/Size.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/ml/ANN_MLP.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/ml/ANN_MLP.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/ml/DTrees.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/ml/DTrees.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/ml/KNearest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/ml/KNearest.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/ml/RTrees.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/ml/RTrees.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/ml/SVMSGD.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/ml/SVMSGD.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/Photo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/Photo.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/video/Video.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/video/Video.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/Utils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/Utils.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/KeyPoint.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/KeyPoint.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfInt.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfInt.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/imgproc/CLAHE.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/imgproc/CLAHE.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/ml/StatModel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/ml/StatModel.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/ml/TrainData.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/ml/TrainData.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/Tonemap.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/Tonemap.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/FpsMeter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/FpsMeter.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/calib3d/Calib3d.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/calib3d/Calib3d.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/calib3d/StereoBM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/calib3d/StereoBM.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/Algorithm.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/Algorithm.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/CvException.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/CvException.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfByte.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfByte.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfDMatch.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfDMatch.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfDouble.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfDouble.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfFloat.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfFloat.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfFloat4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfFloat4.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfFloat6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfFloat6.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfInt4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfInt4.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfPoint.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfPoint.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfPoint3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfPoint3.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfRect.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfRect.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/RotatedRect.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/RotatedRect.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/TickMeter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/TickMeter.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/AKAZE.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/AKAZE.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/BRISK.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/BRISK.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/KAZE.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/KAZE.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/MSER.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/MSER.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/ORB.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/ORB.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/imgproc/Imgproc.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/imgproc/Imgproc.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/imgproc/Moments.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/imgproc/Moments.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/imgproc/Subdiv2D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/imgproc/Subdiv2D.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/AlignMTB.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/AlignMTB.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/utils/Converters.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/utils/Converters.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/videoio/Videoio.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/videoio/Videoio.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/calib3d/StereoSGBM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/calib3d/StereoSGBM.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfKeyPoint.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfKeyPoint.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfPoint2f.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfPoint2f.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfPoint3f.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/MatOfPoint3f.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/TermCriteria.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/TermCriteria.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/Params.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/Params.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/CalibrateCRF.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/CalibrateCRF.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/MergeDebevec.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/MergeDebevec.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/MergeMertens.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/MergeMertens.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/TonemapDrago.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/TonemapDrago.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/video/KalmanFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/video/KalmanFilter.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/OpenCVLoader.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/OpenCVLoader.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/StaticHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/StaticHelper.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/calib3d/StereoMatcher.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/calib3d/StereoMatcher.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/BFMatcher.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/BFMatcher.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/BOWTrainer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/BOWTrainer.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/Feature2D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/Feature2D.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/Features2d.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/Features2d.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/imgcodecs/Imgcodecs.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/imgcodecs/Imgcodecs.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/ml/LogisticRegression.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/ml/LogisticRegression.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/objdetect/Objdetect.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/objdetect/Objdetect.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/AlignExposures.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/AlignExposures.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/MergeExposures.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/MergeExposures.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/MergeRobertson.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/MergeRobertson.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/TonemapDurand.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/TonemapDurand.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/TonemapMantiuk.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/TonemapMantiuk.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/TonemapReinhard.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/TonemapReinhard.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/videoio/VideoCapture.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/videoio/VideoCapture.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/videoio/VideoWriter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/videoio/VideoWriter.class -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/x86/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/debug/x86/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/Camera2Renderer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/Camera2Renderer.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/CameraRenderer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/CameraRenderer.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/JavaCameraView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/JavaCameraView.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/GFTTDetector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/GFTTDetector.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/objdetect/HOGDescriptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/objdetect/HOGDescriptor.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/CalibrateDebevec.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/CalibrateDebevec.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/video/DenseOpticalFlow.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/video/DenseOpticalFlow.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/video/SparseOpticalFlow.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/video/SparseOpticalFlow.class -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/mips/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/debug/mips/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/mips/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/debug/mips/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/mips64/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/debug/mips64/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/x86/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/debug/x86/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/x86_64/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/debug/x86_64/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/mips/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/release/mips/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/x86/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/release/x86/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/Camera2Renderer$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/Camera2Renderer$1.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/Camera2Renderer$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/Camera2Renderer$2.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/JavaCameraView$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/JavaCameraView$1.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/core/Core$MinMaxLocResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/core/Core$MinMaxLocResult.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/FeatureDetector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/FeatureDetector.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/ml/NormalBayesClassifier.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/ml/NormalBayesClassifier.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/CalibrateRobertson.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/photo/CalibrateRobertson.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/video/BackgroundSubtractor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/video/BackgroundSubtractor.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/video/DualTVL1OpticalFlow.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/video/DualTVL1OpticalFlow.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/video/FarnebackOpticalFlow.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/video/FarnebackOpticalFlow.class -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/mips64/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/debug/mips64/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/x86_64/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/debug/x86_64/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/mips/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/release/mips/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/mips64/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/release/mips64/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/x86/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/release/x86/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/x86_64/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/release/x86_64/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper$1.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper$2.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper$3.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$1.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$2.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$3.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$4.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$5.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$6.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$7.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/CameraGLRendererBase.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/CameraGLRendererBase.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/CameraGLSurfaceView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/CameraGLSurfaceView.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/engine/OpenCVEngineInterface.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/engine/OpenCVEngineInterface.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/BOWKMeansTrainer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/BOWKMeansTrainer.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/DescriptorMatcher.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/DescriptorMatcher.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/FlannBasedMatcher.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/FlannBasedMatcher.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/imgproc/LineSegmentDetector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/imgproc/LineSegmentDetector.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/objdetect/CascadeClassifier.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/objdetect/CascadeClassifier.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/video/SparsePyrLKOpticalFlow.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/video/SparsePyrLKOpticalFlow.class -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/arm64-v8a/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/debug/arm64-v8a/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/arm64-v8a/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/debug/arm64-v8a/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/armeabi-v7a/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/debug/armeabi-v7a/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/mips64/CMakeFiles/native-lib.dir/src/main/cpp/native-lib.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/debug/mips64/CMakeFiles/native-lib.dir/src/main/cpp/native-lib.cpp.o -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/arm64-v8a/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/release/arm64-v8a/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/mips64/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/release/mips64/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/x86_64/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/release/x86_64/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper$3$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper$3$1.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper$3$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper$3$2.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$1.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/LoaderCallbackInterface.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/LoaderCallbackInterface.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/AgastFeatureDetector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/AgastFeatureDetector.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/DescriptorExtractor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/DescriptorExtractor.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/FastFeatureDetector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/FastFeatureDetector.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/objdetect/BaseCascadeClassifier.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/objdetect/BaseCascadeClassifier.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/video/BackgroundSubtractorKNN.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/video/BackgroundSubtractorKNN.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/video/BackgroundSubtractorMOG2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/video/BackgroundSubtractorMOG2.class -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/armeabi-v7a/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/debug/armeabi-v7a/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/arm64-v8a/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/release/arm64-v8a/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/armeabi-v7a/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/release/armeabi-v7a/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/InstallCallbackInterface.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/InstallCallbackInterface.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/engine/OpenCVEngineInterface$Stub.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/engine/OpenCVEngineInterface$Stub.class -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/armeabi-v7a/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/release/armeabi-v7a/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/JavaCameraView$CameraWorker.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/JavaCameraView$CameraWorker.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/BOWImgDescriptorExtractor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/features2d/BOWImgDescriptorExtractor.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/JavaCameraView$JavaCameraFrame.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/JavaCameraView$JavaCameraFrame.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/blame/res/androidTest/debug/multi/values.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "outputFile": "G:\\AR\\Maremat\\openCVLibrary320\\build\\intermediates\\incremental\\mergeDebugAndroidTestResources\\merged.dir\\values\\values.xml", 4 | "map": [] 5 | } 6 | ] -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/engine/OpenCVEngineInterface$Stub$Proxy.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/engine/OpenCVEngineInterface$Stub$Proxy.class -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Dec 28 10:00:20 PST 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 7 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/incremental/compileDebugAidl/dependency.store: -------------------------------------------------------------------------------- 1 | pYG:\AR\Maremat\openCVLibrary320\src\main\aidl\org\opencv\engine\OpenCVEngineInterface.aidlsmG:\AR\Maremat\openCVLibrary320\build\generated\source\aidl\debug\org\opencv\engine\OpenCVEngineInterface.java -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$CvCameraViewFrame.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$CvCameraViewFrame.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$ListItemAccessor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$ListItemAccessor.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/JavaCameraView$JavaCameraSizeAccessor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/JavaCameraView$JavaCameraSizeAccessor.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/incremental/compileReleaseAidl/dependency.store: -------------------------------------------------------------------------------- 1 | pYG:\AR\Maremat\openCVLibrary320\src\main\aidl\org\opencv\engine\OpenCVEngineInterface.aidlsoG:\AR\Maremat\openCVLibrary320\build\generated\source\aidl\release\org\opencv\engine\OpenCVEngineInterface.java -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$CvCameraViewListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$CvCameraViewListener.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$CvCameraViewListener2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$CvCameraViewListener2.class -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/CameraGLSurfaceView$CameraTextureListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/CameraGLSurfaceView$CameraTextureListener.class -------------------------------------------------------------------------------- /app/src/main/java/ir/whiteapp/maremat/Inpainting.java: -------------------------------------------------------------------------------- 1 | package ir.whiteapp.maremat; 2 | 3 | /** 4 | * Created by mehdi akbarian on 2017-02-26. 5 | * profile: http://ir.linkedin.com/in/mehdiakbarian 6 | */ 7 | 8 | public class Inpainting { 9 | 10 | public native static String test(int a); 11 | } 12 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$CvCameraViewListenerAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/openCVLibrary320/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$CvCameraViewListenerAdapter.class -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/mips64/CMakeFiles/libdetection_based_tracker.dir/src/main/cpp/libdetection_based_tracker.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbn/opencv_android_setup_tutorial/HEAD/app/.externalNativeBuild/cmake/debug/mips64/CMakeFiles/libdetection_based_tracker.dir/src/main/cpp/libdetection_based_tracker.cpp.o -------------------------------------------------------------------------------- /openCVLibrary320/lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/incremental/mergeDebugShaders/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/incremental/mergeReleaseShaders/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /openCVLibrary320/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/bundles/debug/R.txt: -------------------------------------------------------------------------------- 1 | int attr camera_id 0x7f010001 2 | int attr show_fps 0x7f010000 3 | int id any 0x7f020000 4 | int id back 0x7f020001 5 | int id front 0x7f020002 6 | int[] styleable CameraBridgeViewBase { 0x7f010000, 0x7f010001 } 7 | int styleable CameraBridgeViewBase_camera_id 1 8 | int styleable CameraBridgeViewBase_show_fps 0 9 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/bundles/release/R.txt: -------------------------------------------------------------------------------- 1 | int attr camera_id 0x7f010001 2 | int attr show_fps 0x7f010000 3 | int id any 0x7f020000 4 | int id back 0x7f020001 5 | int id front 0x7f020002 6 | int[] styleable CameraBridgeViewBase { 0x7f010000, 0x7f010001 } 7 | int styleable CameraBridgeViewBase_camera_id 1 8 | int styleable CameraBridgeViewBase_show_fps 0 9 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/mips64/.ninja_log: -------------------------------------------------------------------------------- 1 | # ninja log v5 2 | 1 1382 0 CMakeFiles/native-lib.dir/src/main/cpp/native-lib.cpp.o 2d2e512ff6f81c9c 3 | 1383 1468 0 ../../../../build/intermediates/cmake/debug/obj/mips64/libnative-lib.so a316d81181d05c73 4 | 0 606 0 CMakeFiles/libdetection_based_tracker.dir/src/main/cpp/libdetection_based_tracker.cpp.o baff993c4c5a4746 5 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/symbols/androidTest/debug/R.txt: -------------------------------------------------------------------------------- 1 | int attr camera_id 0x7f010001 2 | int attr show_fps 0x7f010000 3 | int id any 0x7f020000 4 | int id back 0x7f020001 5 | int id front 0x7f020002 6 | int[] styleable CameraBridgeViewBase { 0x7f010000, 0x7f010001 } 7 | int styleable CameraBridgeViewBase_camera_id 1 8 | int styleable CameraBridgeViewBase_show_fps 0 9 | -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/bundles/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/bundles/release/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/incremental/mergeDebugAssets/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/x86/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/x86/CMakeFiles/native-lib.dir 2 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/x86/CMakeFiles/edit_cache.dir 3 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/x86/CMakeFiles/libdetection_based_tracker.dir 4 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/x86/CMakeFiles/rebuild_cache.dir 5 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/manifests/aapt/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/manifests/aapt/release/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/mips/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/mips/CMakeFiles/native-lib.dir 2 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/mips/CMakeFiles/edit_cache.dir 3 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/mips/CMakeFiles/libdetection_based_tracker.dir 4 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/mips/CMakeFiles/rebuild_cache.dir 5 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/incremental/mergeReleaseAssets/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/x86/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/x86/CMakeFiles/native-lib.dir 2 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/x86/CMakeFiles/edit_cache.dir 3 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/x86/CMakeFiles/libdetection_based_tracker.dir 4 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/x86/CMakeFiles/rebuild_cache.dir 5 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/mips64/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/mips64/CMakeFiles/native-lib.dir 2 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/mips64/CMakeFiles/edit_cache.dir 3 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/mips64/CMakeFiles/libdetection_based_tracker.dir 4 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/mips64/CMakeFiles/rebuild_cache.dir 5 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/x86_64/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/x86_64/CMakeFiles/native-lib.dir 2 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/x86_64/CMakeFiles/edit_cache.dir 3 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/x86_64/CMakeFiles/libdetection_based_tracker.dir 4 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/x86_64/CMakeFiles/rebuild_cache.dir 5 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/mips/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/mips/CMakeFiles/native-lib.dir 2 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/mips/CMakeFiles/edit_cache.dir 3 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/mips/CMakeFiles/libdetection_based_tracker.dir 4 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/mips/CMakeFiles/rebuild_cache.dir 5 | -------------------------------------------------------------------------------- /openCVLibrary320/src/main/java/org/opencv/core/CvException.java: -------------------------------------------------------------------------------- 1 | package org.opencv.core; 2 | 3 | public class CvException extends RuntimeException { 4 | 5 | private static final long serialVersionUID = 1L; 6 | 7 | public CvException(String msg) { 8 | super(msg); 9 | } 10 | 11 | @Override 12 | public String toString() { 13 | return "CvException [" + super.toString() + "]"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/native-lib.dir 2 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/edit_cache.dir 3 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/libdetection_based_tracker.dir 4 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/rebuild_cache.dir 5 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/bundles/debug/res/values/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/mips64/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/mips64/CMakeFiles/native-lib.dir 2 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/mips64/CMakeFiles/edit_cache.dir 3 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/mips64/CMakeFiles/libdetection_based_tracker.dir 4 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/mips64/CMakeFiles/rebuild_cache.dir 5 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/x86_64/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/x86_64/CMakeFiles/native-lib.dir 2 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/x86_64/CMakeFiles/edit_cache.dir 3 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/x86_64/CMakeFiles/libdetection_based_tracker.dir 4 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/x86_64/CMakeFiles/rebuild_cache.dir 5 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/bundles/release/res/values/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/arm64-v8a/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/arm64-v8a/CMakeFiles/native-lib.dir 2 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/arm64-v8a/CMakeFiles/edit_cache.dir 3 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/arm64-v8a/CMakeFiles/libdetection_based_tracker.dir 4 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/arm64-v8a/CMakeFiles/rebuild_cache.dir 5 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/native-lib.dir 2 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/edit_cache.dir 3 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/libdetection_based_tracker.dir 4 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/rebuild_cache.dir 5 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/res/merged/androidTest/debug/values/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/armeabi-v7a/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/armeabi-v7a/CMakeFiles/native-lib.dir 2 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/armeabi-v7a/CMakeFiles/edit_cache.dir 3 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/armeabi-v7a/CMakeFiles/libdetection_based_tracker.dir 4 | G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/armeabi-v7a/CMakeFiles/rebuild_cache.dir 5 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/arm64-v8a/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/arm64-v8a/CMakeFiles/native-lib.dir 2 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/arm64-v8a/CMakeFiles/edit_cache.dir 3 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/arm64-v8a/CMakeFiles/libdetection_based_tracker.dir 4 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/arm64-v8a/CMakeFiles/rebuild_cache.dir 5 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/armeabi-v7a/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/armeabi-v7a/CMakeFiles/native-lib.dir 2 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/armeabi-v7a/CMakeFiles/edit_cache.dir 3 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/armeabi-v7a/CMakeFiles/libdetection_based_tracker.dir 4 | G:/AR/Maremat/app/.externalNativeBuild/cmake/release/armeabi-v7a/CMakeFiles/rebuild_cache.dir 5 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/incremental/packageReleaseResources/merged.dir/values/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /openCVLibrary320/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- 1 | #include "native-lib.h" 2 | #include 3 | #include 4 | #include 5 | #include 6 | 7 | 8 | 9 | using namespace std; 10 | using namespace cv; 11 | 12 | JNIEXPORT jstring JNICALL 13 | Java_ir_whiteapp_maremat_Inpainting_test(JNIEnv *env, jclass type, jint a) { 14 | 15 | // TODO 16 | 17 | 18 | return env->NewStringUTF("hiiii"); 19 | } 20 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /openCVLibrary320/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.library' 2 | android { 3 | compileSdkVersion 21 4 | buildToolsVersion "25.0.0" 5 | 6 | defaultConfig { 7 | minSdkVersion 15 8 | targetSdkVersion 25 9 | } 10 | 11 | buildTypes { 12 | release { 13 | minifyEnabled false 14 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 15 | } 16 | } 17 | } 18 | 19 | dependencies { 20 | } -------------------------------------------------------------------------------- /openCVLibrary320/src/main/java/org/opencv/ml/Ml.java: -------------------------------------------------------------------------------- 1 | 2 | // 3 | // This file is auto-generated. Please don't modify it! 4 | // 5 | package org.opencv.ml; 6 | 7 | 8 | 9 | public class Ml { 10 | 11 | public static final int 12 | VAR_NUMERICAL = 0, 13 | VAR_ORDERED = 0, 14 | VAR_CATEGORICAL = 1, 15 | TEST_ERROR = 0, 16 | TRAIN_ERROR = 1, 17 | ROW_SAMPLE = 0, 18 | COL_SAMPLE = 1; 19 | 20 | 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/test/java/ir/whiteapp/maremat/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package ir.whiteapp.maremat; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /openCVLibrary320/build/generated/source/buildConfig/release/org/opencv/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Automatically generated file. DO NOT MODIFY 3 | */ 4 | package org.opencv; 5 | 6 | public final class BuildConfig { 7 | public static final boolean DEBUG = false; 8 | public static final String APPLICATION_ID = "org.opencv"; 9 | public static final String BUILD_TYPE = "release"; 10 | public static final String FLAVOR = ""; 11 | public static final int VERSION_CODE = 3200; 12 | public static final String VERSION_NAME = "3.2.0"; 13 | } 14 | -------------------------------------------------------------------------------- /openCVLibrary320/build/generated/source/buildConfig/debug/org/opencv/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Automatically generated file. DO NOT MODIFY 3 | */ 4 | package org.opencv; 5 | 6 | public final class BuildConfig { 7 | public static final boolean DEBUG = Boolean.parseBoolean("true"); 8 | public static final String APPLICATION_ID = "org.opencv"; 9 | public static final String BUILD_TYPE = "debug"; 10 | public static final String FLAVOR = ""; 11 | public static final int VERSION_CODE = 3200; 12 | public static final String VERSION_NAME = "3.2.0"; 13 | } 14 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/mips/CMakeFiles/3.6.0-rc2/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.14393") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.14393") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/android-sdk/cmake/3.6.3155560/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-15") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "15") 11 | set(CMAKE_SYSTEM_PROCESSOR "mips") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/x86/CMakeFiles/3.6.0-rc2/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.14393") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.14393") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/android-sdk/cmake/3.6.3155560/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-15") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "15") 11 | set(CMAKE_SYSTEM_PROCESSOR "i686") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/mips/CMakeFiles/3.6.0-rc2/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.14393") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.14393") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/android-sdk/cmake/3.6.3155560/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-15") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "15") 11 | set(CMAKE_SYSTEM_PROCESSOR "mips") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/x86/CMakeFiles/3.6.0-rc2/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.14393") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.14393") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/android-sdk/cmake/3.6.3155560/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-15") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "15") 11 | set(CMAKE_SYSTEM_PROCESSOR "i686") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/arm64-v8a/CMakeFiles/3.6.0-rc2/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.14393") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.14393") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/android-sdk/cmake/3.6.3155560/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-21") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "21") 11 | set(CMAKE_SYSTEM_PROCESSOR "aarch64") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/3.6.0-rc2/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.14393") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.14393") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/android-sdk/cmake/3.6.3155560/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-15") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "15") 11 | set(CMAKE_SYSTEM_PROCESSOR "armv5te") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/mips64/CMakeFiles/3.6.0-rc2/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.14393") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.14393") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/android-sdk/cmake/3.6.3155560/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-21") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "21") 11 | set(CMAKE_SYSTEM_PROCESSOR "mips64") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/x86_64/CMakeFiles/3.6.0-rc2/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.14393") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.14393") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/android-sdk/cmake/3.6.3155560/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-21") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "21") 11 | set(CMAKE_SYSTEM_PROCESSOR "x86_64") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/3.6.0-rc2/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.14393") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.14393") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/android-sdk/cmake/3.6.3155560/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-15") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "15") 11 | set(CMAKE_SYSTEM_PROCESSOR "armv5te") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/mips64/CMakeFiles/3.6.0-rc2/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.14393") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.14393") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/android-sdk/cmake/3.6.3155560/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-21") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "21") 11 | set(CMAKE_SYSTEM_PROCESSOR "mips64") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/x86_64/CMakeFiles/3.6.0-rc2/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.14393") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.14393") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/android-sdk/cmake/3.6.3155560/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-21") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "21") 11 | set(CMAKE_SYSTEM_PROCESSOR "x86_64") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/armeabi-v7a/CMakeFiles/3.6.0-rc2/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.14393") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.14393") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/android-sdk/cmake/3.6.3155560/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-15") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "15") 11 | set(CMAKE_SYSTEM_PROCESSOR "armv7-a") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/arm64-v8a/CMakeFiles/3.6.0-rc2/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.14393") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.14393") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/android-sdk/cmake/3.6.3155560/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-21") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "21") 11 | set(CMAKE_SYSTEM_PROCESSOR "aarch64") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/armeabi-v7a/CMakeFiles/3.6.0-rc2/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.14393") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.14393") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/android-sdk/cmake/3.6.3155560/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-15") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "15") 11 | set(CMAKE_SYSTEM_PROCESSOR "armv7-a") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /openCVLibrary320/build/generated/source/buildConfig/androidTest/debug/org/opencv/test/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Automatically generated file. DO NOT MODIFY 3 | */ 4 | package org.opencv.test; 5 | 6 | public final class BuildConfig { 7 | public static final boolean DEBUG = Boolean.parseBoolean("true"); 8 | public static final String APPLICATION_ID = "org.opencv.test"; 9 | public static final String BUILD_TYPE = "debug"; 10 | public static final String FLAVOR = ""; 11 | public static final int VERSION_CODE = -1; 12 | public static final String VERSION_NAME = ""; 13 | } 14 | -------------------------------------------------------------------------------- /app/src/main/java/ir/whiteapp/maremat/Main2Activity.java: -------------------------------------------------------------------------------- 1 | package ir.whiteapp.maremat; 2 | 3 | import android.support.v7.app.AppCompatActivity; 4 | import android.os.Bundle; 5 | import android.widget.TextView; 6 | 7 | public class Main2Activity extends AppCompatActivity { 8 | 9 | @Override 10 | protected void onCreate(Bundle savedInstanceState) { 11 | super.onCreate(savedInstanceState); 12 | setContentView(R.layout.activity_main2); 13 | System.loadLibrary("native-lib"); 14 | ((TextView)findViewById(R.id.txt_jni)).setText(Inpainting.test(1)); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/x86/cmake_build_command.txt: -------------------------------------------------------------------------------- 1 | Executable : C:\android-sdk\cmake\3.6.3155560\bin\cmake.exe 2 | arguments : 3 | -HG:\AR\Maremat\app 4 | -BG:\AR\Maremat\app\.externalNativeBuild\cmake\debug\x86 5 | -GAndroid Gradle - Ninja 6 | -DANDROID_ABI=x86 7 | -DANDROID_NDK=C:\work\android-ndk-r12b 8 | -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=G:\AR\Maremat\app\build\intermediates\cmake\debug\obj\x86 9 | -DCMAKE_BUILD_TYPE=Debug 10 | -DCMAKE_MAKE_PROGRAM=C:\android-sdk\cmake\3.6.3155560\bin\ninja.exe 11 | -DCMAKE_TOOLCHAIN_FILE=C:\android-sdk\cmake\3.6.3155560\android.toolchain.cmake 12 | -DANDROID_NATIVE_API_LEVEL=15 13 | -DCMAKE_CXX_FLAGS= 14 | jvmArgs : 15 | 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/mips/cmake_build_command.txt: -------------------------------------------------------------------------------- 1 | Executable : C:\android-sdk\cmake\3.6.3155560\bin\cmake.exe 2 | arguments : 3 | -HG:\AR\Maremat\app 4 | -BG:\AR\Maremat\app\.externalNativeBuild\cmake\debug\mips 5 | -GAndroid Gradle - Ninja 6 | -DANDROID_ABI=mips 7 | -DANDROID_NDK=C:\work\android-ndk-r12b 8 | -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=G:\AR\Maremat\app\build\intermediates\cmake\debug\obj\mips 9 | -DCMAKE_BUILD_TYPE=Debug 10 | -DCMAKE_MAKE_PROGRAM=C:\android-sdk\cmake\3.6.3155560\bin\ninja.exe 11 | -DCMAKE_TOOLCHAIN_FILE=C:\android-sdk\cmake\3.6.3155560\android.toolchain.cmake 12 | -DANDROID_NATIVE_API_LEVEL=15 13 | -DCMAKE_CXX_FLAGS= 14 | jvmArgs : 15 | 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/x86/cmake_build_command.txt: -------------------------------------------------------------------------------- 1 | Executable : C:\android-sdk\cmake\3.6.3155560\bin\cmake.exe 2 | arguments : 3 | -HG:\AR\Maremat\app 4 | -BG:\AR\Maremat\app\.externalNativeBuild\cmake\release\x86 5 | -GAndroid Gradle - Ninja 6 | -DANDROID_ABI=x86 7 | -DANDROID_NDK=C:\work\android-ndk-r12b 8 | -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=G:\AR\Maremat\app\build\intermediates\cmake\release\obj\x86 9 | -DCMAKE_BUILD_TYPE=Release 10 | -DCMAKE_MAKE_PROGRAM=C:\android-sdk\cmake\3.6.3155560\bin\ninja.exe 11 | -DCMAKE_TOOLCHAIN_FILE=C:\android-sdk\cmake\3.6.3155560\android.toolchain.cmake 12 | -DANDROID_NATIVE_API_LEVEL=15 13 | -DCMAKE_CXX_FLAGS= 14 | jvmArgs : 15 | 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/armeabi/cmake_build_command.txt: -------------------------------------------------------------------------------- 1 | Executable : C:\android-sdk\cmake\3.6.3155560\bin\cmake.exe 2 | arguments : 3 | -HG:\AR\Maremat\app 4 | -BG:\AR\Maremat\app\.externalNativeBuild\cmake\debug\armeabi 5 | -GAndroid Gradle - Ninja 6 | -DANDROID_ABI=armeabi 7 | -DANDROID_NDK=C:\work\android-ndk-r12b 8 | -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=G:\AR\Maremat\app\build\intermediates\cmake\debug\obj\armeabi 9 | -DCMAKE_BUILD_TYPE=Debug 10 | -DCMAKE_MAKE_PROGRAM=C:\android-sdk\cmake\3.6.3155560\bin\ninja.exe 11 | -DCMAKE_TOOLCHAIN_FILE=C:\android-sdk\cmake\3.6.3155560\android.toolchain.cmake 12 | -DANDROID_NATIVE_API_LEVEL=15 13 | -DCMAKE_CXX_FLAGS= 14 | jvmArgs : 15 | 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/mips64/cmake_build_command.txt: -------------------------------------------------------------------------------- 1 | Executable : C:\android-sdk\cmake\3.6.3155560\bin\cmake.exe 2 | arguments : 3 | -HG:\AR\Maremat\app 4 | -BG:\AR\Maremat\app\.externalNativeBuild\cmake\debug\mips64 5 | -GAndroid Gradle - Ninja 6 | -DANDROID_ABI=mips64 7 | -DANDROID_NDK=C:\work\android-ndk-r12b 8 | -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=G:\AR\Maremat\app\build\intermediates\cmake\debug\obj\mips64 9 | -DCMAKE_BUILD_TYPE=Debug 10 | -DCMAKE_MAKE_PROGRAM=C:\android-sdk\cmake\3.6.3155560\bin\ninja.exe 11 | -DCMAKE_TOOLCHAIN_FILE=C:\android-sdk\cmake\3.6.3155560\android.toolchain.cmake 12 | -DANDROID_NATIVE_API_LEVEL=21 13 | -DCMAKE_CXX_FLAGS= 14 | jvmArgs : 15 | 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/x86_64/cmake_build_command.txt: -------------------------------------------------------------------------------- 1 | Executable : C:\android-sdk\cmake\3.6.3155560\bin\cmake.exe 2 | arguments : 3 | -HG:\AR\Maremat\app 4 | -BG:\AR\Maremat\app\.externalNativeBuild\cmake\debug\x86_64 5 | -GAndroid Gradle - Ninja 6 | -DANDROID_ABI=x86_64 7 | -DANDROID_NDK=C:\work\android-ndk-r12b 8 | -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=G:\AR\Maremat\app\build\intermediates\cmake\debug\obj\x86_64 9 | -DCMAKE_BUILD_TYPE=Debug 10 | -DCMAKE_MAKE_PROGRAM=C:\android-sdk\cmake\3.6.3155560\bin\ninja.exe 11 | -DCMAKE_TOOLCHAIN_FILE=C:\android-sdk\cmake\3.6.3155560\android.toolchain.cmake 12 | -DANDROID_NATIVE_API_LEVEL=21 13 | -DCMAKE_CXX_FLAGS= 14 | jvmArgs : 15 | 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/mips/cmake_build_command.txt: -------------------------------------------------------------------------------- 1 | Executable : C:\android-sdk\cmake\3.6.3155560\bin\cmake.exe 2 | arguments : 3 | -HG:\AR\Maremat\app 4 | -BG:\AR\Maremat\app\.externalNativeBuild\cmake\release\mips 5 | -GAndroid Gradle - Ninja 6 | -DANDROID_ABI=mips 7 | -DANDROID_NDK=C:\work\android-ndk-r12b 8 | -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=G:\AR\Maremat\app\build\intermediates\cmake\release\obj\mips 9 | -DCMAKE_BUILD_TYPE=Release 10 | -DCMAKE_MAKE_PROGRAM=C:\android-sdk\cmake\3.6.3155560\bin\ninja.exe 11 | -DCMAKE_TOOLCHAIN_FILE=C:\android-sdk\cmake\3.6.3155560\android.toolchain.cmake 12 | -DANDROID_NATIVE_API_LEVEL=15 13 | -DCMAKE_CXX_FLAGS= 14 | jvmArgs : 15 | 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/mips64/cmake_build_command.txt: -------------------------------------------------------------------------------- 1 | Executable : C:\android-sdk\cmake\3.6.3155560\bin\cmake.exe 2 | arguments : 3 | -HG:\AR\Maremat\app 4 | -BG:\AR\Maremat\app\.externalNativeBuild\cmake\release\mips64 5 | -GAndroid Gradle - Ninja 6 | -DANDROID_ABI=mips64 7 | -DANDROID_NDK=C:\work\android-ndk-r12b 8 | -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=G:\AR\Maremat\app\build\intermediates\cmake\release\obj\mips64 9 | -DCMAKE_BUILD_TYPE=Release 10 | -DCMAKE_MAKE_PROGRAM=C:\android-sdk\cmake\3.6.3155560\bin\ninja.exe 11 | -DCMAKE_TOOLCHAIN_FILE=C:\android-sdk\cmake\3.6.3155560\android.toolchain.cmake 12 | -DANDROID_NATIVE_API_LEVEL=21 13 | -DCMAKE_CXX_FLAGS= 14 | jvmArgs : 15 | 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/x86_64/cmake_build_command.txt: -------------------------------------------------------------------------------- 1 | Executable : C:\android-sdk\cmake\3.6.3155560\bin\cmake.exe 2 | arguments : 3 | -HG:\AR\Maremat\app 4 | -BG:\AR\Maremat\app\.externalNativeBuild\cmake\release\x86_64 5 | -GAndroid Gradle - Ninja 6 | -DANDROID_ABI=x86_64 7 | -DANDROID_NDK=C:\work\android-ndk-r12b 8 | -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=G:\AR\Maremat\app\build\intermediates\cmake\release\obj\x86_64 9 | -DCMAKE_BUILD_TYPE=Release 10 | -DCMAKE_MAKE_PROGRAM=C:\android-sdk\cmake\3.6.3155560\bin\ninja.exe 11 | -DCMAKE_TOOLCHAIN_FILE=C:\android-sdk\cmake\3.6.3155560\android.toolchain.cmake 12 | -DANDROID_NATIVE_API_LEVEL=21 13 | -DCMAKE_CXX_FLAGS= 14 | jvmArgs : 15 | 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/arm64-v8a/cmake_build_command.txt: -------------------------------------------------------------------------------- 1 | Executable : C:\android-sdk\cmake\3.6.3155560\bin\cmake.exe 2 | arguments : 3 | -HG:\AR\Maremat\app 4 | -BG:\AR\Maremat\app\.externalNativeBuild\cmake\debug\arm64-v8a 5 | -GAndroid Gradle - Ninja 6 | -DANDROID_ABI=arm64-v8a 7 | -DANDROID_NDK=C:\work\android-ndk-r12b 8 | -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=G:\AR\Maremat\app\build\intermediates\cmake\debug\obj\arm64-v8a 9 | -DCMAKE_BUILD_TYPE=Debug 10 | -DCMAKE_MAKE_PROGRAM=C:\android-sdk\cmake\3.6.3155560\bin\ninja.exe 11 | -DCMAKE_TOOLCHAIN_FILE=C:\android-sdk\cmake\3.6.3155560\android.toolchain.cmake 12 | -DANDROID_NATIVE_API_LEVEL=21 13 | -DCMAKE_CXX_FLAGS= 14 | jvmArgs : 15 | 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/armeabi/cmake_build_command.txt: -------------------------------------------------------------------------------- 1 | Executable : C:\android-sdk\cmake\3.6.3155560\bin\cmake.exe 2 | arguments : 3 | -HG:\AR\Maremat\app 4 | -BG:\AR\Maremat\app\.externalNativeBuild\cmake\release\armeabi 5 | -GAndroid Gradle - Ninja 6 | -DANDROID_ABI=armeabi 7 | -DANDROID_NDK=C:\work\android-ndk-r12b 8 | -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=G:\AR\Maremat\app\build\intermediates\cmake\release\obj\armeabi 9 | -DCMAKE_BUILD_TYPE=Release 10 | -DCMAKE_MAKE_PROGRAM=C:\android-sdk\cmake\3.6.3155560\bin\ninja.exe 11 | -DCMAKE_TOOLCHAIN_FILE=C:\android-sdk\cmake\3.6.3155560\android.toolchain.cmake 12 | -DANDROID_NATIVE_API_LEVEL=15 13 | -DCMAKE_CXX_FLAGS= 14 | jvmArgs : 15 | 16 | -------------------------------------------------------------------------------- /openCVLibrary320/src/main/java/org/opencv/objdetect/BaseCascadeClassifier.java: -------------------------------------------------------------------------------- 1 | 2 | // 3 | // This file is auto-generated. Please don't modify it! 4 | // 5 | package org.opencv.objdetect; 6 | 7 | import org.opencv.core.Algorithm; 8 | 9 | // C++: class BaseCascadeClassifier 10 | //javadoc: BaseCascadeClassifier 11 | public class BaseCascadeClassifier extends Algorithm { 12 | 13 | protected BaseCascadeClassifier(long addr) { super(addr); } 14 | 15 | 16 | @Override 17 | protected void finalize() throws Throwable { 18 | delete(nativeObj); 19 | } 20 | 21 | 22 | 23 | // native support for java finalize() 24 | private static native void delete(long nativeObj); 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/armeabi-v7a/cmake_build_command.txt: -------------------------------------------------------------------------------- 1 | Executable : C:\android-sdk\cmake\3.6.3155560\bin\cmake.exe 2 | arguments : 3 | -HG:\AR\Maremat\app 4 | -BG:\AR\Maremat\app\.externalNativeBuild\cmake\debug\armeabi-v7a 5 | -GAndroid Gradle - Ninja 6 | -DANDROID_ABI=armeabi-v7a 7 | -DANDROID_NDK=C:\work\android-ndk-r12b 8 | -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=G:\AR\Maremat\app\build\intermediates\cmake\debug\obj\armeabi-v7a 9 | -DCMAKE_BUILD_TYPE=Debug 10 | -DCMAKE_MAKE_PROGRAM=C:\android-sdk\cmake\3.6.3155560\bin\ninja.exe 11 | -DCMAKE_TOOLCHAIN_FILE=C:\android-sdk\cmake\3.6.3155560\android.toolchain.cmake 12 | -DANDROID_NATIVE_API_LEVEL=15 13 | -DCMAKE_CXX_FLAGS= 14 | jvmArgs : 15 | 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/arm64-v8a/cmake_build_command.txt: -------------------------------------------------------------------------------- 1 | Executable : C:\android-sdk\cmake\3.6.3155560\bin\cmake.exe 2 | arguments : 3 | -HG:\AR\Maremat\app 4 | -BG:\AR\Maremat\app\.externalNativeBuild\cmake\release\arm64-v8a 5 | -GAndroid Gradle - Ninja 6 | -DANDROID_ABI=arm64-v8a 7 | -DANDROID_NDK=C:\work\android-ndk-r12b 8 | -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=G:\AR\Maremat\app\build\intermediates\cmake\release\obj\arm64-v8a 9 | -DCMAKE_BUILD_TYPE=Release 10 | -DCMAKE_MAKE_PROGRAM=C:\android-sdk\cmake\3.6.3155560\bin\ninja.exe 11 | -DCMAKE_TOOLCHAIN_FILE=C:\android-sdk\cmake\3.6.3155560\android.toolchain.cmake 12 | -DANDROID_NATIVE_API_LEVEL=21 13 | -DCMAKE_CXX_FLAGS= 14 | jvmArgs : 15 | 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/armeabi-v7a/cmake_build_command.txt: -------------------------------------------------------------------------------- 1 | Executable : C:\android-sdk\cmake\3.6.3155560\bin\cmake.exe 2 | arguments : 3 | -HG:\AR\Maremat\app 4 | -BG:\AR\Maremat\app\.externalNativeBuild\cmake\release\armeabi-v7a 5 | -GAndroid Gradle - Ninja 6 | -DANDROID_ABI=armeabi-v7a 7 | -DANDROID_NDK=C:\work\android-ndk-r12b 8 | -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=G:\AR\Maremat\app\build\intermediates\cmake\release\obj\armeabi-v7a 9 | -DCMAKE_BUILD_TYPE=Release 10 | -DCMAKE_MAKE_PROGRAM=C:\android-sdk\cmake\3.6.3155560\bin\ninja.exe 11 | -DCMAKE_TOOLCHAIN_FILE=C:\android-sdk\cmake\3.6.3155560\android.toolchain.cmake 12 | -DANDROID_NATIVE_API_LEVEL=15 13 | -DCMAKE_CXX_FLAGS= 14 | jvmArgs : 15 | 16 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in C:\android-sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 19 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /app/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | cmake_minimum_required(VERSION 3.4.1) 3 | 4 | include_directories(src/main/jniLibs/jni/include) 5 | add_library( lib_opencv SHARED IMPORTED ) 6 | set_target_properties(lib_opencv PROPERTIES IMPORTED_LOCATION ${CMAKE_CURRENT_SOURCE_DIR}/src/main/jniLibs/${ANDROID_ABI}/libopencv_java3.so) 7 | add_library( native-lib SHARED src/main/cpp/native-lib.cpp ) 8 | 9 | 10 | find_library( # Sets the name of the path variable. 11 | log-lib 12 | 13 | # Specifies the name of the NDK library that 14 | # you want CMake to locate. 15 | log ) 16 | 17 | target_link_libraries( # Specifies the target library. 18 | native-lib 19 | 20 | # Links the target library to the log library 21 | # included in the NDK. 22 | ${log-lib} ) 23 | -------------------------------------------------------------------------------- /app/src/androidTest/java/ir/whiteapp/maremat/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package ir.whiteapp.maremat; 2 | 3 | import android.content.Context; 4 | import android.support.test.InstrumentationRegistry; 5 | import android.support.test.runner.AndroidJUnit4; 6 | 7 | import org.junit.Test; 8 | import org.junit.runner.RunWith; 9 | 10 | import static org.junit.Assert.*; 11 | 12 | /** 13 | * Instrumentation test, which will execute on an Android device. 14 | * 15 | * @see Testing documentation 16 | */ 17 | @RunWith(AndroidJUnit4.class) 18 | public class ExampleInstrumentedTest { 19 | @Test 20 | public void useAppContext() throws Exception { 21 | // Context of the app under test. 22 | Context appContext = InstrumentationRegistry.getTargetContext(); 23 | 24 | assertEquals("ir.whiteapp.maremat", appContext.getPackageName()); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /openCVLibrary320/src/main/java/org/opencv/android/InstallCallbackInterface.java: -------------------------------------------------------------------------------- 1 | package org.opencv.android; 2 | 3 | /** 4 | * Installation callback interface. 5 | */ 6 | public interface InstallCallbackInterface 7 | { 8 | /** 9 | * New package installation is required. 10 | */ 11 | static final int NEW_INSTALLATION = 0; 12 | /** 13 | * Current package installation is in progress. 14 | */ 15 | static final int INSTALLATION_PROGRESS = 1; 16 | 17 | /** 18 | * Target package name. 19 | * @return Return target package name. 20 | */ 21 | public String getPackageName(); 22 | /** 23 | * Installation is approved. 24 | */ 25 | public void install(); 26 | /** 27 | * Installation is canceled. 28 | */ 29 | public void cancel(); 30 | /** 31 | * Wait for package installation. 32 | */ 33 | public void wait_install(); 34 | }; 35 | -------------------------------------------------------------------------------- /openCVLibrary320/build/generated/source/r/androidTest/debug/org/opencv/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * aapt tool from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | package org.opencv; 8 | 9 | public final class R { 10 | public static final class attr { 11 | public static final int camera_id = 0x7f010001; 12 | public static final int show_fps = 0x7f010000; 13 | } 14 | public static final class id { 15 | public static final int any = 0x7f020000; 16 | public static final int back = 0x7f020001; 17 | public static final int front = 0x7f020002; 18 | } 19 | public static final class styleable { 20 | public static final int[] CameraBridgeViewBase = { 0x7f010000, 0x7f010001 }; 21 | public static final int CameraBridgeViewBase_camera_id = 1; 22 | public static final int CameraBridgeViewBase_show_fps = 0; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | ## Project-wide Gradle settings. 2 | # 3 | # For more details on how to configure your build environment visit 4 | # http://www.gradle.org/docs/current/userguide/build_environment.html 5 | # 6 | # Specifies the JVM arguments used for the daemon process. 7 | # The setting is particularly useful for tweaking memory settings. 8 | # Default value: -Xmx1024m -XX:MaxPermSize=256m 9 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 10 | # 11 | # When configured, Gradle will run in incubating parallel mode. 12 | # This option should only be used with decoupled projects. More details, visit 13 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 14 | # org.gradle.parallel=true 15 | #Fri Feb 24 01:29:39 IRST 2017 16 | systemProp.http.proxyHost=localhost 17 | org.gradle.jvmargs=-Xmx1536m 18 | systemProp.http.proxyPort=50033 19 | android.useDeprecatedNdk=true 20 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/mips/cmake_build_output.txt: -------------------------------------------------------------------------------- 1 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe 2 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe -- works 3 | -- Detecting C compiler ABI info 4 | -- Detecting C compiler ABI info - done 5 | -- Detecting C compile features 6 | -- Detecting C compile features - done 7 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe 8 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe -- works 9 | -- Detecting CXX compiler ABI info 10 | -- Detecting CXX compiler ABI info - done 11 | -- Detecting CXX compile features 12 | -- Detecting CXX compile features - done 13 | -- Configuring done 14 | -- Generating done 15 | -- Build files have been written to: G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/mips 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/x86/cmake_build_output.txt: -------------------------------------------------------------------------------- 1 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe 2 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe -- works 3 | -- Detecting C compiler ABI info 4 | -- Detecting C compiler ABI info - done 5 | -- Detecting C compile features 6 | -- Detecting C compile features - done 7 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe 8 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe -- works 9 | -- Detecting CXX compiler ABI info 10 | -- Detecting CXX compiler ABI info - done 11 | -- Detecting CXX compile features 12 | -- Detecting CXX compile features - done 13 | -- Configuring done 14 | -- Generating done 15 | -- Build files have been written to: G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/x86 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/armeabi/cmake_build_output.txt: -------------------------------------------------------------------------------- 1 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe 2 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe -- works 3 | -- Detecting C compiler ABI info 4 | -- Detecting C compiler ABI info - done 5 | -- Detecting C compile features 6 | -- Detecting C compile features - done 7 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe 8 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe -- works 9 | -- Detecting CXX compiler ABI info 10 | -- Detecting CXX compiler ABI info - done 11 | -- Detecting CXX compile features 12 | -- Detecting CXX compile features - done 13 | -- Configuring done 14 | -- Generating done 15 | -- Build files have been written to: G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/armeabi 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/mips64/cmake_build_output.txt: -------------------------------------------------------------------------------- 1 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe 2 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe -- works 3 | -- Detecting C compiler ABI info 4 | -- Detecting C compiler ABI info - done 5 | -- Detecting C compile features 6 | -- Detecting C compile features - done 7 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe 8 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe -- works 9 | -- Detecting CXX compiler ABI info 10 | -- Detecting CXX compiler ABI info - done 11 | -- Detecting CXX compile features 12 | -- Detecting CXX compile features - done 13 | -- Configuring done 14 | -- Generating done 15 | -- Build files have been written to: G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/mips64 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/x86_64/cmake_build_output.txt: -------------------------------------------------------------------------------- 1 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe 2 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe -- works 3 | -- Detecting C compiler ABI info 4 | -- Detecting C compiler ABI info - done 5 | -- Detecting C compile features 6 | -- Detecting C compile features - done 7 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe 8 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe -- works 9 | -- Detecting CXX compiler ABI info 10 | -- Detecting CXX compiler ABI info - done 11 | -- Detecting CXX compile features 12 | -- Detecting CXX compile features - done 13 | -- Configuring done 14 | -- Generating done 15 | -- Build files have been written to: G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/x86_64 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/mips/cmake_build_output.txt: -------------------------------------------------------------------------------- 1 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe 2 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe -- works 3 | -- Detecting C compiler ABI info 4 | -- Detecting C compiler ABI info - done 5 | -- Detecting C compile features 6 | -- Detecting C compile features - done 7 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe 8 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe -- works 9 | -- Detecting CXX compiler ABI info 10 | -- Detecting CXX compiler ABI info - done 11 | -- Detecting CXX compile features 12 | -- Detecting CXX compile features - done 13 | -- Configuring done 14 | -- Generating done 15 | -- Build files have been written to: G:/AR/Maremat/app/.externalNativeBuild/cmake/release/mips 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/x86/cmake_build_output.txt: -------------------------------------------------------------------------------- 1 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe 2 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe -- works 3 | -- Detecting C compiler ABI info 4 | -- Detecting C compiler ABI info - done 5 | -- Detecting C compile features 6 | -- Detecting C compile features - done 7 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe 8 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe -- works 9 | -- Detecting CXX compiler ABI info 10 | -- Detecting CXX compiler ABI info - done 11 | -- Detecting CXX compile features 12 | -- Detecting CXX compile features - done 13 | -- Configuring done 14 | -- Generating done 15 | -- Build files have been written to: G:/AR/Maremat/app/.externalNativeBuild/cmake/release/x86 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/arm64-v8a/cmake_build_output.txt: -------------------------------------------------------------------------------- 1 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe 2 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe -- works 3 | -- Detecting C compiler ABI info 4 | -- Detecting C compiler ABI info - done 5 | -- Detecting C compile features 6 | -- Detecting C compile features - done 7 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe 8 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe -- works 9 | -- Detecting CXX compiler ABI info 10 | -- Detecting CXX compiler ABI info - done 11 | -- Detecting CXX compile features 12 | -- Detecting CXX compile features - done 13 | -- Configuring done 14 | -- Generating done 15 | -- Build files have been written to: G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/arm64-v8a 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/armeabi/cmake_build_output.txt: -------------------------------------------------------------------------------- 1 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe 2 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe -- works 3 | -- Detecting C compiler ABI info 4 | -- Detecting C compiler ABI info - done 5 | -- Detecting C compile features 6 | -- Detecting C compile features - done 7 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe 8 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe -- works 9 | -- Detecting CXX compiler ABI info 10 | -- Detecting CXX compiler ABI info - done 11 | -- Detecting CXX compile features 12 | -- Detecting CXX compile features - done 13 | -- Configuring done 14 | -- Generating done 15 | -- Build files have been written to: G:/AR/Maremat/app/.externalNativeBuild/cmake/release/armeabi 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/mips64/cmake_build_output.txt: -------------------------------------------------------------------------------- 1 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe 2 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe -- works 3 | -- Detecting C compiler ABI info 4 | -- Detecting C compiler ABI info - done 5 | -- Detecting C compile features 6 | -- Detecting C compile features - done 7 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe 8 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe -- works 9 | -- Detecting CXX compiler ABI info 10 | -- Detecting CXX compiler ABI info - done 11 | -- Detecting CXX compile features 12 | -- Detecting CXX compile features - done 13 | -- Configuring done 14 | -- Generating done 15 | -- Build files have been written to: G:/AR/Maremat/app/.externalNativeBuild/cmake/release/mips64 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/x86_64/cmake_build_output.txt: -------------------------------------------------------------------------------- 1 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe 2 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe -- works 3 | -- Detecting C compiler ABI info 4 | -- Detecting C compiler ABI info - done 5 | -- Detecting C compile features 6 | -- Detecting C compile features - done 7 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe 8 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe -- works 9 | -- Detecting CXX compiler ABI info 10 | -- Detecting CXX compiler ABI info - done 11 | -- Detecting CXX compile features 12 | -- Detecting CXX compile features - done 13 | -- Configuring done 14 | -- Generating done 15 | -- Build files have been written to: G:/AR/Maremat/app/.externalNativeBuild/cmake/release/x86_64 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/armeabi-v7a/cmake_build_output.txt: -------------------------------------------------------------------------------- 1 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe 2 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe -- works 3 | -- Detecting C compiler ABI info 4 | -- Detecting C compiler ABI info - done 5 | -- Detecting C compile features 6 | -- Detecting C compile features - done 7 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe 8 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe -- works 9 | -- Detecting CXX compiler ABI info 10 | -- Detecting CXX compiler ABI info - done 11 | -- Detecting CXX compile features 12 | -- Detecting CXX compile features - done 13 | -- Configuring done 14 | -- Generating done 15 | -- Build files have been written to: G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/armeabi-v7a 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/arm64-v8a/cmake_build_output.txt: -------------------------------------------------------------------------------- 1 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe 2 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe -- works 3 | -- Detecting C compiler ABI info 4 | -- Detecting C compiler ABI info - done 5 | -- Detecting C compile features 6 | -- Detecting C compile features - done 7 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe 8 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe -- works 9 | -- Detecting CXX compiler ABI info 10 | -- Detecting CXX compiler ABI info - done 11 | -- Detecting CXX compile features 12 | -- Detecting CXX compile features - done 13 | -- Configuring done 14 | -- Generating done 15 | -- Build files have been written to: G:/AR/Maremat/app/.externalNativeBuild/cmake/release/arm64-v8a 16 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/armeabi-v7a/cmake_build_output.txt: -------------------------------------------------------------------------------- 1 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe 2 | -- Check for working C compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe -- works 3 | -- Detecting C compiler ABI info 4 | -- Detecting C compiler ABI info - done 5 | -- Detecting C compile features 6 | -- Detecting C compile features - done 7 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe 8 | -- Check for working CXX compiler: C:/work/android-ndk-r12b/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe -- works 9 | -- Detecting CXX compiler ABI info 10 | -- Detecting CXX compiler ABI info - done 11 | -- Detecting CXX compile features 12 | -- Detecting CXX compile features - done 13 | -- Configuring done 14 | -- Generating done 15 | -- Build files have been written to: G:/AR/Maremat/app/.externalNativeBuild/cmake/release/armeabi-v7a 16 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main2.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 | 22 | 23 | -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /openCVLibrary320/src/main/aidl/org/opencv/engine/OpenCVEngineInterface.aidl: -------------------------------------------------------------------------------- 1 | package org.opencv.engine; 2 | 3 | /** 4 | * Class provides a Java interface for OpenCV Engine Service. It's synchronous with native OpenCVEngine class. 5 | */ 6 | interface OpenCVEngineInterface 7 | { 8 | /** 9 | * @return Returns service version. 10 | */ 11 | int getEngineVersion(); 12 | 13 | /** 14 | * Finds an installed OpenCV library. 15 | * @param OpenCV version. 16 | * @return Returns path to OpenCV native libs or an empty string if OpenCV can not be found. 17 | */ 18 | String getLibPathByVersion(String version); 19 | 20 | /** 21 | * Tries to install defined version of OpenCV from Google Play Market. 22 | * @param OpenCV version. 23 | * @return Returns true if installation was successful or OpenCV package has been already installed. 24 | */ 25 | boolean installVersion(String version); 26 | 27 | /** 28 | * Returns list of libraries in loading order, separated by semicolon. 29 | * @param OpenCV version. 30 | * @return Returns names of OpenCV libraries, separated by semicolon. 31 | */ 32 | String getLibraryList(String version); 33 | } 34 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 25 5 | buildToolsVersion "25.0.0" 6 | defaultConfig { 7 | applicationId "ir.whiteapp.maremat" 8 | minSdkVersion 15 9 | targetSdkVersion 25 10 | versionCode 1 11 | versionName "1.0" 12 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 13 | externalNativeBuild { 14 | cmake { 15 | cppFlags "" 16 | } 17 | } 18 | } 19 | buildTypes { 20 | release { 21 | minifyEnabled false 22 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 23 | } 24 | } 25 | externalNativeBuild { 26 | cmake { 27 | path "CMakeLists.txt" 28 | } 29 | } 30 | sourceSets { main { jni.srcDirs = ['src/main/jni', 'src/main/jniLibs/'] } } 31 | } 32 | 33 | dependencies { 34 | compile fileTree(include: ['*.jar'], dir: 'libs') 35 | androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { 36 | exclude group: 'com.android.support', module: 'support-annotations' 37 | }) 38 | compile 'com.android.support:appcompat-v7:25.0.1' 39 | testCompile 'junit:junit:4.12' 40 | compile project(':openCVLibrary320') 41 | } 42 | -------------------------------------------------------------------------------- /openCVLibrary320/src/main/java/org/opencv/photo/CalibrateCRF.java: -------------------------------------------------------------------------------- 1 | 2 | // 3 | // This file is auto-generated. Please don't modify it! 4 | // 5 | package org.opencv.photo; 6 | 7 | import java.util.ArrayList; 8 | import java.util.List; 9 | import org.opencv.core.Algorithm; 10 | import org.opencv.core.Mat; 11 | import org.opencv.utils.Converters; 12 | 13 | // C++: class CalibrateCRF 14 | //javadoc: CalibrateCRF 15 | public class CalibrateCRF extends Algorithm { 16 | 17 | protected CalibrateCRF(long addr) { super(addr); } 18 | 19 | 20 | // 21 | // C++: void process(vector_Mat src, Mat& dst, Mat times) 22 | // 23 | 24 | //javadoc: CalibrateCRF::process(src, dst, times) 25 | public void process(List src, Mat dst, Mat times) 26 | { 27 | Mat src_mat = Converters.vector_Mat_to_Mat(src); 28 | process_0(nativeObj, src_mat.nativeObj, dst.nativeObj, times.nativeObj); 29 | 30 | return; 31 | } 32 | 33 | 34 | @Override 35 | protected void finalize() throws Throwable { 36 | delete(nativeObj); 37 | } 38 | 39 | 40 | 41 | // C++: void process(vector_Mat src, Mat& dst, Mat times) 42 | private static native void process_0(long nativeObj, long src_mat_nativeObj, long dst_nativeObj, long times_nativeObj); 43 | 44 | // native support for java finalize() 45 | private static native void delete(long nativeObj); 46 | 47 | } 48 | -------------------------------------------------------------------------------- /openCVLibrary320/src/main/java/org/opencv/android/LoaderCallbackInterface.java: -------------------------------------------------------------------------------- 1 | package org.opencv.android; 2 | 3 | /** 4 | * Interface for callback object in case of asynchronous initialization of OpenCV. 5 | */ 6 | public interface LoaderCallbackInterface 7 | { 8 | /** 9 | * OpenCV initialization finished successfully. 10 | */ 11 | static final int SUCCESS = 0; 12 | /** 13 | * Google Play Market cannot be invoked. 14 | */ 15 | static final int MARKET_ERROR = 2; 16 | /** 17 | * OpenCV library installation has been canceled by the user. 18 | */ 19 | static final int INSTALL_CANCELED = 3; 20 | /** 21 | * This version of OpenCV Manager Service is incompatible with the app. Possibly, a service update is required. 22 | */ 23 | static final int INCOMPATIBLE_MANAGER_VERSION = 4; 24 | /** 25 | * OpenCV library initialization has failed. 26 | */ 27 | static final int INIT_FAILED = 0xff; 28 | 29 | /** 30 | * Callback method, called after OpenCV library initialization. 31 | * @param status status of initialization (see initialization status constants). 32 | */ 33 | public void onManagerConnected(int status); 34 | 35 | /** 36 | * Callback method, called in case the package installation is needed. 37 | * @param callback answer object with approve and cancel methods and the package description. 38 | */ 39 | public void onPackageInstall(final int operation, InstallCallbackInterface callback); 40 | }; 41 | -------------------------------------------------------------------------------- /openCVLibrary320/src/main/java/org/opencv/photo/MergeExposures.java: -------------------------------------------------------------------------------- 1 | 2 | // 3 | // This file is auto-generated. Please don't modify it! 4 | // 5 | package org.opencv.photo; 6 | 7 | import java.util.ArrayList; 8 | import java.util.List; 9 | import org.opencv.core.Algorithm; 10 | import org.opencv.core.Mat; 11 | import org.opencv.utils.Converters; 12 | 13 | // C++: class MergeExposures 14 | //javadoc: MergeExposures 15 | public class MergeExposures extends Algorithm { 16 | 17 | protected MergeExposures(long addr) { super(addr); } 18 | 19 | 20 | // 21 | // C++: void process(vector_Mat src, Mat& dst, Mat times, Mat response) 22 | // 23 | 24 | //javadoc: MergeExposures::process(src, dst, times, response) 25 | public void process(List src, Mat dst, Mat times, Mat response) 26 | { 27 | Mat src_mat = Converters.vector_Mat_to_Mat(src); 28 | process_0(nativeObj, src_mat.nativeObj, dst.nativeObj, times.nativeObj, response.nativeObj); 29 | 30 | return; 31 | } 32 | 33 | 34 | @Override 35 | protected void finalize() throws Throwable { 36 | delete(nativeObj); 37 | } 38 | 39 | 40 | 41 | // C++: void process(vector_Mat src, Mat& dst, Mat times, Mat response) 42 | private static native void process_0(long nativeObj, long src_mat_nativeObj, long dst_nativeObj, long times_nativeObj, long response_nativeObj); 43 | 44 | // native support for java finalize() 45 | private static native void delete(long nativeObj); 46 | 47 | } 48 | -------------------------------------------------------------------------------- /openCVLibrary320/src/main/java/org/opencv/photo/AlignExposures.java: -------------------------------------------------------------------------------- 1 | 2 | // 3 | // This file is auto-generated. Please don't modify it! 4 | // 5 | package org.opencv.photo; 6 | 7 | import java.util.ArrayList; 8 | import java.util.List; 9 | import org.opencv.core.Algorithm; 10 | import org.opencv.core.Mat; 11 | import org.opencv.utils.Converters; 12 | 13 | // C++: class AlignExposures 14 | //javadoc: AlignExposures 15 | public class AlignExposures extends Algorithm { 16 | 17 | protected AlignExposures(long addr) { super(addr); } 18 | 19 | 20 | // 21 | // C++: void process(vector_Mat src, vector_Mat dst, Mat times, Mat response) 22 | // 23 | 24 | //javadoc: AlignExposures::process(src, dst, times, response) 25 | public void process(List src, List dst, Mat times, Mat response) 26 | { 27 | Mat src_mat = Converters.vector_Mat_to_Mat(src); 28 | Mat dst_mat = Converters.vector_Mat_to_Mat(dst); 29 | process_0(nativeObj, src_mat.nativeObj, dst_mat.nativeObj, times.nativeObj, response.nativeObj); 30 | 31 | return; 32 | } 33 | 34 | 35 | @Override 36 | protected void finalize() throws Throwable { 37 | delete(nativeObj); 38 | } 39 | 40 | 41 | 42 | // C++: void process(vector_Mat src, vector_Mat dst, Mat times, Mat response) 43 | private static native void process_0(long nativeObj, long src_mat_nativeObj, long dst_mat_nativeObj, long times_nativeObj, long response_nativeObj); 44 | 45 | // native support for java finalize() 46 | private static native void delete(long nativeObj); 47 | 48 | } 49 | -------------------------------------------------------------------------------- /openCVLibrary320/src/main/java/org/opencv/video/DenseOpticalFlow.java: -------------------------------------------------------------------------------- 1 | 2 | // 3 | // This file is auto-generated. Please don't modify it! 4 | // 5 | package org.opencv.video; 6 | 7 | import org.opencv.core.Algorithm; 8 | import org.opencv.core.Mat; 9 | 10 | // C++: class DenseOpticalFlow 11 | //javadoc: DenseOpticalFlow 12 | public class DenseOpticalFlow extends Algorithm { 13 | 14 | protected DenseOpticalFlow(long addr) { super(addr); } 15 | 16 | 17 | // 18 | // C++: void calc(Mat I0, Mat I1, Mat& flow) 19 | // 20 | 21 | //javadoc: DenseOpticalFlow::calc(I0, I1, flow) 22 | public void calc(Mat I0, Mat I1, Mat flow) 23 | { 24 | 25 | calc_0(nativeObj, I0.nativeObj, I1.nativeObj, flow.nativeObj); 26 | 27 | return; 28 | } 29 | 30 | 31 | // 32 | // C++: void collectGarbage() 33 | // 34 | 35 | //javadoc: DenseOpticalFlow::collectGarbage() 36 | public void collectGarbage() 37 | { 38 | 39 | collectGarbage_0(nativeObj); 40 | 41 | return; 42 | } 43 | 44 | 45 | @Override 46 | protected void finalize() throws Throwable { 47 | delete(nativeObj); 48 | } 49 | 50 | 51 | 52 | // C++: void calc(Mat I0, Mat I1, Mat& flow) 53 | private static native void calc_0(long nativeObj, long I0_nativeObj, long I1_nativeObj, long flow_nativeObj); 54 | 55 | // C++: void collectGarbage() 56 | private static native void collectGarbage_0(long nativeObj); 57 | 58 | // native support for java finalize() 59 | private static native void delete(long nativeObj); 60 | 61 | } 62 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/x86/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: G:/AR/Maremat/app 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Project") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "Debug") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Install shared libraries without execute permission? 31 | if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) 32 | set(CMAKE_INSTALL_SO_NO_EXE "0") 33 | endif() 34 | 35 | if(CMAKE_INSTALL_COMPONENT) 36 | set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") 37 | else() 38 | set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") 39 | endif() 40 | 41 | string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT 42 | "${CMAKE_INSTALL_MANIFEST_FILES}") 43 | file(WRITE "G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/x86/${CMAKE_INSTALL_MANIFEST}" 44 | "${CMAKE_INSTALL_MANIFEST_CONTENT}") 45 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/mips/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: G:/AR/Maremat/app 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Project") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "Debug") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Install shared libraries without execute permission? 31 | if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) 32 | set(CMAKE_INSTALL_SO_NO_EXE "0") 33 | endif() 34 | 35 | if(CMAKE_INSTALL_COMPONENT) 36 | set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") 37 | else() 38 | set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") 39 | endif() 40 | 41 | string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT 42 | "${CMAKE_INSTALL_MANIFEST_FILES}") 43 | file(WRITE "G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/mips/${CMAKE_INSTALL_MANIFEST}" 44 | "${CMAKE_INSTALL_MANIFEST_CONTENT}") 45 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/armeabi/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: G:/AR/Maremat/app 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Project") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "Debug") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Install shared libraries without execute permission? 31 | if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) 32 | set(CMAKE_INSTALL_SO_NO_EXE "0") 33 | endif() 34 | 35 | if(CMAKE_INSTALL_COMPONENT) 36 | set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") 37 | else() 38 | set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") 39 | endif() 40 | 41 | string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT 42 | "${CMAKE_INSTALL_MANIFEST_FILES}") 43 | file(WRITE "G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/armeabi/${CMAKE_INSTALL_MANIFEST}" 44 | "${CMAKE_INSTALL_MANIFEST_CONTENT}") 45 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/mips64/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: G:/AR/Maremat/app 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Project") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "Debug") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Install shared libraries without execute permission? 31 | if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) 32 | set(CMAKE_INSTALL_SO_NO_EXE "0") 33 | endif() 34 | 35 | if(CMAKE_INSTALL_COMPONENT) 36 | set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") 37 | else() 38 | set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") 39 | endif() 40 | 41 | string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT 42 | "${CMAKE_INSTALL_MANIFEST_FILES}") 43 | file(WRITE "G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/mips64/${CMAKE_INSTALL_MANIFEST}" 44 | "${CMAKE_INSTALL_MANIFEST_CONTENT}") 45 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/x86_64/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: G:/AR/Maremat/app 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Project") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "Debug") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Install shared libraries without execute permission? 31 | if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) 32 | set(CMAKE_INSTALL_SO_NO_EXE "0") 33 | endif() 34 | 35 | if(CMAKE_INSTALL_COMPONENT) 36 | set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") 37 | else() 38 | set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") 39 | endif() 40 | 41 | string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT 42 | "${CMAKE_INSTALL_MANIFEST_FILES}") 43 | file(WRITE "G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/x86_64/${CMAKE_INSTALL_MANIFEST}" 44 | "${CMAKE_INSTALL_MANIFEST_CONTENT}") 45 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/mips/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: G:/AR/Maremat/app 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Project") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "Release") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Install shared libraries without execute permission? 31 | if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) 32 | set(CMAKE_INSTALL_SO_NO_EXE "0") 33 | endif() 34 | 35 | if(CMAKE_INSTALL_COMPONENT) 36 | set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") 37 | else() 38 | set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") 39 | endif() 40 | 41 | string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT 42 | "${CMAKE_INSTALL_MANIFEST_FILES}") 43 | file(WRITE "G:/AR/Maremat/app/.externalNativeBuild/cmake/release/mips/${CMAKE_INSTALL_MANIFEST}" 44 | "${CMAKE_INSTALL_MANIFEST_CONTENT}") 45 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/x86/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: G:/AR/Maremat/app 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Project") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "Release") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Install shared libraries without execute permission? 31 | if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) 32 | set(CMAKE_INSTALL_SO_NO_EXE "0") 33 | endif() 34 | 35 | if(CMAKE_INSTALL_COMPONENT) 36 | set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") 37 | else() 38 | set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") 39 | endif() 40 | 41 | string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT 42 | "${CMAKE_INSTALL_MANIFEST_FILES}") 43 | file(WRITE "G:/AR/Maremat/app/.externalNativeBuild/cmake/release/x86/${CMAKE_INSTALL_MANIFEST}" 44 | "${CMAKE_INSTALL_MANIFEST_CONTENT}") 45 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/arm64-v8a/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: G:/AR/Maremat/app 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Project") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "Debug") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Install shared libraries without execute permission? 31 | if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) 32 | set(CMAKE_INSTALL_SO_NO_EXE "0") 33 | endif() 34 | 35 | if(CMAKE_INSTALL_COMPONENT) 36 | set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") 37 | else() 38 | set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") 39 | endif() 40 | 41 | string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT 42 | "${CMAKE_INSTALL_MANIFEST_FILES}") 43 | file(WRITE "G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/arm64-v8a/${CMAKE_INSTALL_MANIFEST}" 44 | "${CMAKE_INSTALL_MANIFEST_CONTENT}") 45 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/armeabi/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: G:/AR/Maremat/app 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Project") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "Release") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Install shared libraries without execute permission? 31 | if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) 32 | set(CMAKE_INSTALL_SO_NO_EXE "0") 33 | endif() 34 | 35 | if(CMAKE_INSTALL_COMPONENT) 36 | set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") 37 | else() 38 | set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") 39 | endif() 40 | 41 | string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT 42 | "${CMAKE_INSTALL_MANIFEST_FILES}") 43 | file(WRITE "G:/AR/Maremat/app/.externalNativeBuild/cmake/release/armeabi/${CMAKE_INSTALL_MANIFEST}" 44 | "${CMAKE_INSTALL_MANIFEST_CONTENT}") 45 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/mips64/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: G:/AR/Maremat/app 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Project") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "Release") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Install shared libraries without execute permission? 31 | if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) 32 | set(CMAKE_INSTALL_SO_NO_EXE "0") 33 | endif() 34 | 35 | if(CMAKE_INSTALL_COMPONENT) 36 | set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") 37 | else() 38 | set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") 39 | endif() 40 | 41 | string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT 42 | "${CMAKE_INSTALL_MANIFEST_FILES}") 43 | file(WRITE "G:/AR/Maremat/app/.externalNativeBuild/cmake/release/mips64/${CMAKE_INSTALL_MANIFEST}" 44 | "${CMAKE_INSTALL_MANIFEST_CONTENT}") 45 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/x86_64/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: G:/AR/Maremat/app 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Project") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "Release") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Install shared libraries without execute permission? 31 | if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) 32 | set(CMAKE_INSTALL_SO_NO_EXE "0") 33 | endif() 34 | 35 | if(CMAKE_INSTALL_COMPONENT) 36 | set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") 37 | else() 38 | set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") 39 | endif() 40 | 41 | string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT 42 | "${CMAKE_INSTALL_MANIFEST_FILES}") 43 | file(WRITE "G:/AR/Maremat/app/.externalNativeBuild/cmake/release/x86_64/${CMAKE_INSTALL_MANIFEST}" 44 | "${CMAKE_INSTALL_MANIFEST_CONTENT}") 45 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/debug/armeabi-v7a/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: G:/AR/Maremat/app 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Project") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "Debug") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Install shared libraries without execute permission? 31 | if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) 32 | set(CMAKE_INSTALL_SO_NO_EXE "0") 33 | endif() 34 | 35 | if(CMAKE_INSTALL_COMPONENT) 36 | set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") 37 | else() 38 | set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") 39 | endif() 40 | 41 | string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT 42 | "${CMAKE_INSTALL_MANIFEST_FILES}") 43 | file(WRITE "G:/AR/Maremat/app/.externalNativeBuild/cmake/debug/armeabi-v7a/${CMAKE_INSTALL_MANIFEST}" 44 | "${CMAKE_INSTALL_MANIFEST_CONTENT}") 45 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/arm64-v8a/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: G:/AR/Maremat/app 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Project") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "Release") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Install shared libraries without execute permission? 31 | if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) 32 | set(CMAKE_INSTALL_SO_NO_EXE "0") 33 | endif() 34 | 35 | if(CMAKE_INSTALL_COMPONENT) 36 | set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") 37 | else() 38 | set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") 39 | endif() 40 | 41 | string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT 42 | "${CMAKE_INSTALL_MANIFEST_FILES}") 43 | file(WRITE "G:/AR/Maremat/app/.externalNativeBuild/cmake/release/arm64-v8a/${CMAKE_INSTALL_MANIFEST}" 44 | "${CMAKE_INSTALL_MANIFEST_CONTENT}") 45 | -------------------------------------------------------------------------------- /app/.externalNativeBuild/cmake/release/armeabi-v7a/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: G:/AR/Maremat/app 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Project") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "Release") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Install shared libraries without execute permission? 31 | if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) 32 | set(CMAKE_INSTALL_SO_NO_EXE "0") 33 | endif() 34 | 35 | if(CMAKE_INSTALL_COMPONENT) 36 | set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") 37 | else() 38 | set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") 39 | endif() 40 | 41 | string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT 42 | "${CMAKE_INSTALL_MANIFEST_FILES}") 43 | file(WRITE "G:/AR/Maremat/app/.externalNativeBuild/cmake/release/armeabi-v7a/${CMAKE_INSTALL_MANIFEST}" 44 | "${CMAKE_INSTALL_MANIFEST_CONTENT}") 45 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/incremental/packageDebugResources/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /openCVLibrary320/src/main/java/org/opencv/core/DMatch.java: -------------------------------------------------------------------------------- 1 | package org.opencv.core; 2 | 3 | //C++: class DMatch 4 | 5 | /** 6 | * Structure for matching: query descriptor index, train descriptor index, train 7 | * image index and distance between descriptors. 8 | */ 9 | public class DMatch { 10 | 11 | /** 12 | * Query descriptor index. 13 | */ 14 | public int queryIdx; 15 | /** 16 | * Train descriptor index. 17 | */ 18 | public int trainIdx; 19 | /** 20 | * Train image index. 21 | */ 22 | public int imgIdx; 23 | 24 | // javadoc: DMatch::distance 25 | public float distance; 26 | 27 | // javadoc: DMatch::DMatch() 28 | public DMatch() { 29 | this(-1, -1, Float.MAX_VALUE); 30 | } 31 | 32 | // javadoc: DMatch::DMatch(_queryIdx, _trainIdx, _distance) 33 | public DMatch(int _queryIdx, int _trainIdx, float _distance) { 34 | queryIdx = _queryIdx; 35 | trainIdx = _trainIdx; 36 | imgIdx = -1; 37 | distance = _distance; 38 | } 39 | 40 | // javadoc: DMatch::DMatch(_queryIdx, _trainIdx, _imgIdx, _distance) 41 | public DMatch(int _queryIdx, int _trainIdx, int _imgIdx, float _distance) { 42 | queryIdx = _queryIdx; 43 | trainIdx = _trainIdx; 44 | imgIdx = _imgIdx; 45 | distance = _distance; 46 | } 47 | 48 | /** 49 | * Less is better. 50 | */ 51 | public boolean lessThan(DMatch it) { 52 | return distance < it.distance; 53 | } 54 | 55 | @Override 56 | public String toString() { 57 | return "DMatch [queryIdx=" + queryIdx + ", trainIdx=" + trainIdx 58 | + ", imgIdx=" + imgIdx + ", distance=" + distance + "]"; 59 | } 60 | 61 | } 62 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/incremental/packageReleaseResources/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /openCVLibrary320/src/main/java/org/opencv/core/Point.java: -------------------------------------------------------------------------------- 1 | package org.opencv.core; 2 | 3 | //javadoc:Point_ 4 | public class Point { 5 | 6 | public double x, y; 7 | 8 | public Point(double x, double y) { 9 | this.x = x; 10 | this.y = y; 11 | } 12 | 13 | public Point() { 14 | this(0, 0); 15 | } 16 | 17 | public Point(double[] vals) { 18 | this(); 19 | set(vals); 20 | } 21 | 22 | public void set(double[] vals) { 23 | if (vals != null) { 24 | x = vals.length > 0 ? vals[0] : 0; 25 | y = vals.length > 1 ? vals[1] : 0; 26 | } else { 27 | x = 0; 28 | y = 0; 29 | } 30 | } 31 | 32 | public Point clone() { 33 | return new Point(x, y); 34 | } 35 | 36 | public double dot(Point p) { 37 | return x * p.x + y * p.y; 38 | } 39 | 40 | @Override 41 | public int hashCode() { 42 | final int prime = 31; 43 | int result = 1; 44 | long temp; 45 | temp = Double.doubleToLongBits(x); 46 | result = prime * result + (int) (temp ^ (temp >>> 32)); 47 | temp = Double.doubleToLongBits(y); 48 | result = prime * result + (int) (temp ^ (temp >>> 32)); 49 | return result; 50 | } 51 | 52 | @Override 53 | public boolean equals(Object obj) { 54 | if (this == obj) return true; 55 | if (!(obj instanceof Point)) return false; 56 | Point it = (Point) obj; 57 | return x == it.x && y == it.y; 58 | } 59 | 60 | public boolean inside(Rect r) { 61 | return r.contains(this); 62 | } 63 | 64 | @Override 65 | public String toString() { 66 | return "{" + x + ", " + y + "}"; 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /openCVLibrary320/src/main/java/org/opencv/features2d/FlannBasedMatcher.java: -------------------------------------------------------------------------------- 1 | 2 | // 3 | // This file is auto-generated. Please don't modify it! 4 | // 5 | package org.opencv.features2d; 6 | 7 | 8 | 9 | // C++: class FlannBasedMatcher 10 | //javadoc: FlannBasedMatcher 11 | public class FlannBasedMatcher extends DescriptorMatcher { 12 | 13 | protected FlannBasedMatcher(long addr) { super(addr); } 14 | 15 | 16 | // 17 | // C++: FlannBasedMatcher(Ptr_flann_IndexParams indexParams = makePtr(), Ptr_flann_SearchParams searchParams = makePtr()) 18 | // 19 | 20 | //javadoc: FlannBasedMatcher::FlannBasedMatcher() 21 | public FlannBasedMatcher() 22 | { 23 | 24 | super( FlannBasedMatcher_0() ); 25 | 26 | return; 27 | } 28 | 29 | 30 | // 31 | // C++: static Ptr_FlannBasedMatcher create() 32 | // 33 | 34 | //javadoc: FlannBasedMatcher::create() 35 | public static FlannBasedMatcher create() 36 | { 37 | 38 | FlannBasedMatcher retVal = new FlannBasedMatcher(create_0()); 39 | 40 | return retVal; 41 | } 42 | 43 | 44 | @Override 45 | protected void finalize() throws Throwable { 46 | delete(nativeObj); 47 | } 48 | 49 | 50 | 51 | // C++: FlannBasedMatcher(Ptr_flann_IndexParams indexParams = makePtr(), Ptr_flann_SearchParams searchParams = makePtr()) 52 | private static native long FlannBasedMatcher_0(); 53 | 54 | // C++: static Ptr_FlannBasedMatcher create() 55 | private static native long create_0(); 56 | 57 | // native support for java finalize() 58 | private static native void delete(long nativeObj); 59 | 60 | } 61 | -------------------------------------------------------------------------------- /openCVLibrary320/src/main/java/org/opencv/core/Algorithm.java: -------------------------------------------------------------------------------- 1 | 2 | // 3 | // This file is auto-generated. Please don't modify it! 4 | // 5 | package org.opencv.core; 6 | 7 | import java.lang.String; 8 | 9 | // C++: class Algorithm 10 | //javadoc: Algorithm 11 | public class Algorithm { 12 | 13 | protected final long nativeObj; 14 | protected Algorithm(long addr) { nativeObj = addr; } 15 | 16 | 17 | // 18 | // C++: String getDefaultName() 19 | // 20 | 21 | //javadoc: Algorithm::getDefaultName() 22 | public String getDefaultName() 23 | { 24 | 25 | String retVal = getDefaultName_0(nativeObj); 26 | 27 | return retVal; 28 | } 29 | 30 | 31 | // 32 | // C++: void clear() 33 | // 34 | 35 | //javadoc: Algorithm::clear() 36 | public void clear() 37 | { 38 | 39 | clear_0(nativeObj); 40 | 41 | return; 42 | } 43 | 44 | 45 | // 46 | // C++: void save(String filename) 47 | // 48 | 49 | //javadoc: Algorithm::save(filename) 50 | public void save(String filename) 51 | { 52 | 53 | save_0(nativeObj, filename); 54 | 55 | return; 56 | } 57 | 58 | 59 | @Override 60 | protected void finalize() throws Throwable { 61 | delete(nativeObj); 62 | } 63 | 64 | 65 | 66 | // C++: String getDefaultName() 67 | private static native String getDefaultName_0(long nativeObj); 68 | 69 | // C++: void clear() 70 | private static native void clear_0(long nativeObj); 71 | 72 | // C++: void save(String filename) 73 | private static native void save_0(long nativeObj, String filename); 74 | 75 | // native support for java finalize() 76 | private static native void delete(long nativeObj); 77 | 78 | } 79 | -------------------------------------------------------------------------------- /openCVLibrary320/src/main/java/org/opencv/core/Size.java: -------------------------------------------------------------------------------- 1 | package org.opencv.core; 2 | 3 | //javadoc:Size_ 4 | public class Size { 5 | 6 | public double width, height; 7 | 8 | public Size(double width, double height) { 9 | this.width = width; 10 | this.height = height; 11 | } 12 | 13 | public Size() { 14 | this(0, 0); 15 | } 16 | 17 | public Size(Point p) { 18 | width = p.x; 19 | height = p.y; 20 | } 21 | 22 | public Size(double[] vals) { 23 | set(vals); 24 | } 25 | 26 | public void set(double[] vals) { 27 | if (vals != null) { 28 | width = vals.length > 0 ? vals[0] : 0; 29 | height = vals.length > 1 ? vals[1] : 0; 30 | } else { 31 | width = 0; 32 | height = 0; 33 | } 34 | } 35 | 36 | public double area() { 37 | return width * height; 38 | } 39 | 40 | public Size clone() { 41 | return new Size(width, height); 42 | } 43 | 44 | @Override 45 | public int hashCode() { 46 | final int prime = 31; 47 | int result = 1; 48 | long temp; 49 | temp = Double.doubleToLongBits(height); 50 | result = prime * result + (int) (temp ^ (temp >>> 32)); 51 | temp = Double.doubleToLongBits(width); 52 | result = prime * result + (int) (temp ^ (temp >>> 32)); 53 | return result; 54 | } 55 | 56 | @Override 57 | public boolean equals(Object obj) { 58 | if (this == obj) return true; 59 | if (!(obj instanceof Size)) return false; 60 | Size it = (Size) obj; 61 | return width == it.width && height == it.height; 62 | } 63 | 64 | @Override 65 | public String toString() { 66 | return (int)width + "x" + (int)height; 67 | } 68 | 69 | } 70 | -------------------------------------------------------------------------------- /openCVLibrary320/build/intermediates/incremental/mergeDebugAndroidTestResources/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /openCVLibrary320/src/main/java/org/opencv/photo/Tonemap.java: -------------------------------------------------------------------------------- 1 | 2 | // 3 | // This file is auto-generated. Please don't modify it! 4 | // 5 | package org.opencv.photo; 6 | 7 | import org.opencv.core.Algorithm; 8 | import org.opencv.core.Mat; 9 | 10 | // C++: class Tonemap 11 | //javadoc: Tonemap 12 | public class Tonemap extends Algorithm { 13 | 14 | protected Tonemap(long addr) { super(addr); } 15 | 16 | 17 | // 18 | // C++: float getGamma() 19 | // 20 | 21 | //javadoc: Tonemap::getGamma() 22 | public float getGamma() 23 | { 24 | 25 | float retVal = getGamma_0(nativeObj); 26 | 27 | return retVal; 28 | } 29 | 30 | 31 | // 32 | // C++: void process(Mat src, Mat& dst) 33 | // 34 | 35 | //javadoc: Tonemap::process(src, dst) 36 | public void process(Mat src, Mat dst) 37 | { 38 | 39 | process_0(nativeObj, src.nativeObj, dst.nativeObj); 40 | 41 | return; 42 | } 43 | 44 | 45 | // 46 | // C++: void setGamma(float gamma) 47 | // 48 | 49 | //javadoc: Tonemap::setGamma(gamma) 50 | public void setGamma(float gamma) 51 | { 52 | 53 | setGamma_0(nativeObj, gamma); 54 | 55 | return; 56 | } 57 | 58 | 59 | @Override 60 | protected void finalize() throws Throwable { 61 | delete(nativeObj); 62 | } 63 | 64 | 65 | 66 | // C++: float getGamma() 67 | private static native float getGamma_0(long nativeObj); 68 | 69 | // C++: void process(Mat src, Mat& dst) 70 | private static native void process_0(long nativeObj, long src_nativeObj, long dst_nativeObj); 71 | 72 | // C++: void setGamma(float gamma) 73 | private static native void setGamma_0(long nativeObj, float gamma); 74 | 75 | // native support for java finalize() 76 | private static native void delete(long nativeObj); 77 | 78 | } 79 | -------------------------------------------------------------------------------- /openCVLibrary320/src/main/java/org/opencv/objdetect/Objdetect.java: -------------------------------------------------------------------------------- 1 | 2 | // 3 | // This file is auto-generated. Please don't modify it! 4 | // 5 | package org.opencv.objdetect; 6 | 7 | import java.util.ArrayList; 8 | import org.opencv.core.Mat; 9 | import org.opencv.core.MatOfInt; 10 | import org.opencv.core.MatOfRect; 11 | 12 | public class Objdetect { 13 | 14 | public static final int 15 | CASCADE_DO_CANNY_PRUNING = 1, 16 | CASCADE_SCALE_IMAGE = 2, 17 | CASCADE_FIND_BIGGEST_OBJECT = 4, 18 | CASCADE_DO_ROUGH_SEARCH = 8; 19 | 20 | 21 | // 22 | // C++: void groupRectangles(vector_Rect& rectList, vector_int& weights, int groupThreshold, double eps = 0.2) 23 | // 24 | 25 | //javadoc: groupRectangles(rectList, weights, groupThreshold, eps) 26 | public static void groupRectangles(MatOfRect rectList, MatOfInt weights, int groupThreshold, double eps) 27 | { 28 | Mat rectList_mat = rectList; 29 | Mat weights_mat = weights; 30 | groupRectangles_0(rectList_mat.nativeObj, weights_mat.nativeObj, groupThreshold, eps); 31 | 32 | return; 33 | } 34 | 35 | //javadoc: groupRectangles(rectList, weights, groupThreshold) 36 | public static void groupRectangles(MatOfRect rectList, MatOfInt weights, int groupThreshold) 37 | { 38 | Mat rectList_mat = rectList; 39 | Mat weights_mat = weights; 40 | groupRectangles_1(rectList_mat.nativeObj, weights_mat.nativeObj, groupThreshold); 41 | 42 | return; 43 | } 44 | 45 | 46 | 47 | 48 | // C++: void groupRectangles(vector_Rect& rectList, vector_int& weights, int groupThreshold, double eps = 0.2) 49 | private static native void groupRectangles_0(long rectList_mat_nativeObj, long weights_mat_nativeObj, int groupThreshold, double eps); 50 | private static native void groupRectangles_1(long rectList_mat_nativeObj, long weights_mat_nativeObj, int groupThreshold); 51 | 52 | } 53 | -------------------------------------------------------------------------------- /openCVLibrary320/src/main/java/org/opencv/photo/MergeDebevec.java: -------------------------------------------------------------------------------- 1 | 2 | // 3 | // This file is auto-generated. Please don't modify it! 4 | // 5 | package org.opencv.photo; 6 | 7 | import java.util.ArrayList; 8 | import java.util.List; 9 | import org.opencv.core.Mat; 10 | import org.opencv.utils.Converters; 11 | 12 | // C++: class MergeDebevec 13 | //javadoc: MergeDebevec 14 | public class MergeDebevec extends MergeExposures { 15 | 16 | protected MergeDebevec(long addr) { super(addr); } 17 | 18 | 19 | // 20 | // C++: void process(vector_Mat src, Mat& dst, Mat times, Mat response) 21 | // 22 | 23 | //javadoc: MergeDebevec::process(src, dst, times, response) 24 | public void process(List src, Mat dst, Mat times, Mat response) 25 | { 26 | Mat src_mat = Converters.vector_Mat_to_Mat(src); 27 | process_0(nativeObj, src_mat.nativeObj, dst.nativeObj, times.nativeObj, response.nativeObj); 28 | 29 | return; 30 | } 31 | 32 | 33 | // 34 | // C++: void process(vector_Mat src, Mat& dst, Mat times) 35 | // 36 | 37 | //javadoc: MergeDebevec::process(src, dst, times) 38 | public void process(List src, Mat dst, Mat times) 39 | { 40 | Mat src_mat = Converters.vector_Mat_to_Mat(src); 41 | process_1(nativeObj, src_mat.nativeObj, dst.nativeObj, times.nativeObj); 42 | 43 | return; 44 | } 45 | 46 | 47 | @Override 48 | protected void finalize() throws Throwable { 49 | delete(nativeObj); 50 | } 51 | 52 | 53 | 54 | // C++: void process(vector_Mat src, Mat& dst, Mat times, Mat response) 55 | private static native void process_0(long nativeObj, long src_mat_nativeObj, long dst_nativeObj, long times_nativeObj, long response_nativeObj); 56 | 57 | // C++: void process(vector_Mat src, Mat& dst, Mat times) 58 | private static native void process_1(long nativeObj, long src_mat_nativeObj, long dst_nativeObj, long times_nativeObj); 59 | 60 | // native support for java finalize() 61 | private static native void delete(long nativeObj); 62 | 63 | } 64 | -------------------------------------------------------------------------------- /openCVLibrary320/src/main/java/org/opencv/photo/MergeRobertson.java: -------------------------------------------------------------------------------- 1 | 2 | // 3 | // This file is auto-generated. Please don't modify it! 4 | // 5 | package org.opencv.photo; 6 | 7 | import java.util.ArrayList; 8 | import java.util.List; 9 | import org.opencv.core.Mat; 10 | import org.opencv.utils.Converters; 11 | 12 | // C++: class MergeRobertson 13 | //javadoc: MergeRobertson 14 | public class MergeRobertson extends MergeExposures { 15 | 16 | protected MergeRobertson(long addr) { super(addr); } 17 | 18 | 19 | // 20 | // C++: void process(vector_Mat src, Mat& dst, Mat times, Mat response) 21 | // 22 | 23 | //javadoc: MergeRobertson::process(src, dst, times, response) 24 | public void process(List src, Mat dst, Mat times, Mat response) 25 | { 26 | Mat src_mat = Converters.vector_Mat_to_Mat(src); 27 | process_0(nativeObj, src_mat.nativeObj, dst.nativeObj, times.nativeObj, response.nativeObj); 28 | 29 | return; 30 | } 31 | 32 | 33 | // 34 | // C++: void process(vector_Mat src, Mat& dst, Mat times) 35 | // 36 | 37 | //javadoc: MergeRobertson::process(src, dst, times) 38 | public void process(List src, Mat dst, Mat times) 39 | { 40 | Mat src_mat = Converters.vector_Mat_to_Mat(src); 41 | process_1(nativeObj, src_mat.nativeObj, dst.nativeObj, times.nativeObj); 42 | 43 | return; 44 | } 45 | 46 | 47 | @Override 48 | protected void finalize() throws Throwable { 49 | delete(nativeObj); 50 | } 51 | 52 | 53 | 54 | // C++: void process(vector_Mat src, Mat& dst, Mat times, Mat response) 55 | private static native void process_0(long nativeObj, long src_mat_nativeObj, long dst_nativeObj, long times_nativeObj, long response_nativeObj); 56 | 57 | // C++: void process(vector_Mat src, Mat& dst, Mat times) 58 | private static native void process_1(long nativeObj, long src_mat_nativeObj, long dst_nativeObj, long times_nativeObj); 59 | 60 | // native support for java finalize() 61 | private static native void delete(long nativeObj); 62 | 63 | } 64 | -------------------------------------------------------------------------------- /openCVLibrary320/src/main/java/org/opencv/video/SparseOpticalFlow.java: -------------------------------------------------------------------------------- 1 | 2 | // 3 | // This file is auto-generated. Please don't modify it! 4 | // 5 | package org.opencv.video; 6 | 7 | import org.opencv.core.Algorithm; 8 | import org.opencv.core.Mat; 9 | 10 | // C++: class SparseOpticalFlow 11 | //javadoc: SparseOpticalFlow 12 | public class SparseOpticalFlow extends Algorithm { 13 | 14 | protected SparseOpticalFlow(long addr) { super(addr); } 15 | 16 | 17 | // 18 | // C++: void calc(Mat prevImg, Mat nextImg, Mat prevPts, Mat& nextPts, Mat& status, Mat& err = cv::Mat()) 19 | // 20 | 21 | //javadoc: SparseOpticalFlow::calc(prevImg, nextImg, prevPts, nextPts, status, err) 22 | public void calc(Mat prevImg, Mat nextImg, Mat prevPts, Mat nextPts, Mat status, Mat err) 23 | { 24 | 25 | calc_0(nativeObj, prevImg.nativeObj, nextImg.nativeObj, prevPts.nativeObj, nextPts.nativeObj, status.nativeObj, err.nativeObj); 26 | 27 | return; 28 | } 29 | 30 | //javadoc: SparseOpticalFlow::calc(prevImg, nextImg, prevPts, nextPts, status) 31 | public void calc(Mat prevImg, Mat nextImg, Mat prevPts, Mat nextPts, Mat status) 32 | { 33 | 34 | calc_1(nativeObj, prevImg.nativeObj, nextImg.nativeObj, prevPts.nativeObj, nextPts.nativeObj, status.nativeObj); 35 | 36 | return; 37 | } 38 | 39 | 40 | @Override 41 | protected void finalize() throws Throwable { 42 | delete(nativeObj); 43 | } 44 | 45 | 46 | 47 | // C++: void calc(Mat prevImg, Mat nextImg, Mat prevPts, Mat& nextPts, Mat& status, Mat& err = cv::Mat()) 48 | private static native void calc_0(long nativeObj, long prevImg_nativeObj, long nextImg_nativeObj, long prevPts_nativeObj, long nextPts_nativeObj, long status_nativeObj, long err_nativeObj); 49 | private static native void calc_1(long nativeObj, long prevImg_nativeObj, long nextImg_nativeObj, long prevPts_nativeObj, long nextPts_nativeObj, long status_nativeObj); 50 | 51 | // native support for java finalize() 52 | private static native void delete(long nativeObj); 53 | 54 | } 55 | -------------------------------------------------------------------------------- /openCVLibrary320/src/main/java/org/opencv/core/Point3.java: -------------------------------------------------------------------------------- 1 | package org.opencv.core; 2 | 3 | //javadoc:Point3_ 4 | public class Point3 { 5 | 6 | public double x, y, z; 7 | 8 | public Point3(double x, double y, double z) { 9 | this.x = x; 10 | this.y = y; 11 | this.z = z; 12 | } 13 | 14 | public Point3() { 15 | this(0, 0, 0); 16 | } 17 | 18 | public Point3(Point p) { 19 | x = p.x; 20 | y = p.y; 21 | z = 0; 22 | } 23 | 24 | public Point3(double[] vals) { 25 | this(); 26 | set(vals); 27 | } 28 | 29 | public void set(double[] vals) { 30 | if (vals != null) { 31 | x = vals.length > 0 ? vals[0] : 0; 32 | y = vals.length > 1 ? vals[1] : 0; 33 | z = vals.length > 2 ? vals[2] : 0; 34 | } else { 35 | x = 0; 36 | y = 0; 37 | z = 0; 38 | } 39 | } 40 | 41 | public Point3 clone() { 42 | return new Point3(x, y, z); 43 | } 44 | 45 | public double dot(Point3 p) { 46 | return x * p.x + y * p.y + z * p.z; 47 | } 48 | 49 | public Point3 cross(Point3 p) { 50 | return new Point3(y * p.z - z * p.y, z * p.x - x * p.z, x * p.y - y * p.x); 51 | } 52 | 53 | @Override 54 | public int hashCode() { 55 | final int prime = 31; 56 | int result = 1; 57 | long temp; 58 | temp = Double.doubleToLongBits(x); 59 | result = prime * result + (int) (temp ^ (temp >>> 32)); 60 | temp = Double.doubleToLongBits(y); 61 | result = prime * result + (int) (temp ^ (temp >>> 32)); 62 | temp = Double.doubleToLongBits(z); 63 | result = prime * result + (int) (temp ^ (temp >>> 32)); 64 | return result; 65 | } 66 | 67 | @Override 68 | public boolean equals(Object obj) { 69 | if (this == obj) return true; 70 | if (!(obj instanceof Point3)) return false; 71 | Point3 it = (Point3) obj; 72 | return x == it.x && y == it.y && z == it.z; 73 | } 74 | 75 | @Override 76 | public String toString() { 77 | return "{" + x + ", " + y + ", " + z + "}"; 78 | } 79 | } 80 | -------------------------------------------------------------------------------- /openCVLibrary320/src/main/java/org/opencv/features2d/BFMatcher.java: -------------------------------------------------------------------------------- 1 | 2 | // 3 | // This file is auto-generated. Please don't modify it! 4 | // 5 | package org.opencv.features2d; 6 | 7 | 8 | 9 | // C++: class BFMatcher 10 | //javadoc: BFMatcher 11 | public class BFMatcher extends DescriptorMatcher { 12 | 13 | protected BFMatcher(long addr) { super(addr); } 14 | 15 | 16 | // 17 | // C++: BFMatcher(int normType = NORM_L2, bool crossCheck = false) 18 | // 19 | 20 | //javadoc: BFMatcher::BFMatcher(normType, crossCheck) 21 | public BFMatcher(int normType, boolean crossCheck) 22 | { 23 | 24 | super( BFMatcher_0(normType, crossCheck) ); 25 | 26 | return; 27 | } 28 | 29 | //javadoc: BFMatcher::BFMatcher() 30 | public BFMatcher() 31 | { 32 | 33 | super( BFMatcher_1() ); 34 | 35 | return; 36 | } 37 | 38 | 39 | // 40 | // C++: static Ptr_BFMatcher create(int normType = NORM_L2, bool crossCheck = false) 41 | // 42 | 43 | //javadoc: BFMatcher::create(normType, crossCheck) 44 | public static BFMatcher create(int normType, boolean crossCheck) 45 | { 46 | 47 | BFMatcher retVal = new BFMatcher(create_0(normType, crossCheck)); 48 | 49 | return retVal; 50 | } 51 | 52 | //javadoc: BFMatcher::create() 53 | public static BFMatcher create() 54 | { 55 | 56 | BFMatcher retVal = new BFMatcher(create_1()); 57 | 58 | return retVal; 59 | } 60 | 61 | 62 | @Override 63 | protected void finalize() throws Throwable { 64 | delete(nativeObj); 65 | } 66 | 67 | 68 | 69 | // C++: BFMatcher(int normType = NORM_L2, bool crossCheck = false) 70 | private static native long BFMatcher_0(int normType, boolean crossCheck); 71 | private static native long BFMatcher_1(); 72 | 73 | // C++: static Ptr_BFMatcher create(int normType = NORM_L2, bool crossCheck = false) 74 | private static native long create_0(int normType, boolean crossCheck); 75 | private static native long create_1(); 76 | 77 | // native support for java finalize() 78 | private static native void delete(long nativeObj); 79 | 80 | } 81 | --------------------------------------------------------------------------------