文件夹 PATH 列表 卷序列号为 724B-7ABE E:. │ .gitattributes │ .gitignore │ CMakeLists.txt │ README.md │ tree.txt │ ├─.vscode │ settings.json │ ├─build │ │ CMakeCache.txt │ │ │ ├─.cmake │ │ └─api │ │ └─v1 │ │ └─query │ │ └─client-vscode │ │ query.json │ │ │ └─CMakeFiles │ │ cmake.check_cache │ │ CMakeConfigureLog.yaml │ │ │ ├─3.31.9 │ │ │ CMakeCXXCompiler.cmake │ │ │ CMakeDetermineCompilerABI_CXX.bin │ │ │ CMakeRCCompiler.cmake │ │ │ CMakeSystem.cmake │ │ │ VCTargetsPath.txt │ │ │ VCTargetsPath.vcxproj │ │ │ │ │ ├─CompilerIdCXX │ │ │ │ CMakeCXXCompilerId.cpp │ │ │ │ CompilerIdCXX.exe │ │ │ │ CompilerIdCXX.vcxproj │ │ │ │ │ │ │ ├─Debug │ │ │ │ │ CMakeCXXCompilerId.obj │ │ │ │ │ CompilerIdCXX.exe.recipe │ │ │ │ │ vcpkg.applocal.log │ │ │ │ │ │ │ │ │ └─CompilerIdCXX.tlog │ │ │ │ CL.command.1.tlog │ │ │ │ Cl.items.tlog │ │ │ │ CL.read.1.tlog │ │ │ │ CL.write.1.tlog │ │ │ │ CompilerIdCXX.lastbuildstate │ │ │ │ link.command.1.tlog │ │ │ │ link.read.1.tlog │ │ │ │ link.secondary.1.tlog │ │ │ │ link.write.1.tlog │ │ │ │ │ │ │ └─tmp │ │ ├─VCTargetsPath │ │ │ └─x64 │ │ │ └─Debug │ │ │ │ VCTargetsPath.recipe │ │ │ │ │ │ │ └─VCTargetsPath.tlog │ │ │ VCTargetsPath.lastbuildstate │ │ │ │ │ └─x64 │ │ └─Debug │ ├─CMakeScratch │ └─pkgRedirects ├─include │ face_sdk.h │ ├─models │ faceboxesv2-640x640.onnx │ face_landmarker_pts5_net1.onnx │ face_landmarker_pts5_net2.onnx │ face_recognizer.onnx │ fsanet-conv.onnx │ fsanet-var.onnx │ model_gray_mobilenetv2_rotcls.onnx │ README.md │ ├─out │ └─build │ └─android-arm64-v8a-Debug │ │ build.ninja │ │ CMakeCache.txt │ │ cmake_install.cmake │ │ compile_commands.json │ │ │ ├─.cmake │ │ └─api │ │ └─v1 │ │ ├─query │ │ │ └─client-vscode │ │ │ query.json │ │ │ │ │ └─reply │ │ cache-v2-280d9261f86c5eae5551.json │ │ cmakeFiles-v1-237884303443cb49e6ae.json │ │ codemodel-v2-b503e53ba19612c3bf5b.json │ │ directory-.-Debug-d0094a50bb2071803777.json │ │ index-2025-10-30T08-57-50-0996.json │ │ target-face_sdk_jni-Debug-cdb709bcc770d300f47b.json │ │ toolchains-v1-c98ed65fb5aa016fe6c4.json │ │ │ └─CMakeFiles │ │ cmake.check_cache │ │ CMakeConfigureLog.yaml │ │ rules.ninja │ │ TargetDirectories.txt │ │ │ ├─3.31.9 │ │ │ CMakeCXXCompiler.cmake │ │ │ CMakeDetermineCompilerABI_CXX.bin │ │ │ CMakeSystem.cmake │ │ │ │ │ └─CompilerIdCXX │ │ │ CMakeCXXCompilerId.cpp │ │ │ CMakeCXXCompilerId.o │ │ │ │ │ └─tmp │ ├─face_sdk_jni.dir │ │ └─src │ └─pkgRedirects ├─src │ face_pipeline.cpp │ face_pipeline.h │ face_sdk_api.cpp │ face_sdk_jni.cpp │ └─third_party ├─onnxruntime │ ├─include │ │ cpu_provider_factory.h │ │ nnapi_provider_factory.h │ │ onnxruntime_cxx_api.h │ │ onnxruntime_cxx_inline.h │ │ onnxruntime_c_api.h │ │ onnxruntime_ep_c_api.h │ │ onnxruntime_ep_device_ep_metadata_keys.h │ │ onnxruntime_float16.h │ │ onnxruntime_lite_custom_op.h │ │ onnxruntime_run_options_config_keys.h │ │ onnxruntime_session_options_config_keys.h │ │ │ └─lib │ libonnxruntime.so │ libonnxruntime4j_jni.so │ └─opencv_android └─sdk │ build.gradle │ ├─etc │ │ valgrind.supp │ │ valgrind_3rdparty.supp │ │ │ ├─haarcascades │ │ haarcascade_eye.xml │ │ haarcascade_eye_tree_eyeglasses.xml │ │ haarcascade_frontalcatface.xml │ │ haarcascade_frontalcatface_extended.xml │ │ haarcascade_frontalface_alt.xml │ │ haarcascade_frontalface_alt2.xml │ │ haarcascade_frontalface_alt_tree.xml │ │ haarcascade_frontalface_default.xml │ │ haarcascade_fullbody.xml │ │ haarcascade_lefteye_2splits.xml │ │ haarcascade_license_plate_rus_16stages.xml │ │ haarcascade_lowerbody.xml │ │ haarcascade_profileface.xml │ │ haarcascade_righteye_2splits.xml │ │ haarcascade_russian_plate_number.xml │ │ haarcascade_smile.xml │ │ haarcascade_upperbody.xml │ │ │ ├─lbpcascades │ │ lbpcascade_frontalcatface.xml │ │ lbpcascade_frontalface.xml │ │ lbpcascade_frontalface_improved.xml │ │ lbpcascade_profileface.xml │ │ lbpcascade_silverware.xml │ │ │ └─licenses │ ade-LICENSE │ cpufeatures-LICENSE │ cpufeatures-README.md │ flatbuffers-LICENSE.txt │ ippicv-EULA.txt │ ippicv-readme.htm │ ippicv-third-party-programs.txt │ ippiw-EULA.txt │ ippiw-support.txt │ ippiw-third-party-programs.txt │ ittnotify-BSD-3-Clause.txt │ ittnotify-GPL-2.0-only.txt │ libjpeg-turbo-LICENSE.md │ libjpeg-turbo-README.ijg │ libjpeg-turbo-README.md │ libopenjp2-LICENSE │ libopenjp2-README.md │ libpng-LICENSE │ libpng-README │ libtiff-COPYRIGHT │ mscr-chi_table_LICENSE.txt │ openexr-AUTHORS.ilmbase │ openexr-AUTHORS.openexr │ openexr-LICENSE │ protobuf-LICENSE │ protobuf-README.md │ SoftFloat-COPYING.txt │ tbb-LICENSE.txt │ tbb-README.md │ vasot-LICENSE.txt │ ├─java │ │ AndroidManifest.xml │ │ │ ├─javadoc │ │ │ allclasses-index.html │ │ │ allpackages-index.html │ │ │ constant-values.html │ │ │ element-list │ │ │ help-doc.html │ │ │ index-all.html │ │ │ index.html │ │ │ jquery-ui.overrides.css │ │ │ member-search-index.js │ │ │ module-search-index.js │ │ │ mymath.js │ │ │ overview-summary.html │ │ │ overview-tree.html │ │ │ package-search-index.js │ │ │ script.js │ │ │ search.js │ │ │ serialized-form.html │ │ │ stylesheet.css │ │ │ tag-search-index.js │ │ │ type-search-index.js │ │ │ │ │ ├─legal │ │ │ ASSEMBLY_EXCEPTION │ │ │ jquery.md │ │ │ jqueryUI.md │ │ │ │ │ ├─org │ │ │ └─opencv │ │ │ │ BuildConfig.html │ │ │ │ package-summary.html │ │ │ │ package-tree.html │ │ │ │ R.html │ │ │ │ │ │ │ ├─android │ │ │ │ Camera2Renderer.html │ │ │ │ CameraActivity.html │ │ │ │ CameraBridgeViewBase.CvCameraViewFrame.html │ │ │ │ CameraBridgeViewBase.CvCameraViewListener.html │ │ │ │ CameraBridgeViewBase.CvCameraViewListener2.html │ │ │ │ CameraBridgeViewBase.html │ │ │ │ CameraBridgeViewBase.ListItemAccessor.html │ │ │ │ CameraBridgeViewBase.RotatedCameraFrame.html │ │ │ │ CameraGLRendererBase.html │ │ │ │ CameraGLSurfaceView.CameraTextureListener.html │ │ │ │ CameraGLSurfaceView.html │ │ │ │ CameraRenderer.html │ │ │ │ FpsMeter.html │ │ │ │ JavaCamera2View.html │ │ │ │ JavaCamera2View.JavaCameraSizeAccessor.html │ │ │ │ JavaCameraView.html │ │ │ │ JavaCameraView.JavaCameraSizeAccessor.html │ │ │ │ NativeCameraView.html │ │ │ │ NativeCameraView.OpenCvSizeAccessor.html │ │ │ │ OpenCVLoader.html │ │ │ │ package-summary.html │ │ │ │ package-tree.html │ │ │ │ Utils.html │ │ │ │ │ │ │ ├─calib3d │ │ │ │ Calib3d.html │ │ │ │ package-summary.html │ │ │ │ package-tree.html │ │ │ │ StereoBM.html │ │ │ │ StereoMatcher.html │ │ │ │ StereoSGBM.html │ │ │ │ UsacParams.html │ │ │ │ │ │ │ ├─core │ │ │ │ Algorithm.html │ │ │ │ Core.html │ │ │ │ Core.MinMaxLocResult.html │ │ │ │ CvException.html │ │ │ │ CvType.html │ │ │ │ DMatch.html │ │ │ │ KeyPoint.html │ │ │ │ Mat.Atable.html │ │ │ │ Mat.html │ │ │ │ Mat.Tuple2.html │ │ │ │ Mat.Tuple3.html │ │ │ │ Mat.Tuple4.html │ │ │ │ MatOfByte.html │ │ │ │ MatOfDMatch.html │ │ │ │ MatOfDouble.html │ │ │ │ MatOfFloat.html │ │ │ │ MatOfFloat4.html │ │ │ │ MatOfFloat6.html │ │ │ │ MatOfInt.html │ │ │ │ MatOfInt4.html │ │ │ │ MatOfKeyPoint.html │ │ │ │ MatOfPoint.html │ │ │ │ MatOfPoint2f.html │ │ │ │ MatOfPoint3.html │ │ │ │ MatOfPoint3f.html │ │ │ │ MatOfRect.html │ │ │ │ MatOfRect2d.html │ │ │ │ MatOfRotatedRect.html │ │ │ │ package-summary.html │ │ │ │ package-tree.html │ │ │ │ Point.html │ │ │ │ Point3.html │ │ │ │ Range.html │ │ │ │ Rect.html │ │ │ │ Rect2d.html │ │ │ │ RotatedRect.html │ │ │ │ Scalar.html │ │ │ │ Size.html │ │ │ │ TermCriteria.html │ │ │ │ TickMeter.html │ │ │ │ │ │ │ ├─dnn │ │ │ │ ClassificationModel.html │ │ │ │ DetectionModel.html │ │ │ │ DictValue.html │ │ │ │ Dnn.html │ │ │ │ Image2BlobParams.html │ │ │ │ KeypointsModel.html │ │ │ │ Layer.html │ │ │ │ Model.html │ │ │ │ Net.html │ │ │ │ package-summary.html │ │ │ │ package-tree.html │ │ │ │ SegmentationModel.html │ │ │ │ TextDetectionModel.html │ │ │ │ TextDetectionModel_DB.html │ │ │ │ TextDetectionModel_EAST.html │ │ │ │ TextRecognitionModel.html │ │ │ │ │ │ │ ├─features2d │ │ │ │ AffineFeature.html │ │ │ │ AgastFeatureDetector.html │ │ │ │ AKAZE.html │ │ │ │ BFMatcher.html │ │ │ │ BOWImgDescriptorExtractor.html │ │ │ │ BOWKMeansTrainer.html │ │ │ │ BOWTrainer.html │ │ │ │ BRISK.html │ │ │ │ DescriptorMatcher.html │ │ │ │ FastFeatureDetector.html │ │ │ │ Feature2D.html │ │ │ │ Features2d.html │ │ │ │ FlannBasedMatcher.html │ │ │ │ GFTTDetector.html │ │ │ │ KAZE.html │ │ │ │ MSER.html │ │ │ │ ORB.html │ │ │ │ package-summary.html │ │ │ │ package-tree.html │ │ │ │ SIFT.html │ │ │ │ SimpleBlobDetector.html │ │ │ │ SimpleBlobDetector_Params.html │ │ │ │ │ │ │ ├─imgcodecs │ │ │ │ Animation.html │ │ │ │ Imgcodecs.html │ │ │ │ package-summary.html │ │ │ │ package-tree.html │ │ │ │ │ │ │ ├─imgproc │ │ │ │ CLAHE.html │ │ │ │ GeneralizedHough.html │ │ │ │ GeneralizedHoughBallard.html │ │ │ │ GeneralizedHoughGuil.html │ │ │ │ Imgproc.html │ │ │ │ IntelligentScissorsMB.html │ │ │ │ LineSegmentDetector.html │ │ │ │ Moments.html │ │ │ │ package-summary.html │ │ │ │ package-tree.html │ │ │ │ Subdiv2D.html │ │ │ │ │ │ │ ├─ml │ │ │ │ ANN_MLP.html │ │ │ │ Boost.html │ │ │ │ DTrees.html │ │ │ │ EM.html │ │ │ │ KNearest.html │ │ │ │ LogisticRegression.html │ │ │ │ Ml.html │ │ │ │ NormalBayesClassifier.html │ │ │ │ package-summary.html │ │ │ │ package-tree.html │ │ │ │ ParamGrid.html │ │ │ │ RTrees.html │ │ │ │ StatModel.html │ │ │ │ SVM.html │ │ │ │ SVMSGD.html │ │ │ │ TrainData.html │ │ │ │ │ │ │ ├─objdetect │ │ │ │ ArucoDetector.html │ │ │ │ BarcodeDetector.html │ │ │ │ BaseCascadeClassifier.html │ │ │ │ Board.html │ │ │ │ CascadeClassifier.html │ │ │ │ CharucoBoard.html │ │ │ │ CharucoDetector.html │ │ │ │ CharucoParameters.html │ │ │ │ DetectorParameters.html │ │ │ │ Dictionary.html │ │ │ │ FaceDetectorYN.html │ │ │ │ FaceRecognizerSF.html │ │ │ │ GraphicalCodeDetector.html │ │ │ │ GridBoard.html │ │ │ │ HOGDescriptor.html │ │ │ │ Objdetect.html │ │ │ │ package-summary.html │ │ │ │ package-tree.html │ │ │ │ QRCodeDetector.html │ │ │ │ QRCodeDetectorAruco.html │ │ │ │ QRCodeDetectorAruco_Params.html │ │ │ │ QRCodeEncoder.html │ │ │ │ QRCodeEncoder_Params.html │ │ │ │ RefineParameters.html │ │ │ │ │ │ │ ├─osgi │ │ │ │ OpenCVInterface.html │ │ │ │ OpenCVNativeLoader.html │ │ │ │ package-summary.html │ │ │ │ package-tree.html │ │ │ │ │ │ │ ├─photo │ │ │ │ AlignExposures.html │ │ │ │ AlignMTB.html │ │ │ │ CalibrateCRF.html │ │ │ │ CalibrateDebevec.html │ │ │ │ CalibrateRobertson.html │ │ │ │ MergeDebevec.html │ │ │ │ MergeExposures.html │ │ │ │ MergeMertens.html │ │ │ │ MergeRobertson.html │ │ │ │ package-summary.html │ │ │ │ package-tree.html │ │ │ │ Photo.html │ │ │ │ Tonemap.html │ │ │ │ TonemapDrago.html │ │ │ │ TonemapMantiuk.html │ │ │ │ TonemapReinhard.html │ │ │ │ │ │ │ ├─utils │ │ │ │ Converters.html │ │ │ │ package-summary.html │ │ │ │ package-tree.html │ │ │ │ │ │ │ ├─video │ │ │ │ BackgroundSubtractor.html │ │ │ │ BackgroundSubtractorKNN.html │ │ │ │ BackgroundSubtractorMOG2.html │ │ │ │ DenseOpticalFlow.html │ │ │ │ DISOpticalFlow.html │ │ │ │ FarnebackOpticalFlow.html │ │ │ │ KalmanFilter.html │ │ │ │ package-summary.html │ │ │ │ package-tree.html │ │ │ │ SparseOpticalFlow.html │ │ │ │ SparsePyrLKOpticalFlow.html │ │ │ │ Tracker.html │ │ │ │ TrackerDaSiamRPN.html │ │ │ │ TrackerDaSiamRPN_Params.html │ │ │ │ TrackerGOTURN.html │ │ │ │ TrackerGOTURN_Params.html │ │ │ │ TrackerMIL.html │ │ │ │ TrackerMIL_Params.html │ │ │ │ TrackerNano.html │ │ │ │ TrackerNano_Params.html │ │ │ │ TrackerVit.html │ │ │ │ TrackerVit_Params.html │ │ │ │ VariationalRefinement.html │ │ │ │ Video.html │ │ │ │ │ │ │ └─videoio │ │ │ IStreamReader.html │ │ │ package-summary.html │ │ │ package-tree.html │ │ │ VideoCapture.html │ │ │ Videoio.html │ │ │ VideoWriter.html │ │ │ │ │ ├─resources │ │ │ glass.png │ │ │ x.png │ │ │ │ │ └─script-dir │ │ jquery-3.7.1.min.js │ │ jquery-ui.min.css │ │ jquery-ui.min.js │ │ │ ├─res │ │ └─values │ │ attrs.xml │ │ │ └─src │ └─org │ └─opencv │ ├─android │ │ Camera2Renderer.java │ │ CameraActivity.java │ │ CameraBridgeViewBase.java │ │ CameraGLRendererBase.java │ │ CameraGLSurfaceView.java │ │ CameraRenderer.java │ │ FpsMeter.java │ │ JavaCamera2View.java │ │ JavaCameraView.java │ │ NativeCameraView.java │ │ OpenCVLoader.java │ │ StaticHelper.java │ │ Utils.java │ │ │ ├─calib3d │ │ Calib3d.java │ │ StereoBM.java │ │ StereoMatcher.java │ │ StereoSGBM.java │ │ UsacParams.java │ │ │ ├─core │ │ Algorithm.java │ │ Core.java │ │ CvException.java │ │ CvType.java │ │ DMatch.java │ │ KeyPoint.java │ │ Mat.java │ │ MatAt.kt │ │ MatMatMul.kt │ │ MatOfByte.java │ │ MatOfDMatch.java │ │ MatOfDouble.java │ │ MatOfFloat.java │ │ MatOfFloat4.java │ │ MatOfFloat6.java │ │ MatOfInt.java │ │ MatOfInt4.java │ │ MatOfKeyPoint.java │ │ MatOfPoint.java │ │ MatOfPoint2f.java │ │ MatOfPoint3.java │ │ MatOfPoint3f.java │ │ MatOfRect.java │ │ MatOfRect2d.java │ │ MatOfRotatedRect.java │ │ Point.java │ │ Point3.java │ │ Range.java │ │ Rect.java │ │ Rect2d.java │ │ RotatedRect.java │ │ Scalar.java │ │ Size.java │ │ TermCriteria.java │ │ TickMeter.java │ │ │ ├─dnn │ │ ClassificationModel.java │ │ DetectionModel.java │ │ DictValue.java │ │ Dnn.java │ │ Image2BlobParams.java │ │ KeypointsModel.java │ │ Layer.java │ │ Model.java │ │ Net.java │ │ SegmentationModel.java │ │ TextDetectionModel.java │ │ TextDetectionModel_DB.java │ │ TextDetectionModel_EAST.java │ │ TextRecognitionModel.java │ │ │ ├─features2d │ │ AffineFeature.java │ │ AgastFeatureDetector.java │ │ AKAZE.java │ │ BFMatcher.java │ │ BOWImgDescriptorExtractor.java │ │ BOWKMeansTrainer.java │ │ BOWTrainer.java │ │ BRISK.java │ │ DescriptorMatcher.java │ │ FastFeatureDetector.java │ │ Feature2D.java │ │ Features2d.java │ │ FlannBasedMatcher.java │ │ GFTTDetector.java │ │ KAZE.java │ │ MSER.java │ │ ORB.java │ │ SIFT.java │ │ SimpleBlobDetector.java │ │ SimpleBlobDetector_Params.java │ │ │ ├─imgcodecs │ │ Animation.java │ │ Imgcodecs.java │ │ │ ├─imgproc │ │ CLAHE.java │ │ GeneralizedHough.java │ │ GeneralizedHoughBallard.java │ │ GeneralizedHoughGuil.java │ │ Imgproc.java │ │ IntelligentScissorsMB.java │ │ LineSegmentDetector.java │ │ Moments.java │ │ Subdiv2D.java │ │ │ ├─ml │ │ ANN_MLP.java │ │ Boost.java │ │ DTrees.java │ │ EM.java │ │ KNearest.java │ │ LogisticRegression.java │ │ Ml.java │ │ NormalBayesClassifier.java │ │ ParamGrid.java │ │ RTrees.java │ │ StatModel.java │ │ SVM.java │ │ SVMSGD.java │ │ TrainData.java │ │ │ ├─objdetect │ │ ArucoDetector.java │ │ BarcodeDetector.java │ │ BaseCascadeClassifier.java │ │ Board.java │ │ CascadeClassifier.java │ │ CharucoBoard.java │ │ CharucoDetector.java │ │ CharucoParameters.java │ │ DetectorParameters.java │ │ Dictionary.java │ │ FaceDetectorYN.java │ │ FaceRecognizerSF.java │ │ GraphicalCodeDetector.java │ │ GridBoard.java │ │ HOGDescriptor.java │ │ Objdetect.java │ │ QRCodeDetector.java │ │ QRCodeDetectorAruco.java │ │ QRCodeDetectorAruco_Params.java │ │ QRCodeEncoder.java │ │ QRCodeEncoder_Params.java │ │ RefineParameters.java │ │ │ ├─osgi │ │ OpenCVInterface.java │ │ OpenCVNativeLoader.java │ │ │ ├─photo │ │ AlignExposures.java │ │ AlignMTB.java │ │ CalibrateCRF.java │ │ CalibrateDebevec.java │ │ CalibrateRobertson.java │ │ MergeDebevec.java │ │ MergeExposures.java │ │ MergeMertens.java │ │ MergeRobertson.java │ │ Photo.java │ │ Tonemap.java │ │ TonemapDrago.java │ │ TonemapMantiuk.java │ │ TonemapReinhard.java │ │ │ ├─utils │ │ Converters.java │ │ │ ├─video │ │ BackgroundSubtractor.java │ │ BackgroundSubtractorKNN.java │ │ BackgroundSubtractorMOG2.java │ │ DenseOpticalFlow.java │ │ DISOpticalFlow.java │ │ FarnebackOpticalFlow.java │ │ KalmanFilter.java │ │ SparseOpticalFlow.java │ │ SparsePyrLKOpticalFlow.java │ │ Tracker.java │ │ TrackerDaSiamRPN.java │ │ TrackerDaSiamRPN_Params.java │ │ TrackerGOTURN.java │ │ TrackerGOTURN_Params.java │ │ TrackerMIL.java │ │ TrackerMIL_Params.java │ │ TrackerNano.java │ │ TrackerNano_Params.java │ │ TrackerVit.java │ │ TrackerVit_Params.java │ │ VariationalRefinement.java │ │ Video.java │ │ │ └─videoio │ IStreamReader.java │ VideoCapture.java │ Videoio.java │ VideoWriter.java │ ├─libcxx_helper │ CMakeLists.txt │ dummy.cpp │ └─native ├─3rdparty │ └─libs │ ├─arm64-v8a │ │ libade.a │ │ libcpufeatures.a │ │ libIlmImf.a │ │ libittnotify.a │ │ libkleidicv.a │ │ libkleidicv_hal.a │ │ libkleidicv_thread.a │ │ liblibjpeg-turbo.a │ │ liblibopenjp2.a │ │ liblibpng.a │ │ liblibprotobuf.a │ │ liblibtiff.a │ │ liblibwebp.a │ │ libtbb.a │ │ libtegra_hal.a │ │ │ ├─armeabi-v7a │ │ libade.a │ │ libcpufeatures.a │ │ libIlmImf.a │ │ libittnotify.a │ │ liblibjpeg-turbo.a │ │ liblibopenjp2.a │ │ liblibpng.a │ │ liblibprotobuf.a │ │ liblibtiff.a │ │ liblibwebp.a │ │ libtbb.a │ │ libtegra_hal.a │ │ │ ├─x86 │ │ libade.a │ │ libcpufeatures.a │ │ libIlmImf.a │ │ libipphal.a │ │ libippicv.a │ │ libippiw.a │ │ libittnotify.a │ │ liblibjpeg-turbo.a │ │ liblibopenjp2.a │ │ liblibpng.a │ │ liblibprotobuf.a │ │ liblibtiff.a │ │ liblibwebp.a │ │ libtbb.a │ │ │ └─x86_64 │ libade.a │ libcpufeatures.a │ libIlmImf.a │ libipphal.a │ libippicv.a │ libippiw.a │ libittnotify.a │ liblibjpeg-turbo.a │ liblibopenjp2.a │ liblibpng.a │ liblibprotobuf.a │ liblibtiff.a │ liblibwebp.a │ libtbb.a │ ├─bin │ └─armeabi-v7a │ opencv_test_calib3d │ opencv_test_core │ opencv_test_dnn │ opencv_test_features2d │ opencv_test_flann │ opencv_test_gapi │ opencv_test_highgui │ opencv_test_imgcodecs │ opencv_test_imgproc │ opencv_test_ml │ opencv_test_objdetect │ opencv_test_photo │ opencv_test_stitching │ opencv_test_video │ opencv_test_videoio │ ├─jni │ │ OpenCV-arm64-v8a.mk │ │ OpenCV-armeabi-v7a.mk │ │ OpenCV-x86.mk │ │ OpenCV-x86_64.mk │ │ OpenCV.mk │ │ OpenCVConfig-version.cmake │ │ OpenCVConfig.cmake │ │ │ ├─abi-arm64-v8a │ │ OpenCVConfig-version.cmake │ │ OpenCVConfig.cmake │ │ OpenCVModules-release.cmake │ │ OpenCVModules.cmake │ │ │ ├─abi-armeabi-v7a │ │ OpenCVConfig-version.cmake │ │ OpenCVConfig.cmake │ │ OpenCVModules-release.cmake │ │ OpenCVModules.cmake │ │ │ ├─abi-x86 │ │ OpenCVConfig-version.cmake │ │ OpenCVConfig.cmake │ │ OpenCVModules-release.cmake │ │ OpenCVModules.cmake │ │ │ ├─abi-x86_64 │ │ OpenCVConfig-version.cmake │ │ OpenCVConfig.cmake │ │ OpenCVModules-release.cmake │ │ OpenCVModules.cmake │ │ │ └─include │ └─opencv2 │ │ calib3d.hpp │ │ core.hpp │ │ cvconfig.h │ │ dnn.hpp │ │ features2d.hpp │ │ flann.hpp │ │ gapi.hpp │ │ highgui.hpp │ │ imgcodecs.hpp │ │ imgproc.hpp │ │ ml.hpp │ │ objdetect.hpp │ │ opencv.hpp │ │ opencv_modules.hpp │ │ photo.hpp │ │ stitching.hpp │ │ video.hpp │ │ videoio.hpp │ │ │ ├─calib3d │ │ calib3d.hpp │ │ calib3d_c.h │ │ │ ├─core │ │ │ affine.hpp │ │ │ async.hpp │ │ │ base.hpp │ │ │ bindings_utils.hpp │ │ │ bufferpool.hpp │ │ │ check.hpp │ │ │ core.hpp │ │ │ core_c.h │ │ │ cuda.hpp │ │ │ cuda.inl.hpp │ │ │ cuda_stream_accessor.hpp │ │ │ cuda_types.hpp │ │ │ cvdef.h │ │ │ cvstd.hpp │ │ │ cvstd.inl.hpp │ │ │ cvstd_wrapper.hpp │ │ │ cv_cpu_dispatch.h │ │ │ cv_cpu_helper.h │ │ │ directx.hpp │ │ │ dualquaternion.hpp │ │ │ dualquaternion.inl.hpp │ │ │ eigen.hpp │ │ │ fast_math.hpp │ │ │ mat.hpp │ │ │ mat.inl.hpp │ │ │ matx.hpp │ │ │ matx.inl.hpp │ │ │ neon_utils.hpp │ │ │ ocl.hpp │ │ │ ocl_genbase.hpp │ │ │ opengl.hpp │ │ │ operations.hpp │ │ │ optim.hpp │ │ │ ovx.hpp │ │ │ persistence.hpp │ │ │ quaternion.hpp │ │ │ quaternion.inl.hpp │ │ │ saturate.hpp │ │ │ simd_intrinsics.hpp │ │ │ softfloat.hpp │ │ │ sse_utils.hpp │ │ │ traits.hpp │ │ │ types.hpp │ │ │ types_c.h │ │ │ utility.hpp │ │ │ va_intel.hpp │ │ │ version.hpp │ │ │ vsx_utils.hpp │ │ │ │ │ ├─cuda │ │ │ │ block.hpp │ │ │ │ border_interpolate.hpp │ │ │ │ color.hpp │ │ │ │ common.hpp │ │ │ │ datamov_utils.hpp │ │ │ │ dynamic_smem.hpp │ │ │ │ emulation.hpp │ │ │ │ filters.hpp │ │ │ │ funcattrib.hpp │ │ │ │ functional.hpp │ │ │ │ limits.hpp │ │ │ │ reduce.hpp │ │ │ │ saturate_cast.hpp │ │ │ │ scan.hpp │ │ │ │ simd_functions.hpp │ │ │ │ transform.hpp │ │ │ │ type_traits.hpp │ │ │ │ utility.hpp │ │ │ │ vec_distance.hpp │ │ │ │ vec_math.hpp │ │ │ │ vec_traits.hpp │ │ │ │ warp.hpp │ │ │ │ warp_reduce.hpp │ │ │ │ warp_shuffle.hpp │ │ │ │ │ │ │ └─detail │ │ │ color_detail.hpp │ │ │ reduce.hpp │ │ │ reduce_key_val.hpp │ │ │ transform_detail.hpp │ │ │ type_traits_detail.hpp │ │ │ vec_distance_detail.hpp │ │ │ │ │ ├─detail │ │ │ async_promise.hpp │ │ │ dispatch_helper.impl.hpp │ │ │ exception_ptr.hpp │ │ │ │ │ ├─hal │ │ │ hal.hpp │ │ │ interface.h │ │ │ intrin.hpp │ │ │ intrin_avx.hpp │ │ │ intrin_avx512.hpp │ │ │ intrin_cpp.hpp │ │ │ intrin_forward.hpp │ │ │ intrin_lasx.hpp │ │ │ intrin_legacy_ops.h │ │ │ intrin_lsx.hpp │ │ │ intrin_math.hpp │ │ │ intrin_msa.hpp │ │ │ intrin_neon.hpp │ │ │ intrin_rvv071.hpp │ │ │ intrin_rvv_scalable.hpp │ │ │ intrin_sse.hpp │ │ │ intrin_sse_em.hpp │ │ │ intrin_vsx.hpp │ │ │ intrin_wasm.hpp │ │ │ msa_macros.h │ │ │ simd_utils.impl.hpp │ │ │ │ │ ├─opencl │ │ │ │ ocl_defs.hpp │ │ │ │ opencl_info.hpp │ │ │ │ opencl_svm.hpp │ │ │ │ │ │ │ └─runtime │ │ │ │ opencl_clblas.hpp │ │ │ │ opencl_clfft.hpp │ │ │ │ opencl_core.hpp │ │ │ │ opencl_core_wrappers.hpp │ │ │ │ opencl_gl.hpp │ │ │ │ opencl_gl_wrappers.hpp │ │ │ │ opencl_svm_20.hpp │ │ │ │ opencl_svm_definitions.hpp │ │ │ │ opencl_svm_hsa_extension.hpp │ │ │ │ │ │ │ └─autogenerated │ │ │ opencl_clblas.hpp │ │ │ opencl_clfft.hpp │ │ │ opencl_core.hpp │ │ │ opencl_core_wrappers.hpp │ │ │ opencl_gl.hpp │ │ │ opencl_gl_wrappers.hpp │ │ │ │ │ ├─parallel │ │ │ │ parallel_backend.hpp │ │ │ │ │ │ │ └─backend │ │ │ parallel_for.openmp.hpp │ │ │ parallel_for.tbb.hpp │ │ │ │ │ └─utils │ │ allocator_stats.hpp │ │ allocator_stats.impl.hpp │ │ filesystem.hpp │ │ fp_control_utils.hpp │ │ instrumentation.hpp │ │ logger.defines.hpp │ │ logger.hpp │ │ logtag.hpp │ │ tls.hpp │ │ trace.hpp │ │ │ ├─dnn │ │ │ all_layers.hpp │ │ │ dict.hpp │ │ │ dnn.hpp │ │ │ dnn.inl.hpp │ │ │ layer.details.hpp │ │ │ layer.hpp │ │ │ shape_utils.hpp │ │ │ version.hpp │ │ │ │ │ └─utils │ │ debug_utils.hpp │ │ inference_engine.hpp │ │ │ ├─features2d │ │ │ features2d.hpp │ │ │ │ │ └─hal │ │ interface.h │ │ │ ├─flann │ │ allocator.h │ │ all_indices.h │ │ any.h │ │ autotuned_index.h │ │ composite_index.h │ │ config.h │ │ defines.h │ │ dist.h │ │ dummy.h │ │ dynamic_bitset.h │ │ flann.hpp │ │ flann_base.hpp │ │ general.h │ │ ground_truth.h │ │ heap.h │ │ hierarchical_clustering_index.h │ │ index_testing.h │ │ kdtree_index.h │ │ kdtree_single_index.h │ │ kmeans_index.h │ │ linear_index.h │ │ logger.h │ │ lsh_index.h │ │ lsh_table.h │ │ matrix.h │ │ miniflann.hpp │ │ nn_index.h │ │ object_factory.h │ │ params.h │ │ random.h │ │ result_set.h │ │ sampling.h │ │ saving.h │ │ simplex_downhill.h │ │ timer.h │ │ │ ├─gapi │ │ │ core.hpp │ │ │ garg.hpp │ │ │ garray.hpp │ │ │ gasync_context.hpp │ │ │ gcall.hpp │ │ │ gcommon.hpp │ │ │ gcompiled.hpp │ │ │ gcompiled_async.hpp │ │ │ gcompoundkernel.hpp │ │ │ gcomputation.hpp │ │ │ gcomputation_async.hpp │ │ │ gframe.hpp │ │ │ gkernel.hpp │ │ │ gmat.hpp │ │ │ gmetaarg.hpp │ │ │ gopaque.hpp │ │ │ gproto.hpp │ │ │ gscalar.hpp │ │ │ gstreaming.hpp │ │ │ gtransform.hpp │ │ │ gtyped.hpp │ │ │ gtype_traits.hpp │ │ │ imgproc.hpp │ │ │ infer.hpp │ │ │ media.hpp │ │ │ opencv_includes.hpp │ │ │ operators.hpp │ │ │ ot.hpp │ │ │ render.hpp │ │ │ rmat.hpp │ │ │ s11n.hpp │ │ │ stereo.hpp │ │ │ video.hpp │ │ │ │ │ ├─cpu │ │ │ core.hpp │ │ │ gcpukernel.hpp │ │ │ imgproc.hpp │ │ │ ot.hpp │ │ │ stereo.hpp │ │ │ video.hpp │ │ │ │ │ ├─fluid │ │ │ core.hpp │ │ │ gfluidbuffer.hpp │ │ │ gfluidkernel.hpp │ │ │ imgproc.hpp │ │ │ │ │ ├─gpu │ │ │ core.hpp │ │ │ ggpukernel.hpp │ │ │ imgproc.hpp │ │ │ │ │ ├─infer │ │ │ bindings_ie.hpp │ │ │ bindings_onnx.hpp │ │ │ bindings_ov.hpp │ │ │ ie.hpp │ │ │ onnx.hpp │ │ │ ov.hpp │ │ │ parsers.hpp │ │ │ │ │ ├─oak │ │ │ infer.hpp │ │ │ oak.hpp │ │ │ │ │ ├─ocl │ │ │ core.hpp │ │ │ goclkernel.hpp │ │ │ imgproc.hpp │ │ │ │ │ ├─own │ │ │ assert.hpp │ │ │ convert.hpp │ │ │ cvdefs.hpp │ │ │ exports.hpp │ │ │ mat.hpp │ │ │ saturate.hpp │ │ │ scalar.hpp │ │ │ types.hpp │ │ │ │ │ ├─plaidml │ │ │ core.hpp │ │ │ gplaidmlkernel.hpp │ │ │ plaidml.hpp │ │ │ │ │ ├─python │ │ │ python.hpp │ │ │ │ │ ├─render │ │ │ render.hpp │ │ │ render_types.hpp │ │ │ │ │ ├─s11n │ │ │ base.hpp │ │ │ │ │ ├─streaming │ │ │ │ cap.hpp │ │ │ │ desync.hpp │ │ │ │ format.hpp │ │ │ │ meta.hpp │ │ │ │ queue_source.hpp │ │ │ │ source.hpp │ │ │ │ sync.hpp │ │ │ │ │ │ │ ├─gstreamer │ │ │ │ gstreamerpipeline.hpp │ │ │ │ gstreamersource.hpp │ │ │ │ │ │ │ └─onevpl │ │ │ accel_types.hpp │ │ │ cfg_params.hpp │ │ │ data_provider_interface.hpp │ │ │ default.hpp │ │ │ device_selector_interface.hpp │ │ │ source.hpp │ │ │ │ │ └─util │ │ any.hpp │ │ compiler_hints.hpp │ │ copy_through_move.hpp │ │ optional.hpp │ │ throw.hpp │ │ type_traits.hpp │ │ util.hpp │ │ variant.hpp │ │ │ ├─highgui │ │ highgui.hpp │ │ highgui_c.h │ │ │ ├─imgcodecs │ │ │ imgcodecs.hpp │ │ │ imgcodecs_c.h │ │ │ ios.h │ │ │ macosx.h │ │ │ │ │ └─legacy │ │ constants_c.h │ │ │ ├─imgproc │ │ │ bindings.hpp │ │ │ imgproc.hpp │ │ │ imgproc_c.h │ │ │ segmentation.hpp │ │ │ types_c.h │ │ │ │ │ ├─detail │ │ │ gcgraph.hpp │ │ │ legacy.hpp │ │ │ │ │ └─hal │ │ hal.hpp │ │ interface.h │ │ │ ├─ml │ │ ml.hpp │ │ ml.inl.hpp │ │ │ ├─objdetect │ │ aruco_board.hpp │ │ aruco_detector.hpp │ │ aruco_dictionary.hpp │ │ barcode.hpp │ │ charuco_detector.hpp │ │ detection_based_tracker.hpp │ │ face.hpp │ │ graphical_code_detector.hpp │ │ objdetect.hpp │ │ │ ├─photo │ │ │ cuda.hpp │ │ │ photo.hpp │ │ │ │ │ └─legacy │ │ constants_c.h │ │ │ ├─stitching │ │ │ warpers.hpp │ │ │ │ │ └─detail │ │ autocalib.hpp │ │ blenders.hpp │ │ camera.hpp │ │ exposure_compensate.hpp │ │ matchers.hpp │ │ motion_estimators.hpp │ │ seam_finders.hpp │ │ timelapsers.hpp │ │ util.hpp │ │ util_inl.hpp │ │ warpers.hpp │ │ warpers_inl.hpp │ │ │ ├─video │ │ │ background_segm.hpp │ │ │ tracking.hpp │ │ │ video.hpp │ │ │ │ │ ├─detail │ │ │ tracking.detail.hpp │ │ │ │ │ └─legacy │ │ constants_c.h │ │ │ └─videoio │ │ registry.hpp │ │ videoio.hpp │ │ videoio_c.h │ │ │ └─legacy │ constants_c.h │ ├─libs │ ├─arm64-v8a │ │ libopencv_java4.so │ │ │ ├─armeabi-v7a │ │ libopencv_java4.so │ │ │ ├─x86 │ │ libopencv_java4.so │ │ │ └─x86_64 │ libopencv_java4.so │ └─staticlibs ├─arm64-v8a │ libopencv_calib3d.a │ libopencv_core.a │ libopencv_dnn.a │ libopencv_features2d.a │ libopencv_flann.a │ libopencv_gapi.a │ libopencv_highgui.a │ libopencv_imgcodecs.a │ libopencv_imgproc.a │ libopencv_ml.a │ libopencv_objdetect.a │ libopencv_photo.a │ libopencv_stitching.a │ libopencv_video.a │ libopencv_videoio.a │ ├─armeabi-v7a │ libopencv_calib3d.a │ libopencv_core.a │ libopencv_dnn.a │ libopencv_features2d.a │ libopencv_flann.a │ libopencv_gapi.a │ libopencv_highgui.a │ libopencv_imgcodecs.a │ libopencv_imgproc.a │ libopencv_ml.a │ libopencv_objdetect.a │ libopencv_photo.a │ libopencv_stitching.a │ libopencv_video.a │ libopencv_videoio.a │ ├─x86 │ libopencv_calib3d.a │ libopencv_core.a │ libopencv_dnn.a │ libopencv_features2d.a │ libopencv_flann.a │ libopencv_gapi.a │ libopencv_highgui.a │ libopencv_imgcodecs.a │ libopencv_imgproc.a │ libopencv_ml.a │ libopencv_objdetect.a │ libopencv_photo.a │ libopencv_stitching.a │ libopencv_video.a │ libopencv_videoio.a │ └─x86_64 libopencv_calib3d.a libopencv_core.a libopencv_dnn.a libopencv_features2d.a libopencv_flann.a libopencv_gapi.a libopencv_highgui.a libopencv_imgcodecs.a libopencv_imgproc.a libopencv_ml.a libopencv_objdetect.a libopencv_photo.a libopencv_stitching.a libopencv_video.a libopencv_videoio.a