Skip to content

Instantly share code, notes, and snippets.

@aaaron7
Created January 22, 2021 06:12
Show Gist options
  • Save aaaron7/d7be4f4d9e38e7ef72bd6602bc06aca4 to your computer and use it in GitHub Desktop.
Save aaaron7/d7be4f4d9e38e7ef72bd6602bc06aca4 to your computer and use it in GitHub Desktop.
cmake_minimum_required(VERSION 3.4.1)
project(mediapipe)
set(CMAKE_CXX_STANDARD 14)
include_directories(third_party/MNN-android-sdk/jni/includes)
include_directories(third_party/MNN.framework/Headers)
include_directories(third_party/MNN.framework/Headers/expr)
include_directories(third_party/mnn_macos/include)
include_directories(third_party/mnn_macos/include/MNN)
include_directories(third_party/mnn_macos/include/MNN/expr)
include_directories(third_party/mnn_macos/include/MNN/plugin)
include_directories(third_party/OpenCV-android-sdk/samples/face-detection/jni)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/calib3d)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/detail)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/hal)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/opencl)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/opencl/runtime)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/opencl/runtime/autogenerated)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/utils)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/dnn)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/features2d)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/features2d/hal)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/highgui)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/imgcodecs)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/imgproc)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/imgproc/detail)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/imgproc/hal)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/ml)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/objdetect)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/photo)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/shape)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/stitching)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/stitching/detail)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/superres)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/video)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/videoio)
include_directories(third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/videostab)
include_directories(third_party/opencv2.framework/Headers)
include_directories(third_party/opencv2.framework/Headers/calib3d)
include_directories(third_party/opencv2.framework/Headers/core)
include_directories(third_party/opencv2.framework/Headers/core/hal)
include_directories(third_party/opencv2.framework/Headers/features2d)
include_directories(third_party/opencv2.framework/Headers/flann)
include_directories(third_party/opencv2.framework/Headers/highgui)
include_directories(third_party/opencv2.framework/Headers/imgcodecs)
include_directories(third_party/opencv2.framework/Headers/imgproc)
include_directories(third_party/opencv2.framework/Headers/imgproc/detail)
include_directories(third_party/opencv2.framework/Headers/imgproc/hal)
include_directories(third_party/opencv2.framework/Headers/ml)
include_directories(third_party/opencv2.framework/Headers/objdetect)
include_directories(third_party/opencv2.framework/Headers/photo)
include_directories(third_party/opencv2.framework/Headers/shape)
include_directories(third_party/opencv2.framework/Headers/stitching)
include_directories(third_party/opencv2.framework/Headers/stitching/detail)
include_directories(third_party/opencv2.framework/Headers/video)
include_directories(third_party/opencv2.framework/Headers/videoio)
include_directories(third_party/opencv2.framework/Headers/videostab)
include_directories(third_party/opencv2.framework/Versions/A/Headers)
include_directories(third_party/opencv2.framework/Versions/A/Headers/calib3d)
include_directories(third_party/opencv2.framework/Versions/A/Headers/core)
include_directories(third_party/opencv2.framework/Versions/A/Headers/core/hal)
include_directories(third_party/opencv2.framework/Versions/A/Headers/features2d)
include_directories(third_party/opencv2.framework/Versions/A/Headers/flann)
include_directories(third_party/opencv2.framework/Versions/A/Headers/highgui)
include_directories(third_party/opencv2.framework/Versions/A/Headers/imgcodecs)
include_directories(third_party/opencv2.framework/Versions/A/Headers/imgproc)
include_directories(third_party/opencv2.framework/Versions/A/Headers/imgproc/detail)
include_directories(third_party/opencv2.framework/Versions/A/Headers/imgproc/hal)
include_directories(third_party/opencv2.framework/Versions/A/Headers/ml)
include_directories(third_party/opencv2.framework/Versions/A/Headers/objdetect)
include_directories(third_party/opencv2.framework/Versions/A/Headers/photo)
include_directories(third_party/opencv2.framework/Versions/A/Headers/shape)
include_directories(third_party/opencv2.framework/Versions/A/Headers/stitching)
include_directories(third_party/opencv2.framework/Versions/A/Headers/stitching/detail)
include_directories(third_party/opencv2.framework/Versions/A/Headers/video)
include_directories(third_party/opencv2.framework/Versions/A/Headers/videoio)
include_directories(third_party/opencv2.framework/Versions/A/Headers/videostab)
include_directories(third_party/opencv2.framework/Versions/Current/Headers)
include_directories(third_party/opencv2.framework/Versions/Current/Headers/calib3d)
include_directories(third_party/opencv2.framework/Versions/Current/Headers/core)
include_directories(third_party/opencv2.framework/Versions/Current/Headers/core/hal)
include_directories(third_party/opencv2.framework/Versions/Current/Headers/features2d)
include_directories(third_party/opencv2.framework/Versions/Current/Headers/flann)
include_directories(third_party/opencv2.framework/Versions/Current/Headers/highgui)
include_directories(third_party/opencv2.framework/Versions/Current/Headers/imgcodecs)
include_directories(third_party/opencv2.framework/Versions/Current/Headers/imgproc)
include_directories(third_party/opencv2.framework/Versions/Current/Headers/imgproc/detail)
include_directories(third_party/opencv2.framework/Versions/Current/Headers/imgproc/hal)
include_directories(third_party/opencv2.framework/Versions/Current/Headers/ml)
include_directories(third_party/opencv2.framework/Versions/Current/Headers/objdetect)
include_directories(third_party/opencv2.framework/Versions/Current/Headers/photo)
include_directories(third_party/opencv2.framework/Versions/Current/Headers/shape)
include_directories(third_party/opencv2.framework/Versions/Current/Headers/stitching)
include_directories(third_party/opencv2.framework/Versions/Current/Headers/stitching/detail)
include_directories(third_party/opencv2.framework/Versions/Current/Headers/video)
include_directories(third_party/opencv2.framework/Versions/Current/Headers/videoio)
include_directories(third_party/opencv2.framework/Versions/Current/Headers/videostab)
include_directories(mediapipe/calculators)
include_directories(mediapipe/calculators/audio)
include_directories(mediapipe/calculators/core)
include_directories(mediapipe/calculators/image)
include_directories(mediapipe/calculators/internal)
include_directories(mediapipe/calculators/mnn)
include_directories(mediapipe/calculators/tensorflow)
include_directories(mediapipe/calculators/tflite)
include_directories(mediapipe/calculators/util)
include_directories(mediapipe/calculators/video/tool)
include_directories(mediapipe/examples/desktop/autoflip/calculators)
include_directories(mediapipe/examples/desktop/autoflip/quality)
include_directories(mediapipe/examples/ios/common)
include_directories(mediapipe/examples/ios/facedetectioncpu)
include_directories(mediapipe/examples/ios/facemeshgpu)
include_directories(mediapipe/examples/ios/framework)
include_directories(mediapipe/examples/ios/handtrackinggpu)
include_directories(mediapipe/examples/ios/iristrackinggpu)
include_directories(mediapipe/examples/ios/multihandtrackinggpu)
include_directories(mediapipe/examples/ios/upperbodyposetrackinggpu)
include_directories(mediapipe/framework)
include_directories(mediapipe/framework/deps)
include_directories(mediapipe/framework/formats)
include_directories(mediapipe/framework/formats/motion)
include_directories(mediapipe/framework/port)
include_directories(mediapipe/framework/profiler)
include_directories(mediapipe/framework/profiler/reporter)
include_directories(mediapipe/framework/stat)
include_directories(mediapipe/framework/stream_handler)
include_directories(mediapipe/framework/tool)
include_directories(mediapipe/gpu)
include_directories(mediapipe/graphs/instant_motion_tracking/calculators)
include_directories(mediapipe/graphs/object_detection_3d/calculators)
include_directories(mediapipe/graphs/pose_tracking/calculators)
include_directories(mediapipe/include)
include_directories(mediapipe/include/AdPred)
include_directories(mediapipe/java/com/ali/uc/mediapipe/framework/jni)
include_directories(mediapipe/objc)
include_directories(mediapipe/python/pybind)
include_directories(mediapipe/util)
include_directories(mediapipe/util/android)
include_directories(mediapipe/util/android/file/base)
include_directories(mediapipe/util/sequence)
include_directories(mediapipe/util/tflite)
include_directories(mediapipe/util/tflite/operations)
include_directories(mediapipe/util/tracking)
add_executable(mediapipe
third_party/MNN-android-sdk/jni/includes/AutoTime.hpp
third_party/MNN-android-sdk/jni/includes/ErrorCode.hpp
third_party/MNN-android-sdk/jni/includes/HalideRuntime.h
third_party/MNN-android-sdk/jni/includes/ImageProcess.hpp
third_party/MNN-android-sdk/jni/includes/Interpreter.hpp
third_party/MNN-android-sdk/jni/includes/Matrix.h
third_party/MNN-android-sdk/jni/includes/MNNDefine.h
third_party/MNN-android-sdk/jni/includes/MNNForwardType.h
third_party/MNN-android-sdk/jni/includes/Rect.h
third_party/MNN-android-sdk/jni/includes/Tensor.hpp
third_party/MNN-android-sdk/jni/mnnnetnative.cpp
third_party/MNN-android-sdk/jni/mnnportraitnative.cpp
third_party/MNN-android-sdk/libs/arm64-v8a/libc++_shared.so
third_party/MNN-android-sdk/libs/arm64-v8a/libMNN.so
third_party/MNN-android-sdk/libs/armeabi-v7a/libc++_shared.so
third_party/MNN-android-sdk/libs/armeabi-v7a/libMNN.so
third_party/MNN.framework/_CodeSignature/CodeDirectory
third_party/MNN.framework/_CodeSignature/CodeRequirements
third_party/MNN.framework/_CodeSignature/CodeRequirements-1
third_party/MNN.framework/_CodeSignature/CodeResources
third_party/MNN.framework/_CodeSignature/CodeSignature
third_party/MNN.framework/Headers/expr/Executor.hpp
third_party/MNN.framework/Headers/expr/Expr.hpp
third_party/MNN.framework/Headers/expr/ExprCreator.hpp
third_party/MNN.framework/Headers/expr/MathOp.hpp
third_party/MNN.framework/Headers/expr/NeuralNetWorkOp.hpp
third_party/MNN.framework/Headers/expr/Optimizer.hpp
third_party/MNN.framework/Headers/AutoTime.hpp
third_party/MNN.framework/Headers/ErrorCode.hpp
third_party/MNN.framework/Headers/HalideRuntime.h
third_party/MNN.framework/Headers/ImageProcess.hpp
third_party/MNN.framework/Headers/Interpreter.hpp
third_party/MNN.framework/Headers/Matrix.h
third_party/MNN.framework/Headers/MNNDefine.h
third_party/MNN.framework/Headers/MNNForwardType.h
third_party/MNN.framework/Headers/MNNSharedContext.h
third_party/MNN.framework/Headers/Rect.h
third_party/MNN.framework/Headers/Tensor.hpp
third_party/MNN.framework/Info.plist
third_party/MNN.framework/MNN
third_party/mnn_macos/include/MNN/expr/Executor.hpp
third_party/mnn_macos/include/MNN/expr/Expr.hpp
third_party/mnn_macos/include/MNN/expr/ExprCreator.hpp
third_party/mnn_macos/include/MNN/expr/MathOp.hpp
third_party/mnn_macos/include/MNN/expr/NeuralNetWorkOp.hpp
third_party/mnn_macos/include/MNN/expr/Optimizer.hpp
third_party/mnn_macos/include/MNN/plugin/PluginContext.hpp
third_party/mnn_macos/include/MNN/plugin/PluginKernel.hpp
third_party/mnn_macos/include/MNN/plugin/PluginShapeInference.hpp
third_party/mnn_macos/include/MNN/AutoTime.hpp
third_party/mnn_macos/include/MNN/ErrorCode.hpp
third_party/mnn_macos/include/MNN/HalideRuntime.h
third_party/mnn_macos/include/MNN/ImageProcess.hpp
third_party/mnn_macos/include/MNN/Interpreter.hpp
third_party/mnn_macos/include/MNN/Matrix.h
third_party/mnn_macos/include/MNN/MNNDefine.h
third_party/mnn_macos/include/MNN/MNNForwardType.h
third_party/mnn_macos/include/MNN/MNNSharedContext.h
third_party/mnn_macos/include/MNN/Rect.h
third_party/mnn_macos/include/MNN/Tensor.hpp
third_party/mnn_macos/lib/libMNN.dylib
third_party/mnn_macos/CMakeLists.txt
third_party/mnn_macos/readme
third_party/OpenCV-android-sdk/apk/OpenCV_3.4.3_Manager_3.43_arm64-v8a.apk
third_party/OpenCV-android-sdk/apk/OpenCV_3.4.3_Manager_3.43_armeabi-v7a.apk
third_party/OpenCV-android-sdk/apk/OpenCV_3.4.3_Manager_3.43_armeabi.apk
third_party/OpenCV-android-sdk/apk/OpenCV_3.4.3_Manager_3.43_mips.apk
third_party/OpenCV-android-sdk/apk/OpenCV_3.4.3_Manager_3.43_mips64.apk
third_party/OpenCV-android-sdk/apk/OpenCV_3.4.3_Manager_3.43_x86.apk
third_party/OpenCV-android-sdk/apk/OpenCV_3.4.3_Manager_3.43_x86_64.apk
third_party/OpenCV-android-sdk/apk/readme.txt
third_party/OpenCV-android-sdk/samples/15-puzzle/res/drawable/icon.png
third_party/OpenCV-android-sdk/samples/15-puzzle/res/values/strings.xml
third_party/OpenCV-android-sdk/samples/15-puzzle/src/org/opencv/samples/puzzle15/Puzzle15Activity.java
third_party/OpenCV-android-sdk/samples/15-puzzle/src/org/opencv/samples/puzzle15/Puzzle15Processor.java
third_party/OpenCV-android-sdk/samples/15-puzzle/AndroidManifest.xml
third_party/OpenCV-android-sdk/samples/15-puzzle/project.properties
third_party/OpenCV-android-sdk/samples/camera-calibration/res/drawable/icon.png
third_party/OpenCV-android-sdk/samples/camera-calibration/res/layout/camera_calibration_surface_view.xml
third_party/OpenCV-android-sdk/samples/camera-calibration/res/menu/calibration.xml
third_party/OpenCV-android-sdk/samples/camera-calibration/res/values/strings.xml
third_party/OpenCV-android-sdk/samples/camera-calibration/src/org/opencv/samples/cameracalibration/CalibrationResult.java
third_party/OpenCV-android-sdk/samples/camera-calibration/src/org/opencv/samples/cameracalibration/CameraCalibrationActivity.java
third_party/OpenCV-android-sdk/samples/camera-calibration/src/org/opencv/samples/cameracalibration/CameraCalibrator.java
third_party/OpenCV-android-sdk/samples/camera-calibration/src/org/opencv/samples/cameracalibration/OnCameraFrameRender.java
third_party/OpenCV-android-sdk/samples/camera-calibration/AndroidManifest.xml
third_party/OpenCV-android-sdk/samples/camera-calibration/project.properties
third_party/OpenCV-android-sdk/samples/color-blob-detection/res/drawable/icon.png
third_party/OpenCV-android-sdk/samples/color-blob-detection/res/layout/color_blob_detection_surface_view.xml
third_party/OpenCV-android-sdk/samples/color-blob-detection/res/values/strings.xml
third_party/OpenCV-android-sdk/samples/color-blob-detection/src/org/opencv/samples/colorblobdetect/ColorBlobDetectionActivity.java
third_party/OpenCV-android-sdk/samples/color-blob-detection/src/org/opencv/samples/colorblobdetect/ColorBlobDetector.java
third_party/OpenCV-android-sdk/samples/color-blob-detection/AndroidManifest.xml
third_party/OpenCV-android-sdk/samples/color-blob-detection/project.properties
third_party/OpenCV-android-sdk/samples/face-detection/jni/Android.mk
third_party/OpenCV-android-sdk/samples/face-detection/jni/Application.mk
third_party/OpenCV-android-sdk/samples/face-detection/jni/DetectionBasedTracker_jni.cpp
third_party/OpenCV-android-sdk/samples/face-detection/jni/DetectionBasedTracker_jni.h
third_party/OpenCV-android-sdk/samples/face-detection/res/drawable/icon.png
third_party/OpenCV-android-sdk/samples/face-detection/res/layout/face_detect_surface_view.xml
third_party/OpenCV-android-sdk/samples/face-detection/res/raw/lbpcascade_frontalface.xml
third_party/OpenCV-android-sdk/samples/face-detection/res/values/strings.xml
third_party/OpenCV-android-sdk/samples/face-detection/src/org/opencv/samples/facedetect/DetectionBasedTracker.java
third_party/OpenCV-android-sdk/samples/face-detection/src/org/opencv/samples/facedetect/FdActivity.java
third_party/OpenCV-android-sdk/samples/face-detection/AndroidManifest.xml
third_party/OpenCV-android-sdk/samples/face-detection/project.properties
third_party/OpenCV-android-sdk/samples/image-manipulations/res/drawable/icon.png
third_party/OpenCV-android-sdk/samples/image-manipulations/res/layout/image_manipulations_surface_view.xml
third_party/OpenCV-android-sdk/samples/image-manipulations/res/values/strings.xml
third_party/OpenCV-android-sdk/samples/image-manipulations/src/org/opencv/samples/imagemanipulations/ImageManipulationsActivity.java
third_party/OpenCV-android-sdk/samples/image-manipulations/AndroidManifest.xml
third_party/OpenCV-android-sdk/samples/image-manipulations/project.properties
third_party/OpenCV-android-sdk/samples/tutorial-1-camerapreview/res/drawable/icon.png
third_party/OpenCV-android-sdk/samples/tutorial-1-camerapreview/res/layout/tutorial1_surface_view.xml
third_party/OpenCV-android-sdk/samples/tutorial-1-camerapreview/res/values/strings.xml
third_party/OpenCV-android-sdk/samples/tutorial-1-camerapreview/src/org/opencv/samples/tutorial1/Tutorial1Activity.java
third_party/OpenCV-android-sdk/samples/tutorial-1-camerapreview/AndroidManifest.xml
third_party/OpenCV-android-sdk/samples/tutorial-1-camerapreview/project.properties
third_party/OpenCV-android-sdk/samples/tutorial-2-mixedprocessing/jni/Android.mk
third_party/OpenCV-android-sdk/samples/tutorial-2-mixedprocessing/jni/Application.mk
third_party/OpenCV-android-sdk/samples/tutorial-2-mixedprocessing/jni/jni_part.cpp
third_party/OpenCV-android-sdk/samples/tutorial-2-mixedprocessing/res/drawable/icon.png
third_party/OpenCV-android-sdk/samples/tutorial-2-mixedprocessing/res/layout/tutorial2_surface_view.xml
third_party/OpenCV-android-sdk/samples/tutorial-2-mixedprocessing/res/values/strings.xml
third_party/OpenCV-android-sdk/samples/tutorial-2-mixedprocessing/src/org/opencv/samples/tutorial2/Tutorial2Activity.java
third_party/OpenCV-android-sdk/samples/tutorial-2-mixedprocessing/AndroidManifest.xml
third_party/OpenCV-android-sdk/samples/tutorial-2-mixedprocessing/project.properties
third_party/OpenCV-android-sdk/samples/tutorial-3-cameracontrol/res/drawable/icon.png
third_party/OpenCV-android-sdk/samples/tutorial-3-cameracontrol/res/layout/tutorial3_surface_view.xml
third_party/OpenCV-android-sdk/samples/tutorial-3-cameracontrol/res/values/strings.xml
third_party/OpenCV-android-sdk/samples/tutorial-3-cameracontrol/src/org/opencv/samples/tutorial3/Tutorial3Activity.java
third_party/OpenCV-android-sdk/samples/tutorial-3-cameracontrol/src/org/opencv/samples/tutorial3/Tutorial3View.java
third_party/OpenCV-android-sdk/samples/tutorial-3-cameracontrol/AndroidManifest.xml
third_party/OpenCV-android-sdk/samples/tutorial-3-cameracontrol/project.properties
third_party/OpenCV-android-sdk/samples/example-15-puzzle.apk
third_party/OpenCV-android-sdk/samples/example-camera-calibration.apk
third_party/OpenCV-android-sdk/samples/example-color-blob-detection.apk
third_party/OpenCV-android-sdk/samples/example-face-detection.apk
third_party/OpenCV-android-sdk/samples/example-image-manipulations.apk
third_party/OpenCV-android-sdk/samples/example-tutorial-1-camerapreview.apk
third_party/OpenCV-android-sdk/samples/example-tutorial-2-mixedprocessing.apk
third_party/OpenCV-android-sdk/samples/example-tutorial-3-cameracontrol.apk
third_party/OpenCV-android-sdk/sdk/etc/haarcascades/haarcascade_eye.xml
third_party/OpenCV-android-sdk/sdk/etc/haarcascades/haarcascade_eye_tree_eyeglasses.xml
third_party/OpenCV-android-sdk/sdk/etc/haarcascades/haarcascade_frontalcatface.xml
third_party/OpenCV-android-sdk/sdk/etc/haarcascades/haarcascade_frontalcatface_extended.xml
third_party/OpenCV-android-sdk/sdk/etc/haarcascades/haarcascade_frontalface_alt.xml
third_party/OpenCV-android-sdk/sdk/etc/haarcascades/haarcascade_frontalface_alt2.xml
third_party/OpenCV-android-sdk/sdk/etc/haarcascades/haarcascade_frontalface_alt_tree.xml
third_party/OpenCV-android-sdk/sdk/etc/haarcascades/haarcascade_frontalface_default.xml
third_party/OpenCV-android-sdk/sdk/etc/haarcascades/haarcascade_fullbody.xml
third_party/OpenCV-android-sdk/sdk/etc/haarcascades/haarcascade_lefteye_2splits.xml
third_party/OpenCV-android-sdk/sdk/etc/haarcascades/haarcascade_licence_plate_rus_16stages.xml
third_party/OpenCV-android-sdk/sdk/etc/haarcascades/haarcascade_lowerbody.xml
third_party/OpenCV-android-sdk/sdk/etc/haarcascades/haarcascade_profileface.xml
third_party/OpenCV-android-sdk/sdk/etc/haarcascades/haarcascade_righteye_2splits.xml
third_party/OpenCV-android-sdk/sdk/etc/haarcascades/haarcascade_russian_plate_number.xml
third_party/OpenCV-android-sdk/sdk/etc/haarcascades/haarcascade_smile.xml
third_party/OpenCV-android-sdk/sdk/etc/haarcascades/haarcascade_upperbody.xml
third_party/OpenCV-android-sdk/sdk/etc/lbpcascades/lbpcascade_frontalcatface.xml
third_party/OpenCV-android-sdk/sdk/etc/lbpcascades/lbpcascade_frontalface.xml
third_party/OpenCV-android-sdk/sdk/etc/lbpcascades/lbpcascade_frontalface_improved.xml
third_party/OpenCV-android-sdk/sdk/etc/lbpcascades/lbpcascade_profileface.xml
third_party/OpenCV-android-sdk/sdk/etc/lbpcascades/lbpcascade_silverware.xml
third_party/OpenCV-android-sdk/sdk/etc/licenses/cpufeatures-LICENSE
third_party/OpenCV-android-sdk/sdk/etc/licenses/cpufeatures-README.md
third_party/OpenCV-android-sdk/sdk/etc/licenses/ippicv-ippEULA.txt
third_party/OpenCV-android-sdk/sdk/etc/licenses/ippicv-readme.htm
third_party/OpenCV-android-sdk/sdk/etc/licenses/ippiw-EULA.txt
third_party/OpenCV-android-sdk/sdk/etc/licenses/ippiw-redist.txt
third_party/OpenCV-android-sdk/sdk/etc/licenses/ippiw-support.txt
third_party/OpenCV-android-sdk/sdk/etc/licenses/ippiw-third-party-programs.txt
third_party/OpenCV-android-sdk/sdk/etc/licenses/ittnotify-LICENSE.BSD
third_party/OpenCV-android-sdk/sdk/etc/licenses/ittnotify-LICENSE.GPL
third_party/OpenCV-android-sdk/sdk/etc/licenses/jasper-copyright
third_party/OpenCV-android-sdk/sdk/etc/licenses/jasper-LICENSE
third_party/OpenCV-android-sdk/sdk/etc/licenses/jasper-README
third_party/OpenCV-android-sdk/sdk/etc/licenses/libjpeg-turbo-LICENSE.md
third_party/OpenCV-android-sdk/sdk/etc/licenses/libjpeg-turbo-README.ijg
third_party/OpenCV-android-sdk/sdk/etc/licenses/libjpeg-turbo-README.md
third_party/OpenCV-android-sdk/sdk/etc/licenses/libpng-LICENSE
third_party/OpenCV-android-sdk/sdk/etc/licenses/libpng-opencv-libpng.patch
third_party/OpenCV-android-sdk/sdk/etc/licenses/libpng-README
third_party/OpenCV-android-sdk/sdk/etc/licenses/libtiff-COPYRIGHT
third_party/OpenCV-android-sdk/sdk/etc/licenses/openexr-AUTHORS.ilmbase
third_party/OpenCV-android-sdk/sdk/etc/licenses/openexr-AUTHORS.openexr
third_party/OpenCV-android-sdk/sdk/etc/licenses/openexr-fix_msvc2013_errors.patch
third_party/OpenCV-android-sdk/sdk/etc/licenses/openexr-LICENSE
third_party/OpenCV-android-sdk/sdk/etc/licenses/protobuf-LICENSE
third_party/OpenCV-android-sdk/sdk/etc/licenses/protobuf-README.md
third_party/OpenCV-android-sdk/sdk/etc/licenses/SoftFloat-COPYING.txt
third_party/OpenCV-android-sdk/sdk/etc/licenses/tbb-LICENSE
third_party/OpenCV-android-sdk/sdk/etc/licenses/tbb-README
third_party/OpenCV-android-sdk/sdk/etc/valgrind.supp
third_party/OpenCV-android-sdk/sdk/etc/valgrind_3rdparty.supp
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/android/BaseLoaderCallback.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/android/Camera2Renderer.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/android/CameraBridgeViewBase.CvCameraViewFrame.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/android/CameraBridgeViewBase.CvCameraViewListener.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/android/CameraBridgeViewBase.CvCameraViewListener2.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/android/CameraBridgeViewBase.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/android/CameraBridgeViewBase.ListItemAccessor.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/android/CameraGLRendererBase.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/android/CameraGLSurfaceView.CameraTextureListener.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/android/CameraGLSurfaceView.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/android/CameraRenderer.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/android/FpsMeter.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/android/InstallCallbackInterface.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/android/JavaCamera2View.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/android/JavaCameraView.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/android/JavaCameraView.JavaCameraSizeAccessor.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/android/LoaderCallbackInterface.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/android/OpenCVLoader.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/android/package-frame.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/android/package-summary.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/android/package-tree.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/android/Utils.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/calib3d/Calib3d.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/calib3d/package-frame.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/calib3d/package-summary.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/calib3d/package-tree.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/calib3d/StereoBM.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/calib3d/StereoMatcher.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/calib3d/StereoSGBM.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/Algorithm.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/Core.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/Core.MinMaxLocResult.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/CvException.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/CvType.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/DMatch.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/KeyPoint.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/Mat.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/MatOfByte.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/MatOfDMatch.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/MatOfDouble.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/MatOfFloat.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/MatOfFloat4.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/MatOfFloat6.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/MatOfInt.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/MatOfInt4.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/MatOfKeyPoint.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/MatOfPoint.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/MatOfPoint2f.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/MatOfPoint3.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/MatOfPoint3f.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/MatOfRect.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/MatOfRect2d.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/MatOfRotatedRect.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/package-frame.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/package-summary.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/package-tree.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/Point.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/Point3.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/Range.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/Rect.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/Rect2d.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/RotatedRect.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/Scalar.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/Size.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/TermCriteria.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/core/TickMeter.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/dnn/DictValue.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/dnn/Dnn.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/dnn/Layer.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/dnn/Net.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/dnn/package-frame.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/dnn/package-summary.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/dnn/package-tree.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/features2d/AgastFeatureDetector.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/features2d/AKAZE.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/features2d/BFMatcher.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/features2d/BOWImgDescriptorExtractor.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/features2d/BOWKMeansTrainer.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/features2d/BOWTrainer.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/features2d/BRISK.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/features2d/DescriptorMatcher.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/features2d/FastFeatureDetector.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/features2d/Feature2D.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/features2d/Features2d.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/features2d/FlannBasedMatcher.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/features2d/GFTTDetector.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/features2d/KAZE.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/features2d/MSER.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/features2d/ORB.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/features2d/package-frame.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/features2d/package-summary.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/features2d/package-tree.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/features2d/Params.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/imgcodecs/Imgcodecs.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/imgcodecs/package-frame.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/imgcodecs/package-summary.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/imgcodecs/package-tree.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/imgproc/CLAHE.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/imgproc/Imgproc.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/imgproc/LineSegmentDetector.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/imgproc/Moments.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/imgproc/package-frame.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/imgproc/package-summary.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/imgproc/package-tree.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/imgproc/Subdiv2D.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/ml/ANN_MLP.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/ml/ANN_MLP_ANNEAL.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/ml/Boost.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/ml/DTrees.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/ml/EM.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/ml/KNearest.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/ml/LogisticRegression.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/ml/Ml.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/ml/NormalBayesClassifier.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/ml/package-frame.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/ml/package-summary.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/ml/package-tree.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/ml/ParamGrid.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/ml/RTrees.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/ml/StatModel.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/ml/SVM.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/ml/SVMSGD.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/ml/TrainData.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/objdetect/BaseCascadeClassifier.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/objdetect/CascadeClassifier.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/objdetect/HOGDescriptor.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/objdetect/Objdetect.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/objdetect/package-frame.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/objdetect/package-summary.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/objdetect/package-tree.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/osgi/OpenCVInterface.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/osgi/OpenCVNativeLoader.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/osgi/package-frame.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/osgi/package-summary.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/osgi/package-tree.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/photo/AlignExposures.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/photo/AlignMTB.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/photo/CalibrateCRF.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/photo/CalibrateDebevec.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/photo/CalibrateRobertson.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/photo/MergeDebevec.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/photo/MergeExposures.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/photo/MergeMertens.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/photo/MergeRobertson.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/photo/package-frame.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/photo/package-summary.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/photo/package-tree.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/photo/Photo.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/photo/Tonemap.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/photo/TonemapDrago.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/photo/TonemapDurand.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/photo/TonemapMantiuk.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/photo/TonemapReinhard.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/utils/Converters.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/utils/package-frame.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/utils/package-summary.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/utils/package-tree.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/video/BackgroundSubtractor.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/video/BackgroundSubtractorKNN.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/video/BackgroundSubtractorMOG2.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/video/DenseOpticalFlow.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/video/DualTVL1OpticalFlow.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/video/FarnebackOpticalFlow.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/video/KalmanFilter.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/video/package-frame.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/video/package-summary.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/video/package-tree.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/video/SparseOpticalFlow.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/video/SparsePyrLKOpticalFlow.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/video/Video.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/videoio/package-frame.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/videoio/package-summary.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/videoio/package-tree.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/videoio/VideoCapture.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/videoio/Videoio.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/org/opencv/videoio/VideoWriter.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/resources/background.gif
third_party/OpenCV-android-sdk/sdk/java/javadoc/resources/tab.gif
third_party/OpenCV-android-sdk/sdk/java/javadoc/resources/titlebar.gif
third_party/OpenCV-android-sdk/sdk/java/javadoc/resources/titlebar_end.gif
third_party/OpenCV-android-sdk/sdk/java/javadoc/allclasses-frame.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/allclasses-noframe.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/constant-values.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/help-doc.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/index-all.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/index.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/overview-frame.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/overview-summary.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/overview-tree.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/package-list
third_party/OpenCV-android-sdk/sdk/java/javadoc/serialized-form.html
third_party/OpenCV-android-sdk/sdk/java/javadoc/stylesheet.css
third_party/OpenCV-android-sdk/sdk/java/res/values/attrs.xml
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/android/AsyncServiceHelper.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/android/BaseLoaderCallback.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/android/Camera2Renderer.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/android/CameraBridgeViewBase.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/android/CameraGLRendererBase.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/android/CameraGLSurfaceView.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/android/CameraRenderer.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/android/FpsMeter.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/android/InstallCallbackInterface.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/android/JavaCamera2View.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/android/JavaCameraView.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/android/LoaderCallbackInterface.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/android/OpenCVLoader.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/android/StaticHelper.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/android/Utils.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/calib3d/Calib3d.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/calib3d/StereoBM.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/calib3d/StereoMatcher.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/calib3d/StereoSGBM.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/Algorithm.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/Core.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/CvException.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/CvType.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/DMatch.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/KeyPoint.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/Mat.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/MatOfByte.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/MatOfDMatch.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/MatOfDouble.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/MatOfFloat.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/MatOfFloat4.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/MatOfFloat6.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/MatOfInt.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/MatOfInt4.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/MatOfKeyPoint.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/MatOfPoint.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/MatOfPoint2f.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/MatOfPoint3.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/MatOfPoint3f.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/MatOfRect.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/MatOfRect2d.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/MatOfRotatedRect.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/Point.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/Point3.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/Range.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/Rect.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/Rect2d.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/RotatedRect.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/Scalar.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/Size.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/TermCriteria.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/core/TickMeter.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/dnn/DictValue.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/dnn/Dnn.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/dnn/Layer.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/dnn/Net.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/engine/OpenCVEngineInterface.aidl
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/features2d/AgastFeatureDetector.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/features2d/AKAZE.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/features2d/BFMatcher.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/features2d/BOWImgDescriptorExtractor.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/features2d/BOWKMeansTrainer.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/features2d/BOWTrainer.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/features2d/BRISK.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/features2d/DescriptorExtractor.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/features2d/DescriptorMatcher.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/features2d/FastFeatureDetector.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/features2d/Feature2D.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/features2d/FeatureDetector.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/features2d/Features2d.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/features2d/FlannBasedMatcher.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/features2d/GFTTDetector.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/features2d/KAZE.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/features2d/MSER.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/features2d/ORB.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/features2d/Params.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/imgcodecs/Imgcodecs.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/imgproc/CLAHE.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/imgproc/Imgproc.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/imgproc/LineSegmentDetector.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/imgproc/Moments.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/imgproc/Subdiv2D.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/ml/ANN_MLP.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/ml/ANN_MLP_ANNEAL.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/ml/Boost.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/ml/DTrees.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/ml/EM.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/ml/KNearest.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/ml/LogisticRegression.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/ml/Ml.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/ml/NormalBayesClassifier.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/ml/ParamGrid.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/ml/RTrees.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/ml/StatModel.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/ml/SVM.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/ml/SVMSGD.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/ml/TrainData.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/objdetect/BaseCascadeClassifier.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/objdetect/CascadeClassifier.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/objdetect/HOGDescriptor.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/objdetect/Objdetect.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/osgi/OpenCVInterface.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/osgi/OpenCVNativeLoader.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/photo/AlignExposures.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/photo/AlignMTB.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/photo/CalibrateCRF.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/photo/CalibrateDebevec.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/photo/CalibrateRobertson.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/photo/MergeDebevec.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/photo/MergeExposures.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/photo/MergeMertens.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/photo/MergeRobertson.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/photo/Photo.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/photo/Tonemap.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/photo/TonemapDrago.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/photo/TonemapDurand.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/photo/TonemapMantiuk.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/photo/TonemapReinhard.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/utils/Converters.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/video/BackgroundSubtractor.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/video/BackgroundSubtractorKNN.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/video/BackgroundSubtractorMOG2.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/video/DenseOpticalFlow.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/video/DualTVL1OpticalFlow.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/video/FarnebackOpticalFlow.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/video/KalmanFilter.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/video/SparseOpticalFlow.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/video/SparsePyrLKOpticalFlow.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/video/Video.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/videoio/VideoCapture.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/videoio/Videoio.java
third_party/OpenCV-android-sdk/sdk/java/src/org/opencv/videoio/VideoWriter.java
third_party/OpenCV-android-sdk/sdk/java/AndroidManifest.xml
third_party/OpenCV-android-sdk/sdk/java/lint.xml
third_party/OpenCV-android-sdk/sdk/java/project.properties
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/arm64-v8a/libcpufeatures.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/arm64-v8a/libIlmImf.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/arm64-v8a/liblibjasper.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/arm64-v8a/liblibjpeg-turbo.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/arm64-v8a/liblibpng.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/arm64-v8a/liblibprotobuf.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/arm64-v8a/liblibtiff.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/arm64-v8a/liblibwebp.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/arm64-v8a/libtbb.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/arm64-v8a/libtegra_hal.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/armeabi/libcpufeatures.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/armeabi/libIlmImf.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/armeabi/liblibjasper.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/armeabi/liblibjpeg-turbo.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/armeabi/liblibpng.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/armeabi/liblibprotobuf.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/armeabi/liblibtiff.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/armeabi/liblibwebp.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/armeabi/libtbb.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/armeabi/libtegra_hal.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/armeabi-v7a/libcpufeatures.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/armeabi-v7a/libIlmImf.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/armeabi-v7a/liblibjasper.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/armeabi-v7a/liblibjpeg-turbo.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/armeabi-v7a/liblibpng.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/armeabi-v7a/liblibprotobuf.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/armeabi-v7a/liblibtiff.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/armeabi-v7a/liblibwebp.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/armeabi-v7a/libtbb.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/armeabi-v7a/libtegra_hal.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/mips/libcpufeatures.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/mips/libIlmImf.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/mips/liblibjasper.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/mips/liblibjpeg-turbo.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/mips/liblibpng.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/mips/liblibprotobuf.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/mips/liblibtiff.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/mips/liblibwebp.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/mips/libtbb.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/mips64/libcpufeatures.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/mips64/libIlmImf.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/mips64/liblibjasper.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/mips64/liblibjpeg-turbo.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/mips64/liblibpng.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/mips64/liblibprotobuf.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/mips64/liblibtiff.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/mips64/liblibwebp.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/mips64/libtbb.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/x86/libcpufeatures.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/x86/libIlmImf.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/x86/libippicv.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/x86/libippiw.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/x86/libittnotify.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/x86/liblibjasper.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/x86/liblibjpeg-turbo.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/x86/liblibpng.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/x86/liblibprotobuf.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/x86/liblibtiff.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/x86/liblibwebp.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/x86/libtbb.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/x86_64/libcpufeatures.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/x86_64/libIlmImf.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/x86_64/libippicv.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/x86_64/libippiw.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/x86_64/libittnotify.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/x86_64/liblibjasper.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/x86_64/liblibjpeg-turbo.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/x86_64/liblibpng.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/x86_64/liblibprotobuf.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/x86_64/liblibtiff.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/x86_64/liblibwebp.a
third_party/OpenCV-android-sdk/sdk/native/3rdparty/libs/x86_64/libtbb.a
third_party/OpenCV-android-sdk/sdk/native/jni/abi-arm64-v8a/OpenCVConfig-version.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-arm64-v8a/OpenCVConfig.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-arm64-v8a/OpenCVModules-release.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-arm64-v8a/OpenCVModules.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-armeabi/OpenCVConfig-version.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-armeabi/OpenCVConfig.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-armeabi/OpenCVModules-release.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-armeabi/OpenCVModules.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-armeabi-v7a/OpenCVConfig-version.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-armeabi-v7a/OpenCVConfig.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-armeabi-v7a/OpenCVModules-release.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-armeabi-v7a/OpenCVModules.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-mips/OpenCVConfig-version.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-mips/OpenCVConfig.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-mips/OpenCVModules-release.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-mips/OpenCVModules.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-mips64/OpenCVConfig-version.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-mips64/OpenCVConfig.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-mips64/OpenCVModules-release.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-mips64/OpenCVModules.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-x86/OpenCVConfig-version.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-x86/OpenCVConfig.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-x86/OpenCVModules-release.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-x86/OpenCVModules.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-x86_64/OpenCVConfig-version.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-x86_64/OpenCVConfig.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-x86_64/OpenCVModules-release.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/abi-x86_64/OpenCVModules.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv/cv.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv/cv.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv/cvaux.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv/cvaux.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv/cvwimage.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv/cxcore.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv/cxcore.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv/cxeigen.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv/cxmisc.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv/highgui.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv/ml.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/calib3d/calib3d.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/calib3d/calib3d_c.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/detail/color_detail.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/detail/reduce.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/detail/reduce_key_val.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/detail/transform_detail.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/detail/type_traits_detail.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/detail/vec_distance_detail.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/block.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/border_interpolate.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/color.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/common.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/datamov_utils.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/dynamic_smem.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/emulation.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/filters.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/funcattrib.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/functional.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/limits.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/reduce.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/saturate_cast.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/scan.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/simd_functions.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/transform.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/type_traits.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/utility.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/vec_distance.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/vec_math.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/vec_traits.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/warp.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/warp_reduce.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/warp_shuffle.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/hal/hal.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/hal/interface.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/hal/intrin.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/hal/intrin_avx.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/hal/intrin_cpp.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/hal/intrin_neon.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/hal/intrin_sse.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/hal/intrin_vsx.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/opencl/runtime/autogenerated/opencl_clamdblas.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/opencl/runtime/autogenerated/opencl_clamdfft.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/opencl/runtime/autogenerated/opencl_core.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/opencl/runtime/autogenerated/opencl_core_wrappers.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/opencl/runtime/autogenerated/opencl_gl.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/opencl/runtime/autogenerated/opencl_gl_wrappers.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/opencl/runtime/opencl_clamdblas.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/opencl/runtime/opencl_clamdfft.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/opencl/runtime/opencl_core.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/opencl/runtime/opencl_core_wrappers.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/opencl/runtime/opencl_gl.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/opencl/runtime/opencl_gl_wrappers.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/opencl/runtime/opencl_svm_20.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/opencl/runtime/opencl_svm_definitions.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/opencl/runtime/opencl_svm_hsa_extension.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/opencl/ocl_defs.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/opencl/opencl_info.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/opencl/opencl_svm.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/utils/filesystem.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/utils/logger.defines.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/utils/logger.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/utils/trace.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/affine.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/base.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/bufferpool.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/check.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/core.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/core_c.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda.inl.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda_stream_accessor.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda_types.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cv_cpu_dispatch.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cv_cpu_helper.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cvdef.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cvstd.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cvstd.inl.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/directx.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/eigen.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/fast_math.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/ippasync.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/mat.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/mat.inl.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/matx.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/neon_utils.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/ocl.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/ocl_genbase.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/opengl.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/operations.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/optim.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/ovx.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/persistence.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/ptr.inl.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/saturate.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/softfloat.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/sse_utils.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/traits.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/types.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/types_c.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/utility.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/va_intel.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/version.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/vsx_utils.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/wimage.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/dnn/all_layers.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/dnn/dict.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/dnn/dnn.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/dnn/dnn.inl.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/dnn/layer.details.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/dnn/layer.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/dnn/shape_utils.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/features2d/hal/interface.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/features2d/features2d.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/all_indices.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/allocator.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/any.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/autotuned_index.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/composite_index.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/config.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/defines.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/dist.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/dummy.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/dynamic_bitset.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/flann.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/flann_base.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/general.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/ground_truth.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/hdf5.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/heap.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/hierarchical_clustering_index.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/index_testing.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/kdtree_index.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/kdtree_single_index.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/kmeans_index.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/linear_index.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/logger.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/lsh_index.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/lsh_table.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/matrix.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/miniflann.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/nn_index.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/object_factory.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/params.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/random.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/result_set.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/sampling.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/saving.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/simplex_downhill.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann/timer.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/highgui/highgui.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/highgui/highgui_c.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/imgcodecs/imgcodecs.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/imgcodecs/imgcodecs_c.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/imgcodecs/ios.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/imgproc/detail/distortion_model.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/imgproc/hal/hal.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/imgproc/hal/interface.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/imgproc/imgproc.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/imgproc/imgproc_c.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/imgproc/types_c.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/ml/ml.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/ml/ml.inl.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/objdetect/detection_based_tracker.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/objdetect/objdetect.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/objdetect/objdetect_c.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/photo/cuda.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/photo/photo.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/photo/photo_c.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/shape/emdL1.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/shape/hist_cost.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/shape/shape.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/shape/shape_distance.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/shape/shape_transformer.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/stitching/detail/autocalib.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/stitching/detail/blenders.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/stitching/detail/camera.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/stitching/detail/exposure_compensate.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/stitching/detail/matchers.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/stitching/detail/motion_estimators.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/stitching/detail/seam_finders.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/stitching/detail/timelapsers.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/stitching/detail/util.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/stitching/detail/util_inl.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/stitching/detail/warpers.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/stitching/detail/warpers_inl.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/stitching/warpers.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/superres/optical_flow.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/video/background_segm.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/video/tracking.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/video/tracking_c.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/video/video.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/videoio/cap_ios.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/videoio/registry.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/videoio/videoio.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/videoio/videoio_c.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/videostab/deblurring.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/videostab/fast_marching.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/videostab/fast_marching_inl.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/videostab/frame_source.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/videostab/global_motion.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/videostab/inpainting.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/videostab/log.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/videostab/motion_core.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/videostab/motion_stabilizing.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/videostab/optical_flow.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/videostab/outlier_rejection.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/videostab/ring_buffer.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/videostab/stabilizer.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/videostab/wobble_suppression.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/calib3d.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/cvconfig.h
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/dnn.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/features2d.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/flann.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/highgui.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/imgcodecs.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/imgproc.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/ml.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/objdetect.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/opencv.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/opencv_modules.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/photo.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/shape.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/stitching.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/superres.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/video.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/videoio.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/include/opencv2/videostab.hpp
third_party/OpenCV-android-sdk/sdk/native/jni/android.toolchain.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/OpenCV-arm64-v8a.mk
third_party/OpenCV-android-sdk/sdk/native/jni/OpenCV-armeabi-v7a.mk
third_party/OpenCV-android-sdk/sdk/native/jni/OpenCV-armeabi.mk
third_party/OpenCV-android-sdk/sdk/native/jni/OpenCV-mips.mk
third_party/OpenCV-android-sdk/sdk/native/jni/OpenCV-mips64.mk
third_party/OpenCV-android-sdk/sdk/native/jni/OpenCV-x86.mk
third_party/OpenCV-android-sdk/sdk/native/jni/OpenCV-x86_64.mk
third_party/OpenCV-android-sdk/sdk/native/jni/OpenCV.mk
third_party/OpenCV-android-sdk/sdk/native/jni/OpenCVConfig-version.cmake
third_party/OpenCV-android-sdk/sdk/native/jni/OpenCVConfig.cmake
third_party/OpenCV-android-sdk/sdk/native/libs/arm64-v8a/libopencv_java3.so
third_party/OpenCV-android-sdk/sdk/native/libs/armeabi/libopencv_java3.so
third_party/OpenCV-android-sdk/sdk/native/libs/armeabi-v7a/libopencv_java3.so
third_party/OpenCV-android-sdk/sdk/native/libs/mips/libopencv_java3.so
third_party/OpenCV-android-sdk/sdk/native/libs/mips64/libopencv_java3.so
third_party/OpenCV-android-sdk/sdk/native/libs/x86/libopencv_java3.so
third_party/OpenCV-android-sdk/sdk/native/libs/x86_64/libopencv_java3.so
third_party/OpenCV-android-sdk/sdk/native/staticlibs/arm64-v8a/libopencv_calib3d.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/arm64-v8a/libopencv_core.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/arm64-v8a/libopencv_dnn.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/arm64-v8a/libopencv_features2d.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/arm64-v8a/libopencv_flann.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/arm64-v8a/libopencv_highgui.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/arm64-v8a/libopencv_imgcodecs.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/arm64-v8a/libopencv_imgproc.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/arm64-v8a/libopencv_ml.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/arm64-v8a/libopencv_objdetect.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/arm64-v8a/libopencv_photo.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/arm64-v8a/libopencv_shape.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/arm64-v8a/libopencv_stitching.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/arm64-v8a/libopencv_superres.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/arm64-v8a/libopencv_video.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/arm64-v8a/libopencv_videoio.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/arm64-v8a/libopencv_videostab.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi/libopencv_calib3d.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi/libopencv_core.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi/libopencv_dnn.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi/libopencv_features2d.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi/libopencv_flann.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi/libopencv_highgui.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi/libopencv_imgcodecs.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi/libopencv_imgproc.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi/libopencv_ml.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi/libopencv_objdetect.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi/libopencv_photo.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi/libopencv_shape.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi/libopencv_stitching.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi/libopencv_superres.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi/libopencv_video.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi/libopencv_videoio.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi/libopencv_videostab.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi-v7a/libopencv_calib3d.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi-v7a/libopencv_core.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi-v7a/libopencv_dnn.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi-v7a/libopencv_features2d.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi-v7a/libopencv_flann.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi-v7a/libopencv_highgui.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi-v7a/libopencv_imgcodecs.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi-v7a/libopencv_imgproc.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi-v7a/libopencv_ml.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi-v7a/libopencv_objdetect.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi-v7a/libopencv_photo.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi-v7a/libopencv_shape.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi-v7a/libopencv_stitching.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi-v7a/libopencv_superres.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi-v7a/libopencv_video.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi-v7a/libopencv_videoio.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/armeabi-v7a/libopencv_videostab.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips/libopencv_calib3d.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips/libopencv_core.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips/libopencv_dnn.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips/libopencv_features2d.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips/libopencv_flann.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips/libopencv_highgui.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips/libopencv_imgcodecs.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips/libopencv_imgproc.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips/libopencv_ml.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips/libopencv_objdetect.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips/libopencv_photo.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips/libopencv_shape.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips/libopencv_stitching.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips/libopencv_superres.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips/libopencv_video.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips/libopencv_videoio.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips/libopencv_videostab.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips64/libopencv_calib3d.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips64/libopencv_core.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips64/libopencv_dnn.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips64/libopencv_features2d.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips64/libopencv_flann.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips64/libopencv_highgui.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips64/libopencv_imgcodecs.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips64/libopencv_imgproc.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips64/libopencv_ml.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips64/libopencv_objdetect.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips64/libopencv_photo.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips64/libopencv_shape.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips64/libopencv_stitching.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips64/libopencv_superres.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips64/libopencv_video.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips64/libopencv_videoio.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/mips64/libopencv_videostab.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86/libopencv_calib3d.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86/libopencv_core.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86/libopencv_dnn.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86/libopencv_features2d.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86/libopencv_flann.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86/libopencv_highgui.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86/libopencv_imgcodecs.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86/libopencv_imgproc.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86/libopencv_ml.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86/libopencv_objdetect.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86/libopencv_photo.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86/libopencv_shape.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86/libopencv_stitching.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86/libopencv_superres.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86/libopencv_video.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86/libopencv_videoio.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86/libopencv_videostab.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86_64/libopencv_calib3d.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86_64/libopencv_core.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86_64/libopencv_dnn.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86_64/libopencv_features2d.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86_64/libopencv_flann.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86_64/libopencv_highgui.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86_64/libopencv_imgcodecs.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86_64/libopencv_imgproc.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86_64/libopencv_ml.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86_64/libopencv_objdetect.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86_64/libopencv_photo.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86_64/libopencv_shape.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86_64/libopencv_stitching.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86_64/libopencv_superres.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86_64/libopencv_video.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86_64/libopencv_videoio.a
third_party/OpenCV-android-sdk/sdk/native/staticlibs/x86_64/libopencv_videostab.a
third_party/OpenCV-android-sdk/sdk/build.gradle
third_party/OpenCV-android-sdk/LICENSE
third_party/OpenCV-android-sdk/README.android
third_party/opencv2.framework/Headers/calib3d/calib3d.hpp
third_party/opencv2.framework/Headers/calib3d/calib3d_c.h
third_party/opencv2.framework/Headers/core/hal/hal.hpp
third_party/opencv2.framework/Headers/core/hal/interface.h
third_party/opencv2.framework/Headers/core/hal/intrin.hpp
third_party/opencv2.framework/Headers/core/hal/intrin_cpp.hpp
third_party/opencv2.framework/Headers/core/hal/intrin_neon.hpp
third_party/opencv2.framework/Headers/core/hal/intrin_sse.hpp
third_party/opencv2.framework/Headers/core/affine.hpp
third_party/opencv2.framework/Headers/core/base.hpp
third_party/opencv2.framework/Headers/core/bufferpool.hpp
third_party/opencv2.framework/Headers/core/core.hpp
third_party/opencv2.framework/Headers/core/core_c.h
third_party/opencv2.framework/Headers/core/cuda.hpp
third_party/opencv2.framework/Headers/core/cuda.inl.hpp
third_party/opencv2.framework/Headers/core/cuda_stream_accessor.hpp
third_party/opencv2.framework/Headers/core/cuda_types.hpp
third_party/opencv2.framework/Headers/core/cvdef.h
third_party/opencv2.framework/Headers/core/cvstd.hpp
third_party/opencv2.framework/Headers/core/cvstd.inl.hpp
third_party/opencv2.framework/Headers/core/directx.hpp
third_party/opencv2.framework/Headers/core/eigen.hpp
third_party/opencv2.framework/Headers/core/fast_math.hpp
third_party/opencv2.framework/Headers/core/ippasync.hpp
third_party/opencv2.framework/Headers/core/mat.hpp
third_party/opencv2.framework/Headers/core/mat.inl.hpp
third_party/opencv2.framework/Headers/core/matx.hpp
third_party/opencv2.framework/Headers/core/neon_utils.hpp
third_party/opencv2.framework/Headers/core/ocl.hpp
third_party/opencv2.framework/Headers/core/ocl_genbase.hpp
third_party/opencv2.framework/Headers/core/opengl.hpp
third_party/opencv2.framework/Headers/core/operations.hpp
third_party/opencv2.framework/Headers/core/optim.hpp
third_party/opencv2.framework/Headers/core/ovx.hpp
third_party/opencv2.framework/Headers/core/persistence.hpp
third_party/opencv2.framework/Headers/core/private.cuda.hpp
third_party/opencv2.framework/Headers/core/private.hpp
third_party/opencv2.framework/Headers/core/ptr.inl.hpp
third_party/opencv2.framework/Headers/core/saturate.hpp
third_party/opencv2.framework/Headers/core/sse_utils.hpp
third_party/opencv2.framework/Headers/core/traits.hpp
third_party/opencv2.framework/Headers/core/types.hpp
third_party/opencv2.framework/Headers/core/types_c.h
third_party/opencv2.framework/Headers/core/utility.hpp
third_party/opencv2.framework/Headers/core/va_intel.hpp
third_party/opencv2.framework/Headers/core/version.hpp
third_party/opencv2.framework/Headers/core/wimage.hpp
third_party/opencv2.framework/Headers/features2d/features2d.hpp
third_party/opencv2.framework/Headers/flann/all_indices.h
third_party/opencv2.framework/Headers/flann/allocator.h
third_party/opencv2.framework/Headers/flann/any.h
third_party/opencv2.framework/Headers/flann/autotuned_index.h
third_party/opencv2.framework/Headers/flann/composite_index.h
third_party/opencv2.framework/Headers/flann/config.h
third_party/opencv2.framework/Headers/flann/defines.h
third_party/opencv2.framework/Headers/flann/dist.h
third_party/opencv2.framework/Headers/flann/dummy.h
third_party/opencv2.framework/Headers/flann/dynamic_bitset.h
third_party/opencv2.framework/Headers/flann/flann.hpp
third_party/opencv2.framework/Headers/flann/flann_base.hpp
third_party/opencv2.framework/Headers/flann/general.h
third_party/opencv2.framework/Headers/flann/ground_truth.h
third_party/opencv2.framework/Headers/flann/hdf5.h
third_party/opencv2.framework/Headers/flann/heap.h
third_party/opencv2.framework/Headers/flann/hierarchical_clustering_index.h
third_party/opencv2.framework/Headers/flann/index_testing.h
third_party/opencv2.framework/Headers/flann/kdtree_index.h
third_party/opencv2.framework/Headers/flann/kdtree_single_index.h
third_party/opencv2.framework/Headers/flann/kmeans_index.h
third_party/opencv2.framework/Headers/flann/linear_index.h
third_party/opencv2.framework/Headers/flann/logger.h
third_party/opencv2.framework/Headers/flann/lsh_index.h
third_party/opencv2.framework/Headers/flann/lsh_table.h
third_party/opencv2.framework/Headers/flann/matrix.h
third_party/opencv2.framework/Headers/flann/miniflann.hpp
third_party/opencv2.framework/Headers/flann/nn_index.h
third_party/opencv2.framework/Headers/flann/object_factory.h
third_party/opencv2.framework/Headers/flann/params.h
third_party/opencv2.framework/Headers/flann/random.h
third_party/opencv2.framework/Headers/flann/result_set.h
third_party/opencv2.framework/Headers/flann/sampling.h
third_party/opencv2.framework/Headers/flann/saving.h
third_party/opencv2.framework/Headers/flann/simplex_downhill.h
third_party/opencv2.framework/Headers/flann/timer.h
third_party/opencv2.framework/Headers/highgui/highgui.hpp
third_party/opencv2.framework/Headers/highgui/highgui_c.h
third_party/opencv2.framework/Headers/imgcodecs/imgcodecs.hpp
third_party/opencv2.framework/Headers/imgcodecs/imgcodecs_c.h
third_party/opencv2.framework/Headers/imgcodecs/ios.h
third_party/opencv2.framework/Headers/imgproc/detail/distortion_model.hpp
third_party/opencv2.framework/Headers/imgproc/hal/hal.hpp
third_party/opencv2.framework/Headers/imgproc/hal/interface.h
third_party/opencv2.framework/Headers/imgproc/imgproc.hpp
third_party/opencv2.framework/Headers/imgproc/imgproc_c.h
third_party/opencv2.framework/Headers/imgproc/types_c.h
third_party/opencv2.framework/Headers/ml/ml.hpp
third_party/opencv2.framework/Headers/objdetect/detection_based_tracker.hpp
third_party/opencv2.framework/Headers/objdetect/objdetect.hpp
third_party/opencv2.framework/Headers/objdetect/objdetect_c.h
third_party/opencv2.framework/Headers/photo/cuda.hpp
third_party/opencv2.framework/Headers/photo/photo.hpp
third_party/opencv2.framework/Headers/photo/photo_c.h
third_party/opencv2.framework/Headers/shape/emdL1.hpp
third_party/opencv2.framework/Headers/shape/hist_cost.hpp
third_party/opencv2.framework/Headers/shape/shape.hpp
third_party/opencv2.framework/Headers/shape/shape_distance.hpp
third_party/opencv2.framework/Headers/shape/shape_transformer.hpp
third_party/opencv2.framework/Headers/stitching/detail/autocalib.hpp
third_party/opencv2.framework/Headers/stitching/detail/blenders.hpp
third_party/opencv2.framework/Headers/stitching/detail/camera.hpp
third_party/opencv2.framework/Headers/stitching/detail/exposure_compensate.hpp
third_party/opencv2.framework/Headers/stitching/detail/matchers.hpp
third_party/opencv2.framework/Headers/stitching/detail/motion_estimators.hpp
third_party/opencv2.framework/Headers/stitching/detail/seam_finders.hpp
third_party/opencv2.framework/Headers/stitching/detail/timelapsers.hpp
third_party/opencv2.framework/Headers/stitching/detail/util.hpp
third_party/opencv2.framework/Headers/stitching/detail/util_inl.hpp
third_party/opencv2.framework/Headers/stitching/detail/warpers.hpp
third_party/opencv2.framework/Headers/stitching/detail/warpers_inl.hpp
third_party/opencv2.framework/Headers/stitching/warpers.hpp
third_party/opencv2.framework/Headers/video/background_segm.hpp
third_party/opencv2.framework/Headers/video/tracking.hpp
third_party/opencv2.framework/Headers/video/tracking_c.h
third_party/opencv2.framework/Headers/video/video.hpp
third_party/opencv2.framework/Headers/videoio/cap_ios.h
third_party/opencv2.framework/Headers/videoio/videoio.hpp
third_party/opencv2.framework/Headers/videoio/videoio_c.h
third_party/opencv2.framework/Headers/videostab/deblurring.hpp
third_party/opencv2.framework/Headers/videostab/fast_marching.hpp
third_party/opencv2.framework/Headers/videostab/fast_marching_inl.hpp
third_party/opencv2.framework/Headers/videostab/frame_source.hpp
third_party/opencv2.framework/Headers/videostab/global_motion.hpp
third_party/opencv2.framework/Headers/videostab/inpainting.hpp
third_party/opencv2.framework/Headers/videostab/log.hpp
third_party/opencv2.framework/Headers/videostab/motion_core.hpp
third_party/opencv2.framework/Headers/videostab/motion_stabilizing.hpp
third_party/opencv2.framework/Headers/videostab/optical_flow.hpp
third_party/opencv2.framework/Headers/videostab/outlier_rejection.hpp
third_party/opencv2.framework/Headers/videostab/ring_buffer.hpp
third_party/opencv2.framework/Headers/videostab/stabilizer.hpp
third_party/opencv2.framework/Headers/videostab/wobble_suppression.hpp
third_party/opencv2.framework/Headers/calib3d.hpp
third_party/opencv2.framework/Headers/core.hpp
third_party/opencv2.framework/Headers/cvconfig.h
third_party/opencv2.framework/Headers/features2d.hpp
third_party/opencv2.framework/Headers/flann.hpp
third_party/opencv2.framework/Headers/highgui.hpp
third_party/opencv2.framework/Headers/imgcodecs.hpp
third_party/opencv2.framework/Headers/imgproc.hpp
third_party/opencv2.framework/Headers/ml.hpp
third_party/opencv2.framework/Headers/objdetect.hpp
third_party/opencv2.framework/Headers/opencv.hpp
third_party/opencv2.framework/Headers/opencv_modules.hpp
third_party/opencv2.framework/Headers/photo.hpp
third_party/opencv2.framework/Headers/shape.hpp
third_party/opencv2.framework/Headers/stitching.hpp
third_party/opencv2.framework/Headers/video.hpp
third_party/opencv2.framework/Headers/videoio.hpp
third_party/opencv2.framework/Headers/videostab.hpp
third_party/opencv2.framework/Headers/world.hpp
third_party/opencv2.framework/Resources/Info.plist
third_party/opencv2.framework/Versions/A/Headers/calib3d/calib3d.hpp
third_party/opencv2.framework/Versions/A/Headers/calib3d/calib3d_c.h
third_party/opencv2.framework/Versions/A/Headers/core/hal/hal.hpp
third_party/opencv2.framework/Versions/A/Headers/core/hal/interface.h
third_party/opencv2.framework/Versions/A/Headers/core/hal/intrin.hpp
third_party/opencv2.framework/Versions/A/Headers/core/hal/intrin_cpp.hpp
third_party/opencv2.framework/Versions/A/Headers/core/hal/intrin_neon.hpp
third_party/opencv2.framework/Versions/A/Headers/core/hal/intrin_sse.hpp
third_party/opencv2.framework/Versions/A/Headers/core/affine.hpp
third_party/opencv2.framework/Versions/A/Headers/core/base.hpp
third_party/opencv2.framework/Versions/A/Headers/core/bufferpool.hpp
third_party/opencv2.framework/Versions/A/Headers/core/core.hpp
third_party/opencv2.framework/Versions/A/Headers/core/core_c.h
third_party/opencv2.framework/Versions/A/Headers/core/cuda.hpp
third_party/opencv2.framework/Versions/A/Headers/core/cuda.inl.hpp
third_party/opencv2.framework/Versions/A/Headers/core/cuda_stream_accessor.hpp
third_party/opencv2.framework/Versions/A/Headers/core/cuda_types.hpp
third_party/opencv2.framework/Versions/A/Headers/core/cvdef.h
third_party/opencv2.framework/Versions/A/Headers/core/cvstd.hpp
third_party/opencv2.framework/Versions/A/Headers/core/cvstd.inl.hpp
third_party/opencv2.framework/Versions/A/Headers/core/directx.hpp
third_party/opencv2.framework/Versions/A/Headers/core/eigen.hpp
third_party/opencv2.framework/Versions/A/Headers/core/fast_math.hpp
third_party/opencv2.framework/Versions/A/Headers/core/ippasync.hpp
third_party/opencv2.framework/Versions/A/Headers/core/mat.hpp
third_party/opencv2.framework/Versions/A/Headers/core/mat.inl.hpp
third_party/opencv2.framework/Versions/A/Headers/core/matx.hpp
third_party/opencv2.framework/Versions/A/Headers/core/neon_utils.hpp
third_party/opencv2.framework/Versions/A/Headers/core/ocl.hpp
third_party/opencv2.framework/Versions/A/Headers/core/ocl_genbase.hpp
third_party/opencv2.framework/Versions/A/Headers/core/opengl.hpp
third_party/opencv2.framework/Versions/A/Headers/core/operations.hpp
third_party/opencv2.framework/Versions/A/Headers/core/optim.hpp
third_party/opencv2.framework/Versions/A/Headers/core/ovx.hpp
third_party/opencv2.framework/Versions/A/Headers/core/persistence.hpp
third_party/opencv2.framework/Versions/A/Headers/core/private.cuda.hpp
third_party/opencv2.framework/Versions/A/Headers/core/private.hpp
third_party/opencv2.framework/Versions/A/Headers/core/ptr.inl.hpp
third_party/opencv2.framework/Versions/A/Headers/core/saturate.hpp
third_party/opencv2.framework/Versions/A/Headers/core/sse_utils.hpp
third_party/opencv2.framework/Versions/A/Headers/core/traits.hpp
third_party/opencv2.framework/Versions/A/Headers/core/types.hpp
third_party/opencv2.framework/Versions/A/Headers/core/types_c.h
third_party/opencv2.framework/Versions/A/Headers/core/utility.hpp
third_party/opencv2.framework/Versions/A/Headers/core/va_intel.hpp
third_party/opencv2.framework/Versions/A/Headers/core/version.hpp
third_party/opencv2.framework/Versions/A/Headers/core/wimage.hpp
third_party/opencv2.framework/Versions/A/Headers/features2d/features2d.hpp
third_party/opencv2.framework/Versions/A/Headers/flann/all_indices.h
third_party/opencv2.framework/Versions/A/Headers/flann/allocator.h
third_party/opencv2.framework/Versions/A/Headers/flann/any.h
third_party/opencv2.framework/Versions/A/Headers/flann/autotuned_index.h
third_party/opencv2.framework/Versions/A/Headers/flann/composite_index.h
third_party/opencv2.framework/Versions/A/Headers/flann/config.h
third_party/opencv2.framework/Versions/A/Headers/flann/defines.h
third_party/opencv2.framework/Versions/A/Headers/flann/dist.h
third_party/opencv2.framework/Versions/A/Headers/flann/dummy.h
third_party/opencv2.framework/Versions/A/Headers/flann/dynamic_bitset.h
third_party/opencv2.framework/Versions/A/Headers/flann/flann.hpp
third_party/opencv2.framework/Versions/A/Headers/flann/flann_base.hpp
third_party/opencv2.framework/Versions/A/Headers/flann/general.h
third_party/opencv2.framework/Versions/A/Headers/flann/ground_truth.h
third_party/opencv2.framework/Versions/A/Headers/flann/hdf5.h
third_party/opencv2.framework/Versions/A/Headers/flann/heap.h
third_party/opencv2.framework/Versions/A/Headers/flann/hierarchical_clustering_index.h
third_party/opencv2.framework/Versions/A/Headers/flann/index_testing.h
third_party/opencv2.framework/Versions/A/Headers/flann/kdtree_index.h
third_party/opencv2.framework/Versions/A/Headers/flann/kdtree_single_index.h
third_party/opencv2.framework/Versions/A/Headers/flann/kmeans_index.h
third_party/opencv2.framework/Versions/A/Headers/flann/linear_index.h
third_party/opencv2.framework/Versions/A/Headers/flann/logger.h
third_party/opencv2.framework/Versions/A/Headers/flann/lsh_index.h
third_party/opencv2.framework/Versions/A/Headers/flann/lsh_table.h
third_party/opencv2.framework/Versions/A/Headers/flann/matrix.h
third_party/opencv2.framework/Versions/A/Headers/flann/miniflann.hpp
third_party/opencv2.framework/Versions/A/Headers/flann/nn_index.h
third_party/opencv2.framework/Versions/A/Headers/flann/object_factory.h
third_party/opencv2.framework/Versions/A/Headers/flann/params.h
third_party/opencv2.framework/Versions/A/Headers/flann/random.h
third_party/opencv2.framework/Versions/A/Headers/flann/result_set.h
third_party/opencv2.framework/Versions/A/Headers/flann/sampling.h
third_party/opencv2.framework/Versions/A/Headers/flann/saving.h
third_party/opencv2.framework/Versions/A/Headers/flann/simplex_downhill.h
third_party/opencv2.framework/Versions/A/Headers/flann/timer.h
third_party/opencv2.framework/Versions/A/Headers/highgui/highgui.hpp
third_party/opencv2.framework/Versions/A/Headers/highgui/highgui_c.h
third_party/opencv2.framework/Versions/A/Headers/imgcodecs/imgcodecs.hpp
third_party/opencv2.framework/Versions/A/Headers/imgcodecs/imgcodecs_c.h
third_party/opencv2.framework/Versions/A/Headers/imgcodecs/ios.h
third_party/opencv2.framework/Versions/A/Headers/imgproc/detail/distortion_model.hpp
third_party/opencv2.framework/Versions/A/Headers/imgproc/hal/hal.hpp
third_party/opencv2.framework/Versions/A/Headers/imgproc/hal/interface.h
third_party/opencv2.framework/Versions/A/Headers/imgproc/imgproc.hpp
third_party/opencv2.framework/Versions/A/Headers/imgproc/imgproc_c.h
third_party/opencv2.framework/Versions/A/Headers/imgproc/types_c.h
third_party/opencv2.framework/Versions/A/Headers/ml/ml.hpp
third_party/opencv2.framework/Versions/A/Headers/objdetect/detection_based_tracker.hpp
third_party/opencv2.framework/Versions/A/Headers/objdetect/objdetect.hpp
third_party/opencv2.framework/Versions/A/Headers/objdetect/objdetect_c.h
third_party/opencv2.framework/Versions/A/Headers/photo/cuda.hpp
third_party/opencv2.framework/Versions/A/Headers/photo/photo.hpp
third_party/opencv2.framework/Versions/A/Headers/photo/photo_c.h
third_party/opencv2.framework/Versions/A/Headers/shape/emdL1.hpp
third_party/opencv2.framework/Versions/A/Headers/shape/hist_cost.hpp
third_party/opencv2.framework/Versions/A/Headers/shape/shape.hpp
third_party/opencv2.framework/Versions/A/Headers/shape/shape_distance.hpp
third_party/opencv2.framework/Versions/A/Headers/shape/shape_transformer.hpp
third_party/opencv2.framework/Versions/A/Headers/stitching/detail/autocalib.hpp
third_party/opencv2.framework/Versions/A/Headers/stitching/detail/blenders.hpp
third_party/opencv2.framework/Versions/A/Headers/stitching/detail/camera.hpp
third_party/opencv2.framework/Versions/A/Headers/stitching/detail/exposure_compensate.hpp
third_party/opencv2.framework/Versions/A/Headers/stitching/detail/matchers.hpp
third_party/opencv2.framework/Versions/A/Headers/stitching/detail/motion_estimators.hpp
third_party/opencv2.framework/Versions/A/Headers/stitching/detail/seam_finders.hpp
third_party/opencv2.framework/Versions/A/Headers/stitching/detail/timelapsers.hpp
third_party/opencv2.framework/Versions/A/Headers/stitching/detail/util.hpp
third_party/opencv2.framework/Versions/A/Headers/stitching/detail/util_inl.hpp
third_party/opencv2.framework/Versions/A/Headers/stitching/detail/warpers.hpp
third_party/opencv2.framework/Versions/A/Headers/stitching/detail/warpers_inl.hpp
third_party/opencv2.framework/Versions/A/Headers/stitching/warpers.hpp
third_party/opencv2.framework/Versions/A/Headers/video/background_segm.hpp
third_party/opencv2.framework/Versions/A/Headers/video/tracking.hpp
third_party/opencv2.framework/Versions/A/Headers/video/tracking_c.h
third_party/opencv2.framework/Versions/A/Headers/video/video.hpp
third_party/opencv2.framework/Versions/A/Headers/videoio/cap_ios.h
third_party/opencv2.framework/Versions/A/Headers/videoio/videoio.hpp
third_party/opencv2.framework/Versions/A/Headers/videoio/videoio_c.h
third_party/opencv2.framework/Versions/A/Headers/videostab/deblurring.hpp
third_party/opencv2.framework/Versions/A/Headers/videostab/fast_marching.hpp
third_party/opencv2.framework/Versions/A/Headers/videostab/fast_marching_inl.hpp
third_party/opencv2.framework/Versions/A/Headers/videostab/frame_source.hpp
third_party/opencv2.framework/Versions/A/Headers/videostab/global_motion.hpp
third_party/opencv2.framework/Versions/A/Headers/videostab/inpainting.hpp
third_party/opencv2.framework/Versions/A/Headers/videostab/log.hpp
third_party/opencv2.framework/Versions/A/Headers/videostab/motion_core.hpp
third_party/opencv2.framework/Versions/A/Headers/videostab/motion_stabilizing.hpp
third_party/opencv2.framework/Versions/A/Headers/videostab/optical_flow.hpp
third_party/opencv2.framework/Versions/A/Headers/videostab/outlier_rejection.hpp
third_party/opencv2.framework/Versions/A/Headers/videostab/ring_buffer.hpp
third_party/opencv2.framework/Versions/A/Headers/videostab/stabilizer.hpp
third_party/opencv2.framework/Versions/A/Headers/videostab/wobble_suppression.hpp
third_party/opencv2.framework/Versions/A/Headers/calib3d.hpp
third_party/opencv2.framework/Versions/A/Headers/core.hpp
third_party/opencv2.framework/Versions/A/Headers/cvconfig.h
third_party/opencv2.framework/Versions/A/Headers/features2d.hpp
third_party/opencv2.framework/Versions/A/Headers/flann.hpp
third_party/opencv2.framework/Versions/A/Headers/highgui.hpp
third_party/opencv2.framework/Versions/A/Headers/imgcodecs.hpp
third_party/opencv2.framework/Versions/A/Headers/imgproc.hpp
third_party/opencv2.framework/Versions/A/Headers/ml.hpp
third_party/opencv2.framework/Versions/A/Headers/objdetect.hpp
third_party/opencv2.framework/Versions/A/Headers/opencv.hpp
third_party/opencv2.framework/Versions/A/Headers/opencv_modules.hpp
third_party/opencv2.framework/Versions/A/Headers/photo.hpp
third_party/opencv2.framework/Versions/A/Headers/shape.hpp
third_party/opencv2.framework/Versions/A/Headers/stitching.hpp
third_party/opencv2.framework/Versions/A/Headers/video.hpp
third_party/opencv2.framework/Versions/A/Headers/videoio.hpp
third_party/opencv2.framework/Versions/A/Headers/videostab.hpp
third_party/opencv2.framework/Versions/A/Headers/world.hpp
third_party/opencv2.framework/Versions/A/Resources/Info.plist
third_party/opencv2.framework/Versions/A/opencv2
third_party/opencv2.framework/Versions/Current/Headers/calib3d/calib3d.hpp
third_party/opencv2.framework/Versions/Current/Headers/calib3d/calib3d_c.h
third_party/opencv2.framework/Versions/Current/Headers/core/hal/hal.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/hal/interface.h
third_party/opencv2.framework/Versions/Current/Headers/core/hal/intrin.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/hal/intrin_cpp.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/hal/intrin_neon.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/hal/intrin_sse.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/affine.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/base.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/bufferpool.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/core.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/core_c.h
third_party/opencv2.framework/Versions/Current/Headers/core/cuda.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/cuda.inl.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/cuda_stream_accessor.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/cuda_types.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/cvdef.h
third_party/opencv2.framework/Versions/Current/Headers/core/cvstd.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/cvstd.inl.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/directx.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/eigen.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/fast_math.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/ippasync.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/mat.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/mat.inl.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/matx.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/neon_utils.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/ocl.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/ocl_genbase.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/opengl.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/operations.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/optim.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/ovx.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/persistence.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/private.cuda.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/private.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/ptr.inl.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/saturate.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/sse_utils.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/traits.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/types.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/types_c.h
third_party/opencv2.framework/Versions/Current/Headers/core/utility.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/va_intel.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/version.hpp
third_party/opencv2.framework/Versions/Current/Headers/core/wimage.hpp
third_party/opencv2.framework/Versions/Current/Headers/features2d/features2d.hpp
third_party/opencv2.framework/Versions/Current/Headers/flann/all_indices.h
third_party/opencv2.framework/Versions/Current/Headers/flann/allocator.h
third_party/opencv2.framework/Versions/Current/Headers/flann/any.h
third_party/opencv2.framework/Versions/Current/Headers/flann/autotuned_index.h
third_party/opencv2.framework/Versions/Current/Headers/flann/composite_index.h
third_party/opencv2.framework/Versions/Current/Headers/flann/config.h
third_party/opencv2.framework/Versions/Current/Headers/flann/defines.h
third_party/opencv2.framework/Versions/Current/Headers/flann/dist.h
third_party/opencv2.framework/Versions/Current/Headers/flann/dummy.h
third_party/opencv2.framework/Versions/Current/Headers/flann/dynamic_bitset.h
third_party/opencv2.framework/Versions/Current/Headers/flann/flann.hpp
third_party/opencv2.framework/Versions/Current/Headers/flann/flann_base.hpp
third_party/opencv2.framework/Versions/Current/Headers/flann/general.h
third_party/opencv2.framework/Versions/Current/Headers/flann/ground_truth.h
third_party/opencv2.framework/Versions/Current/Headers/flann/hdf5.h
third_party/opencv2.framework/Versions/Current/Headers/flann/heap.h
third_party/opencv2.framework/Versions/Current/Headers/flann/hierarchical_clustering_index.h
third_party/opencv2.framework/Versions/Current/Headers/flann/index_testing.h
third_party/opencv2.framework/Versions/Current/Headers/flann/kdtree_index.h
third_party/opencv2.framework/Versions/Current/Headers/flann/kdtree_single_index.h
third_party/opencv2.framework/Versions/Current/Headers/flann/kmeans_index.h
third_party/opencv2.framework/Versions/Current/Headers/flann/linear_index.h
third_party/opencv2.framework/Versions/Current/Headers/flann/logger.h
third_party/opencv2.framework/Versions/Current/Headers/flann/lsh_index.h
third_party/opencv2.framework/Versions/Current/Headers/flann/lsh_table.h
third_party/opencv2.framework/Versions/Current/Headers/flann/matrix.h
third_party/opencv2.framework/Versions/Current/Headers/flann/miniflann.hpp
third_party/opencv2.framework/Versions/Current/Headers/flann/nn_index.h
third_party/opencv2.framework/Versions/Current/Headers/flann/object_factory.h
third_party/opencv2.framework/Versions/Current/Headers/flann/params.h
third_party/opencv2.framework/Versions/Current/Headers/flann/random.h
third_party/opencv2.framework/Versions/Current/Headers/flann/result_set.h
third_party/opencv2.framework/Versions/Current/Headers/flann/sampling.h
third_party/opencv2.framework/Versions/Current/Headers/flann/saving.h
third_party/opencv2.framework/Versions/Current/Headers/flann/simplex_downhill.h
third_party/opencv2.framework/Versions/Current/Headers/flann/timer.h
third_party/opencv2.framework/Versions/Current/Headers/highgui/highgui.hpp
third_party/opencv2.framework/Versions/Current/Headers/highgui/highgui_c.h
third_party/opencv2.framework/Versions/Current/Headers/imgcodecs/imgcodecs.hpp
third_party/opencv2.framework/Versions/Current/Headers/imgcodecs/imgcodecs_c.h
third_party/opencv2.framework/Versions/Current/Headers/imgcodecs/ios.h
third_party/opencv2.framework/Versions/Current/Headers/imgproc/detail/distortion_model.hpp
third_party/opencv2.framework/Versions/Current/Headers/imgproc/hal/hal.hpp
third_party/opencv2.framework/Versions/Current/Headers/imgproc/hal/interface.h
third_party/opencv2.framework/Versions/Current/Headers/imgproc/imgproc.hpp
third_party/opencv2.framework/Versions/Current/Headers/imgproc/imgproc_c.h
third_party/opencv2.framework/Versions/Current/Headers/imgproc/types_c.h
third_party/opencv2.framework/Versions/Current/Headers/ml/ml.hpp
third_party/opencv2.framework/Versions/Current/Headers/objdetect/detection_based_tracker.hpp
third_party/opencv2.framework/Versions/Current/Headers/objdetect/objdetect.hpp
third_party/opencv2.framework/Versions/Current/Headers/objdetect/objdetect_c.h
third_party/opencv2.framework/Versions/Current/Headers/photo/cuda.hpp
third_party/opencv2.framework/Versions/Current/Headers/photo/photo.hpp
third_party/opencv2.framework/Versions/Current/Headers/photo/photo_c.h
third_party/opencv2.framework/Versions/Current/Headers/shape/emdL1.hpp
third_party/opencv2.framework/Versions/Current/Headers/shape/hist_cost.hpp
third_party/opencv2.framework/Versions/Current/Headers/shape/shape.hpp
third_party/opencv2.framework/Versions/Current/Headers/shape/shape_distance.hpp
third_party/opencv2.framework/Versions/Current/Headers/shape/shape_transformer.hpp
third_party/opencv2.framework/Versions/Current/Headers/stitching/detail/autocalib.hpp
third_party/opencv2.framework/Versions/Current/Headers/stitching/detail/blenders.hpp
third_party/opencv2.framework/Versions/Current/Headers/stitching/detail/camera.hpp
third_party/opencv2.framework/Versions/Current/Headers/stitching/detail/exposure_compensate.hpp
third_party/opencv2.framework/Versions/Current/Headers/stitching/detail/matchers.hpp
third_party/opencv2.framework/Versions/Current/Headers/stitching/detail/motion_estimators.hpp
third_party/opencv2.framework/Versions/Current/Headers/stitching/detail/seam_finders.hpp
third_party/opencv2.framework/Versions/Current/Headers/stitching/detail/timelapsers.hpp
third_party/opencv2.framework/Versions/Current/Headers/stitching/detail/util.hpp
third_party/opencv2.framework/Versions/Current/Headers/stitching/detail/util_inl.hpp
third_party/opencv2.framework/Versions/Current/Headers/stitching/detail/warpers.hpp
third_party/opencv2.framework/Versions/Current/Headers/stitching/detail/warpers_inl.hpp
third_party/opencv2.framework/Versions/Current/Headers/stitching/warpers.hpp
third_party/opencv2.framework/Versions/Current/Headers/video/background_segm.hpp
third_party/opencv2.framework/Versions/Current/Headers/video/tracking.hpp
third_party/opencv2.framework/Versions/Current/Headers/video/tracking_c.h
third_party/opencv2.framework/Versions/Current/Headers/video/video.hpp
third_party/opencv2.framework/Versions/Current/Headers/videoio/cap_ios.h
third_party/opencv2.framework/Versions/Current/Headers/videoio/videoio.hpp
third_party/opencv2.framework/Versions/Current/Headers/videoio/videoio_c.h
third_party/opencv2.framework/Versions/Current/Headers/videostab/deblurring.hpp
third_party/opencv2.framework/Versions/Current/Headers/videostab/fast_marching.hpp
third_party/opencv2.framework/Versions/Current/Headers/videostab/fast_marching_inl.hpp
third_party/opencv2.framework/Versions/Current/Headers/videostab/frame_source.hpp
third_party/opencv2.framework/Versions/Current/Headers/videostab/global_motion.hpp
third_party/opencv2.framework/Versions/Current/Headers/videostab/inpainting.hpp
third_party/opencv2.framework/Versions/Current/Headers/videostab/log.hpp
third_party/opencv2.framework/Versions/Current/Headers/videostab/motion_core.hpp
third_party/opencv2.framework/Versions/Current/Headers/videostab/motion_stabilizing.hpp
third_party/opencv2.framework/Versions/Current/Headers/videostab/optical_flow.hpp
third_party/opencv2.framework/Versions/Current/Headers/videostab/outlier_rejection.hpp
third_party/opencv2.framework/Versions/Current/Headers/videostab/ring_buffer.hpp
third_party/opencv2.framework/Versions/Current/Headers/videostab/stabilizer.hpp
third_party/opencv2.framework/Versions/Current/Headers/videostab/wobble_suppression.hpp
third_party/opencv2.framework/Versions/Current/Headers/calib3d.hpp
third_party/opencv2.framework/Versions/Current/Headers/core.hpp
third_party/opencv2.framework/Versions/Current/Headers/cvconfig.h
third_party/opencv2.framework/Versions/Current/Headers/features2d.hpp
third_party/opencv2.framework/Versions/Current/Headers/flann.hpp
third_party/opencv2.framework/Versions/Current/Headers/highgui.hpp
third_party/opencv2.framework/Versions/Current/Headers/imgcodecs.hpp
third_party/opencv2.framework/Versions/Current/Headers/imgproc.hpp
third_party/opencv2.framework/Versions/Current/Headers/ml.hpp
third_party/opencv2.framework/Versions/Current/Headers/objdetect.hpp
third_party/opencv2.framework/Versions/Current/Headers/opencv.hpp
third_party/opencv2.framework/Versions/Current/Headers/opencv_modules.hpp
third_party/opencv2.framework/Versions/Current/Headers/photo.hpp
third_party/opencv2.framework/Versions/Current/Headers/shape.hpp
third_party/opencv2.framework/Versions/Current/Headers/stitching.hpp
third_party/opencv2.framework/Versions/Current/Headers/video.hpp
third_party/opencv2.framework/Versions/Current/Headers/videoio.hpp
third_party/opencv2.framework/Versions/Current/Headers/videostab.hpp
third_party/opencv2.framework/Versions/Current/Headers/world.hpp
third_party/opencv2.framework/Versions/Current/Resources/Info.plist
third_party/opencv2.framework/Versions/Current/opencv2
third_party/opencv2.framework/opencv2
third_party/benchmark.BUILD
third_party/BUILD
third_party/build_bazel_rules_apple_bypass_test_runner_check.diff
third_party/ceres_solver_compatibility_fixes.diff
third_party/com_github_glog_glog_9779e5ea6ef59562b030248947f787d1256132ae.diff
third_party/com_google_absl_f863b622fe13612433fdf43f76547d5edda0c93001.diff
third_party/com_google_googletest_9d580ea80592189e6d44fa35bcf9cdea8bf620d6.diff
third_party/com_google_protobuf_fixes.diff
third_party/easyexif.BUILD
third_party/ffmpeg_linux.BUILD
third_party/ffmpeg_macos.BUILD
third_party/glog_no_gflags.BUILD
third_party/google_toolbox_for_mac.BUILD
third_party/libyuv.BUILD
third_party/mnn.BUILD
third_party/mnn_android.BUILD
third_party/mnn_macos.BUILD
third_party/opencv_android.BUILD
third_party/opencv_ios.BUILD
third_party/opencv_linux.BUILD
third_party/opencv_macos.BUILD
third_party/opencv_windows.BUILD
third_party/org_tensorflow_compatibility_fixes.diff
mediapipe/android/platform/app/build/generated/source/buildConfig/debug/com/ali/uc/platform/BuildConfig.java
mediapipe/android/platform/app/build/intermediates/annotation_processor_list/debug/annotationProcessors.json
mediapipe/android/platform/app/build/intermediates/apk_list/debug/apk-list.gson
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/debug.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-af.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-am.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-ar.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-as.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-az.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-b+sr+Latn.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-be.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-bg.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-bn.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-bs.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-ca.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-cs.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-da.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-de.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-el.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-en-rAU.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-en-rCA.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-en-rGB.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-en-rIN.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-en-rXC.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-es-rUS.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-es.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-et.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-eu.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-fa.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-fi.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-fr-rCA.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-fr.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-gl.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-gu.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-h720dp-v13.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-hdpi-v4.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-hi.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-hr.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-hu.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-hy.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-in.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-is.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-it.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-iw.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-ja.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-ka.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-kk.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-km.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-kn.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-ko.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-ky.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-land.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-large-v4.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-ldltr-v21.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-lo.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-lt.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-lv.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-mk.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-ml.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-mn.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-mr.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-ms.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-my.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-nb.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-ne.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-night-v8.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-nl.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-or.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-pa.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-pl.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-port.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-pt-rBR.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-pt-rPT.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-pt.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-ro.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-ru.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-si.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-sk.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-sl.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-sq.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-sr.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-sv.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-sw.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-sw600dp-v13.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-ta.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-te.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-th.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-tl.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-tr.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-uk.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-ur.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-uz.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-v16.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-v17.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-v18.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-v21.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-v22.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-v23.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-v24.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-v25.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-v26.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-v28.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-vi.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-watch-v20.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-watch-v21.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-xlarge-v4.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-zh-rCN.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-zh-rHK.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-zh-rTW.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values-zu.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/multi-v2/values.json
mediapipe/android/platform/app/build/intermediates/blame/res/debug/single/debug.json
mediapipe/android/platform/app/build/intermediates/compatible_screen_manifest/debug/out/output.json
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-as/values-as.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-az/values-az.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-be/values-be.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn/values-bn.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bs/values-bs.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rCA/values-en-rCA.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rXC/values-en-rXC.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et/values-et.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu/values-eu.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl/values-gl.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gu/values-gu.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy/values-hy.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is/values-is.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka/values-ka.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk/values-kk.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km/values-km.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn/values-kn.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky/values-ky.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lo/values-lo.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lt/values-lt.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lv/values-lv.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mk/values-mk.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ml/values-ml.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mn/values-mn.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mr/values-mr.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ms/values-ms.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-my/values-my.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nb/values-nb.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ne/values-ne.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-night-v8/values-night-v8.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nl/values-nl.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-or/values-or.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pa/values-pa.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pl/values-pl.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-port/values-port.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt/values-pt.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt-rBR/values-pt-rBR.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ro/values-ro.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ru/values-ru.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-si/values-si.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sk/values-sk.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sl/values-sl.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sq/values-sq.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sr/values-sr.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sv/values-sv.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw/values-sw.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ta/values-ta.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-te/values-te.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-th/values-th.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tl/values-tl.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tr/values-tr.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uk/values-uk.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ur/values-ur.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uz/values-uz.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v16/values-v16.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v24/values-v24.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v25/values-v25.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v26/values-v26.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v28/values-v28.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-watch-v20/values-watch-v20.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-watch-v21/values-watch-v21.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties
mediapipe/android/platform/app/build/intermediates/incremental/mergeDebugResources/merger.xml
mediapipe/android/platform/app/build/intermediates/navigation_json/debug/navigation.json
mediapipe/android/platform/app/build/intermediates/res/merged/debug/drawable-v24_ic_launcher_foreground.xml.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/drawable_ic_launcher_background.xml.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/layout_activity_main.xml.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/mipmap-anydpi-v26_ic_launcher.xml.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/mipmap-anydpi-v26_ic_launcher_round.xml.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/mipmap-hdpi_ic_launcher.png.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/mipmap-hdpi_ic_launcher_round.png.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/mipmap-mdpi_ic_launcher.png.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/mipmap-mdpi_ic_launcher_round.png.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/mipmap-xhdpi_ic_launcher.png.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/mipmap-xhdpi_ic_launcher_round.png.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/mipmap-xxhdpi_ic_launcher.png.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/mipmap-xxhdpi_ic_launcher_round.png.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_launcher.png.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_launcher_round.png.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-af_values-af.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-am_values-am.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-ar_values-ar.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-as_values-as.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-az_values-az.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-be_values-be.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-bg_values-bg.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-bn_values-bn.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-bs_values-bs.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-ca_values-ca.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-cs_values-cs.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-da_values-da.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-de_values-de.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-el_values-el.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-en-rAU_values-en-rAU.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-en-rCA_values-en-rCA.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-en-rGB_values-en-rGB.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-en-rIN_values-en-rIN.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-en-rXC_values-en-rXC.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-es-rUS_values-es-rUS.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-es_values-es.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-et_values-et.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-eu_values-eu.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-fa_values-fa.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-fi_values-fi.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-fr-rCA_values-fr-rCA.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-fr_values-fr.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-gl_values-gl.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-gu_values-gu.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-hi_values-hi.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-hr_values-hr.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-hu_values-hu.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-hy_values-hy.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-in_values-in.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-is_values-is.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-it_values-it.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-iw_values-iw.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-ja_values-ja.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-ka_values-ka.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-kk_values-kk.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-km_values-km.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-kn_values-kn.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-ko_values-ko.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-ky_values-ky.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-land_values-land.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-large-v4_values-large-v4.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-lo_values-lo.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-lt_values-lt.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-lv_values-lv.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-mk_values-mk.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-ml_values-ml.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-mn_values-mn.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-mr_values-mr.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-ms_values-ms.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-my_values-my.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-nb_values-nb.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-ne_values-ne.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-night-v8_values-night-v8.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-nl_values-nl.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-or_values-or.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-pa_values-pa.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-pl_values-pl.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-port_values-port.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-pt-rBR_values-pt-rBR.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-pt-rPT_values-pt-rPT.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-pt_values-pt.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-ro_values-ro.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-ru_values-ru.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-si_values-si.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-sk_values-sk.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-sl_values-sl.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-sq_values-sq.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-sr_values-sr.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-sv_values-sv.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-sw_values-sw.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-ta_values-ta.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-te_values-te.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-th_values-th.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-tl_values-tl.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-tr_values-tr.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-uk_values-uk.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-ur_values-ur.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-uz_values-uz.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-v16_values-v16.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-v17_values-v17.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-v18_values-v18.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-v21_values-v21.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-v22_values-v22.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-v23_values-v23.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-v24_values-v24.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-v25_values-v25.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-v26_values-v26.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-v28_values-v28.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-vi_values-vi.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-watch-v20_values-watch-v20.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-watch-v21_values-watch-v21.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-zh-rCN_values-zh-rCN.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-zh-rHK_values-zh-rHK.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-zh-rTW_values-zh-rTW.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values-zu_values-zu.arsc.flat
mediapipe/android/platform/app/build/intermediates/res/merged/debug/values_values.arsc.flat
mediapipe/android/platform/app/src/androidTest/java/com/ali/uc/platform/ExampleInstrumentedTest.java
mediapipe/android/platform/app/src/main/cpp/CMakeLists.txt
mediapipe/android/platform/app/src/main/cpp/native-lib.cpp
mediapipe/android/platform/app/src/main/java/com/ali/uc/platform/MainActivity.java
mediapipe/android/platform/app/src/main/res/drawable/ic_launcher_background.xml
mediapipe/android/platform/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
mediapipe/android/platform/app/src/main/res/layout/activity_main.xml
mediapipe/android/platform/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
mediapipe/android/platform/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
mediapipe/android/platform/app/src/main/res/mipmap-hdpi/ic_launcher.png
mediapipe/android/platform/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
mediapipe/android/platform/app/src/main/res/mipmap-mdpi/ic_launcher.png
mediapipe/android/platform/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
mediapipe/android/platform/app/src/main/res/mipmap-xhdpi/ic_launcher.png
mediapipe/android/platform/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
mediapipe/android/platform/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
mediapipe/android/platform/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
mediapipe/android/platform/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
mediapipe/android/platform/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
mediapipe/android/platform/app/src/main/res/values/colors.xml
mediapipe/android/platform/app/src/main/res/values/strings.xml
mediapipe/android/platform/app/src/main/res/values/styles.xml
mediapipe/android/platform/app/src/main/AndroidManifest.xml
mediapipe/android/platform/app/src/test/java/com/ali/uc/platform/ExampleUnitTest.java
mediapipe/android/platform/app/app.iml
mediapipe/android/platform/app/build.gradle
mediapipe/android/platform/app/proguard-rules.pro
mediapipe/android/platform/gradle/wrapper/gradle-wrapper.jar
mediapipe/android/platform/gradle/wrapper/gradle-wrapper.properties
mediapipe/android/platform/build.gradle
mediapipe/android/platform/gradle.properties
mediapipe/android/platform/gradlew
mediapipe/android/platform/gradlew.bat
mediapipe/android/platform/local.properties
mediapipe/android/platform/platform.iml
mediapipe/android/platform/settings.gradle
mediapipe/calculators/audio/testdata/BUILD
mediapipe/calculators/audio/testdata/sine_wave_1k_44100_mono_2_sec_wav.audio
mediapipe/calculators/audio/testdata/sine_wave_1k_44100_stereo_2_sec_aac.audio
mediapipe/calculators/audio/testdata/sine_wave_1k_44100_stereo_2_sec_mp3.audio
mediapipe/calculators/audio/testdata/sine_wave_1k_48000_stereo_2_sec_wav.audio
mediapipe/calculators/audio/audio_decoder_calculator.cc
mediapipe/calculators/audio/audio_decoder_calculator_test.cc
mediapipe/calculators/audio/basic_time_series_calculators.cc
mediapipe/calculators/audio/basic_time_series_calculators.h
mediapipe/calculators/audio/basic_time_series_calculators_test.cc
mediapipe/calculators/audio/BUILD
mediapipe/calculators/audio/mfcc_mel_calculators.cc
mediapipe/calculators/audio/mfcc_mel_calculators.proto
mediapipe/calculators/audio/mfcc_mel_calculators_test.cc
mediapipe/calculators/audio/rational_factor_resample_calculator.cc
mediapipe/calculators/audio/rational_factor_resample_calculator.h
mediapipe/calculators/audio/rational_factor_resample_calculator.proto
mediapipe/calculators/audio/rational_factor_resample_calculator_test.cc
mediapipe/calculators/audio/spectrogram_calculator.cc
mediapipe/calculators/audio/spectrogram_calculator.proto
mediapipe/calculators/audio/spectrogram_calculator_test.cc
mediapipe/calculators/audio/stabilized_log_calculator.cc
mediapipe/calculators/audio/stabilized_log_calculator.proto
mediapipe/calculators/audio/stabilized_log_calculator_test.cc
mediapipe/calculators/audio/time_series_framer_calculator.cc
mediapipe/calculators/audio/time_series_framer_calculator.proto
mediapipe/calculators/audio/time_series_framer_calculator_test.cc
mediapipe/calculators/core/add_header_calculator.cc
mediapipe/calculators/core/add_header_calculator_test.cc
mediapipe/calculators/core/begin_end_loop_calculator_graph_test.cc
mediapipe/calculators/core/begin_loop_calculator.cc
mediapipe/calculators/core/begin_loop_calculator.h
mediapipe/calculators/core/BUILD
mediapipe/calculators/core/clip_detection_vector_size_calculator.cc
mediapipe/calculators/core/clip_vector_size_calculator.cc
mediapipe/calculators/core/clip_vector_size_calculator.h
mediapipe/calculators/core/clip_vector_size_calculator.proto
mediapipe/calculators/core/clip_vector_size_calculator_test.cc
mediapipe/calculators/core/concatenate_detection_vector_calculator.cc
mediapipe/calculators/core/concatenate_normalized_landmark_list_calculator.cc
mediapipe/calculators/core/concatenate_normalized_landmark_list_calculator_test.cc
mediapipe/calculators/core/concatenate_vector_calculator.cc
mediapipe/calculators/core/concatenate_vector_calculator.h
mediapipe/calculators/core/concatenate_vector_calculator.proto
mediapipe/calculators/core/concatenate_vector_calculator_test.cc
mediapipe/calculators/core/constant_side_packet_calculator.cc
mediapipe/calculators/core/constant_side_packet_calculator.proto
mediapipe/calculators/core/constant_side_packet_calculator_test.cc
mediapipe/calculators/core/counting_source_calculator.cc
mediapipe/calculators/core/dequantize_byte_array_calculator.cc
mediapipe/calculators/core/dequantize_byte_array_calculator.proto
mediapipe/calculators/core/dequantize_byte_array_calculator_test.cc
mediapipe/calculators/core/end_loop_calculator.cc
mediapipe/calculators/core/end_loop_calculator.h
mediapipe/calculators/core/flow_limiter_calculator.cc
mediapipe/calculators/core/flow_limiter_calculator_test.cc
mediapipe/calculators/core/gate_calculator.cc
mediapipe/calculators/core/gate_calculator.proto
mediapipe/calculators/core/gate_calculator_test.cc
mediapipe/calculators/core/immediate_mux_calculator.cc
mediapipe/calculators/core/immediate_mux_calculator_test.cc
mediapipe/calculators/core/make_pair_calculator.cc
mediapipe/calculators/core/matrix_multiply_calculator.cc
mediapipe/calculators/core/matrix_multiply_calculator_test.cc
mediapipe/calculators/core/matrix_subtract_calculator.cc
mediapipe/calculators/core/matrix_subtract_calculator_test.cc
mediapipe/calculators/core/matrix_to_vector_calculator.cc
mediapipe/calculators/core/matrix_to_vector_calculator_test.cc
mediapipe/calculators/core/merge_calculator.cc
mediapipe/calculators/core/merge_calculator_test.cc
mediapipe/calculators/core/mux_calculator.cc
mediapipe/calculators/core/mux_calculator_test.cc
mediapipe/calculators/core/packet_cloner_calculator.cc
mediapipe/calculators/core/packet_cloner_calculator.proto
mediapipe/calculators/core/packet_inner_join_calculator.cc
mediapipe/calculators/core/packet_inner_join_calculator_test.cc
mediapipe/calculators/core/packet_presence_calculator.cc
mediapipe/calculators/core/packet_presence_calculator_test.cc
mediapipe/calculators/core/packet_resampler_calculator.cc
mediapipe/calculators/core/packet_resampler_calculator.h
mediapipe/calculators/core/packet_resampler_calculator.proto
mediapipe/calculators/core/packet_resampler_calculator_test.cc
mediapipe/calculators/core/packet_thinner_calculator.cc
mediapipe/calculators/core/packet_thinner_calculator.proto
mediapipe/calculators/core/packet_thinner_calculator_test.cc
mediapipe/calculators/core/pass_through_calculator.cc
mediapipe/calculators/core/previous_loopback_calculator.cc
mediapipe/calculators/core/previous_loopback_calculator_test.cc
mediapipe/calculators/core/quantize_float_vector_calculator.cc
mediapipe/calculators/core/quantize_float_vector_calculator.proto
mediapipe/calculators/core/quantize_float_vector_calculator_test.cc
mediapipe/calculators/core/round_robin_demux_calculator.cc
mediapipe/calculators/core/sequence_shift_calculator.cc
mediapipe/calculators/core/sequence_shift_calculator.proto
mediapipe/calculators/core/sequence_shift_calculator_test.cc
mediapipe/calculators/core/side_packet_to_stream_calculator.cc
mediapipe/calculators/core/side_packet_to_stream_calculator_test.cc
mediapipe/calculators/core/split_normalized_landmark_list_calculator.cc
mediapipe/calculators/core/split_normalized_landmark_list_calculator_test.cc
mediapipe/calculators/core/split_vector_calculator.cc
mediapipe/calculators/core/split_vector_calculator.h
mediapipe/calculators/core/split_vector_calculator.proto
mediapipe/calculators/core/split_vector_calculator_test.cc
mediapipe/calculators/core/stream_to_side_packet_calculator.cc
mediapipe/calculators/core/stream_to_side_packet_calculator_test.cc
mediapipe/calculators/core/string_to_int_calculator.cc
mediapipe/calculators/image/testdata/BUILD
mediapipe/calculators/image/testdata/dino.jpg
mediapipe/calculators/image/testdata/dino_quality_50.jpg
mediapipe/calculators/image/testdata/dino_quality_80.jpg
mediapipe/calculators/image/testdata/front_camera_pixel2.jpg
mediapipe/calculators/image/bilateral_filter_calculator.cc
mediapipe/calculators/image/bilateral_filter_calculator.proto
mediapipe/calculators/image/BUILD
mediapipe/calculators/image/color_convert_calculator.cc
mediapipe/calculators/image/feature_detector_calculator.cc
mediapipe/calculators/image/feature_detector_calculator.proto
mediapipe/calculators/image/image_cropping_calculator.cc
mediapipe/calculators/image/image_cropping_calculator.h
mediapipe/calculators/image/image_cropping_calculator.proto
mediapipe/calculators/image/image_cropping_calculator_test.cc
mediapipe/calculators/image/image_file_properties_calculator.cc
mediapipe/calculators/image/image_file_properties_calculator_test.cc
mediapipe/calculators/image/image_properties_calculator.cc
mediapipe/calculators/image/image_transformation_calculator.cc
mediapipe/calculators/image/image_transformation_calculator.proto
mediapipe/calculators/image/luminance_calculator.cc
mediapipe/calculators/image/lut_filter_calculator.cc
mediapipe/calculators/image/lut_filter_calculator.proto
mediapipe/calculators/image/mask_overlay_calculator.cc
mediapipe/calculators/image/mask_overlay_calculator.proto
mediapipe/calculators/image/opencv_encoded_image_to_image_frame_calculator.cc
mediapipe/calculators/image/opencv_encoded_image_to_image_frame_calculator.proto
mediapipe/calculators/image/opencv_encoded_image_to_image_frame_calculator_test.cc
mediapipe/calculators/image/opencv_image_encoder_calculator.cc
mediapipe/calculators/image/opencv_image_encoder_calculator.proto
mediapipe/calculators/image/opencv_image_encoder_calculator_test.cc
mediapipe/calculators/image/opencv_put_text_calculator.cc
mediapipe/calculators/image/recolor_calculator.cc
mediapipe/calculators/image/recolor_calculator.proto
mediapipe/calculators/image/rect_expand_calculator.cc
mediapipe/calculators/image/scale_image_calculator.cc
mediapipe/calculators/image/scale_image_calculator.proto
mediapipe/calculators/image/scale_image_utils.cc
mediapipe/calculators/image/scale_image_utils.h
mediapipe/calculators/image/scale_image_utils_test.cc
mediapipe/calculators/image/set_alpha_calculator.cc
mediapipe/calculators/image/set_alpha_calculator.proto
mediapipe/calculators/image/sobel_edges_calculator.cc
mediapipe/calculators/image/lut_filter_calculator.cc
mediapipe/calculators/image/lut_filter_calculator.proto
mediapipe/calculators/internal/BUILD
mediapipe/calculators/internal/callback_packet_calculator.cc
mediapipe/calculators/internal/callback_packet_calculator.proto
mediapipe/calculators/mnn/BUILD
mediapipe/calculators/mnn/mnn_float_array_to_rect_calculator.cc
mediapipe/calculators/mnn/mnn_general_pred_calculator.cc
mediapipe/calculators/mnn/mnn_general_pred_calculator.proto
mediapipe/calculators/mnn/mnn_gesture_inference_calculator.cc
mediapipe/calculators/mnn/mnn_gesture_inference_calculator.proto
mediapipe/calculators/mnn/mnn_hand_inference_calculator.cc
mediapipe/calculators/mnn/mnn_hand_inference_calculator.proto
mediapipe/calculators/mnn/mnn_hand_num_inference_calculator.cc
mediapipe/calculators/mnn/mnn_inference_calculator.cc
mediapipe/calculators/mnn/mnn_inference_calculator.proto
mediapipe/calculators/mnn/mnn_inference_mobilenet_calculator.cc
mediapipe/calculators/mnn/mnn_inference_mobilenet_calculator.proto
mediapipe/calculators/mnn/mnn_tensor_to_image_frame_calculator.cc
mediapipe/calculators/mnn/mnn_tensor_to_image_frame_calculator.proto
mediapipe/calculators/mnn/mnn_tensors_to_detections_calculator.cc
mediapipe/calculators/mnn/mnn_tensors_to_float_array_calculator.cc
mediapipe/calculators/mnn/mnn_tensors_to_landmarks_calculator.cc
mediapipe/calculators/mnn/mnn_tensors_to_landmarks_calculator.proto
mediapipe/calculators/mnn/mnn_tensors_to_landmarks_face_calculator.cc
mediapipe/calculators/mnn/mnn_tensors_to_landmarks_segment_calculator.cc
mediapipe/calculators/mnn/mnn_tensors_to_rect_calculator.cc
mediapipe/calculators/mnn/mnn_tensors_to_rect_calculator.proto
mediapipe/calculators/mnn/mnn_tensors_to_sex_text_calculator.cc
mediapipe/calculators/mnn/mnn_tensors_to_text_calculator.cc
mediapipe/calculators/mnn/mnn_tensors_to_text_calculator.proto
mediapipe/calculators/mnn/mnn_tensors_to_yolo_calculator.cc
mediapipe/calculators/mnn/mnn_veg_inference_calculator.cc
mediapipe/calculators/mnn/mnn_yolo_inference_calculator.cc
mediapipe/calculators/mnn/util.h
mediapipe/calculators/tensorflow/testdata/bundle/00000000/checkpoint
mediapipe/calculators/tensorflow/testdata/bundle/00000000/export-00000-of-00001
mediapipe/calculators/tensorflow/testdata/bundle/00000000/export.meta
mediapipe/calculators/tensorflow/testdata/tensorflow_saved_model/00000000/variables/variables.data-00000-of-00001
mediapipe/calculators/tensorflow/testdata/tensorflow_saved_model/00000000/variables/variables.index
mediapipe/calculators/tensorflow/testdata/tensorflow_saved_model/00000000/saved_model.pb
mediapipe/calculators/tensorflow/testdata/frozen_graph_def.pb
mediapipe/calculators/tensorflow/testdata/model.chkpt-0
mediapipe/calculators/tensorflow/testdata/model.chkpt-0.meta
mediapipe/calculators/tensorflow/testdata/tf_graph_def.pb
mediapipe/calculators/tensorflow/BUILD
mediapipe/calculators/tensorflow/graph_tensors_packet_generator.cc
mediapipe/calculators/tensorflow/graph_tensors_packet_generator.proto
mediapipe/calculators/tensorflow/graph_tensors_packet_generator_test.cc
mediapipe/calculators/tensorflow/image_frame_to_tensor_calculator.cc
mediapipe/calculators/tensorflow/image_frame_to_tensor_calculator.proto
mediapipe/calculators/tensorflow/image_frame_to_tensor_calculator_test.cc
mediapipe/calculators/tensorflow/lapped_tensor_buffer_calculator.cc
mediapipe/calculators/tensorflow/lapped_tensor_buffer_calculator.proto
mediapipe/calculators/tensorflow/lapped_tensor_buffer_calculator_test.cc
mediapipe/calculators/tensorflow/matrix_to_tensor_calculator.cc
mediapipe/calculators/tensorflow/matrix_to_tensor_calculator_options.proto
mediapipe/calculators/tensorflow/matrix_to_tensor_calculator_test.cc
mediapipe/calculators/tensorflow/object_detection_tensors_to_detections_calculator.cc
mediapipe/calculators/tensorflow/object_detection_tensors_to_detections_calculator.proto
mediapipe/calculators/tensorflow/object_detection_tensors_to_detections_calculator_test.cc
mediapipe/calculators/tensorflow/pack_media_sequence_calculator.cc
mediapipe/calculators/tensorflow/pack_media_sequence_calculator.proto
mediapipe/calculators/tensorflow/pack_media_sequence_calculator_test.cc
mediapipe/calculators/tensorflow/string_to_sequence_example_calculator.cc
mediapipe/calculators/tensorflow/tensor_squeeze_dimensions_calculator.cc
mediapipe/calculators/tensorflow/tensor_squeeze_dimensions_calculator.proto
mediapipe/calculators/tensorflow/tensor_squeeze_dimensions_calculator_test.cc
mediapipe/calculators/tensorflow/tensor_to_image_frame_calculator.cc
mediapipe/calculators/tensorflow/tensor_to_image_frame_calculator.proto
mediapipe/calculators/tensorflow/tensor_to_image_frame_calculator_test.cc
mediapipe/calculators/tensorflow/tensor_to_matrix_calculator.cc
mediapipe/calculators/tensorflow/tensor_to_matrix_calculator.proto
mediapipe/calculators/tensorflow/tensor_to_matrix_calculator_test.cc
mediapipe/calculators/tensorflow/tensor_to_vector_float_calculator.cc
mediapipe/calculators/tensorflow/tensor_to_vector_float_calculator_options.proto
mediapipe/calculators/tensorflow/tensor_to_vector_float_calculator_test.cc
mediapipe/calculators/tensorflow/tensorflow_inference_calculator.cc
mediapipe/calculators/tensorflow/tensorflow_inference_calculator.proto
mediapipe/calculators/tensorflow/tensorflow_inference_calculator_test.cc
mediapipe/calculators/tensorflow/tensorflow_session.h
mediapipe/calculators/tensorflow/tensorflow_session_from_frozen_graph_calculator.cc
mediapipe/calculators/tensorflow/tensorflow_session_from_frozen_graph_calculator.proto
mediapipe/calculators/tensorflow/tensorflow_session_from_frozen_graph_calculator_test.cc
mediapipe/calculators/tensorflow/tensorflow_session_from_frozen_graph_generator.cc
mediapipe/calculators/tensorflow/tensorflow_session_from_frozen_graph_generator.proto
mediapipe/calculators/tensorflow/tensorflow_session_from_frozen_graph_generator_test.cc
mediapipe/calculators/tensorflow/tensorflow_session_from_saved_model_calculator.cc
mediapipe/calculators/tensorflow/tensorflow_session_from_saved_model_calculator.proto
mediapipe/calculators/tensorflow/tensorflow_session_from_saved_model_calculator_test.cc
mediapipe/calculators/tensorflow/tensorflow_session_from_saved_model_generator.cc
mediapipe/calculators/tensorflow/tensorflow_session_from_saved_model_generator.proto
mediapipe/calculators/tensorflow/tensorflow_session_from_saved_model_generator_test.cc
mediapipe/calculators/tensorflow/tfrecord_reader_calculator.cc
mediapipe/calculators/tensorflow/unpack_media_sequence_calculator.cc
mediapipe/calculators/tensorflow/unpack_media_sequence_calculator.proto
mediapipe/calculators/tensorflow/unpack_media_sequence_calculator_test.cc
mediapipe/calculators/tensorflow/unpack_yt8m_sequence_example_calculator.cc
mediapipe/calculators/tensorflow/vector_float_to_tensor_calculator.cc
mediapipe/calculators/tensorflow/vector_float_to_tensor_calculator_options.proto
mediapipe/calculators/tensorflow/vector_float_to_tensor_calculator_test.cc
mediapipe/calculators/tensorflow/vector_int_to_tensor_calculator.cc
mediapipe/calculators/tensorflow/vector_int_to_tensor_calculator_options.proto
mediapipe/calculators/tensorflow/vector_int_to_tensor_calculator_test.cc
mediapipe/calculators/tflite/testdata/add.bin
mediapipe/calculators/tflite/testdata/add.json
mediapipe/calculators/tflite/testdata/anchor_golden_file_0.txt
mediapipe/calculators/tflite/testdata/anchor_golden_file_1.txt
mediapipe/calculators/tflite/testdata/labelmap.txt
mediapipe/calculators/tflite/BUILD
mediapipe/calculators/tflite/ssd_anchors_calculator.cc
mediapipe/calculators/tflite/ssd_anchors_calculator.proto
mediapipe/calculators/tflite/ssd_anchors_calculator_test.cc
mediapipe/calculators/tflite/tflite_converter_calculator.cc
mediapipe/calculators/tflite/tflite_converter_calculator.proto
mediapipe/calculators/tflite/tflite_converter_calculator_test.cc
mediapipe/calculators/tflite/tflite_custom_op_resolver_calculator.cc
mediapipe/calculators/tflite/tflite_custom_op_resolver_calculator.proto
mediapipe/calculators/tflite/tflite_inference_calculator.cc
mediapipe/calculators/tflite/tflite_inference_calculator.proto
mediapipe/calculators/tflite/tflite_inference_calculator_test.cc
mediapipe/calculators/tflite/tflite_model_calculator.cc
mediapipe/calculators/tflite/tflite_model_calculator_test.cc
mediapipe/calculators/tflite/tflite_tensors_to_classification_calculator.cc
mediapipe/calculators/tflite/tflite_tensors_to_classification_calculator.proto
mediapipe/calculators/tflite/tflite_tensors_to_classification_calculator_test.cc
mediapipe/calculators/tflite/tflite_tensors_to_detections_calculator.cc
mediapipe/calculators/tflite/tflite_tensors_to_detections_calculator.proto
mediapipe/calculators/tflite/tflite_tensors_to_floats_calculator.cc
mediapipe/calculators/tflite/tflite_tensors_to_landmarks_calculator.cc
mediapipe/calculators/tflite/tflite_tensors_to_landmarks_calculator.proto
mediapipe/calculators/tflite/tflite_tensors_to_segmentation_calculator.cc
mediapipe/calculators/tflite/tflite_tensors_to_segmentation_calculator.proto
mediapipe/calculators/util/alignment_points_to_rects_calculator.cc
mediapipe/calculators/util/annotation_overlay_calculator.cc
mediapipe/calculators/util/annotation_overlay_calculator.proto
mediapipe/calculators/util/association_calculator.h
mediapipe/calculators/util/association_calculator.proto
mediapipe/calculators/util/association_calculator_test.cc
mediapipe/calculators/util/association_detection_calculator.cc
mediapipe/calculators/util/association_norm_rect_calculator.cc
mediapipe/calculators/util/BUILD
mediapipe/calculators/util/clock_latency_calculator.cc
mediapipe/calculators/util/clock_timestamp_calculator.cc
mediapipe/calculators/util/collection_has_min_size_calculator.cc
mediapipe/calculators/util/collection_has_min_size_calculator.h
mediapipe/calculators/util/collection_has_min_size_calculator.proto
mediapipe/calculators/util/collection_has_min_size_calculator_test.cc
mediapipe/calculators/util/detection_label_id_to_text_calculator.cc
mediapipe/calculators/util/detection_label_id_to_text_calculator.proto
mediapipe/calculators/util/detection_letterbox_removal_calculator.cc
mediapipe/calculators/util/detection_letterbox_removal_calculator_test.cc
mediapipe/calculators/util/detection_unique_id_calculator.cc
mediapipe/calculators/util/detections_to_rects_calculator.cc
mediapipe/calculators/util/detections_to_rects_calculator.h
mediapipe/calculators/util/detections_to_rects_calculator.proto
mediapipe/calculators/util/detections_to_rects_calculator_test.cc
mediapipe/calculators/util/detections_to_render_data_calculator.cc
mediapipe/calculators/util/detections_to_render_data_calculator.proto
mediapipe/calculators/util/detections_to_render_data_calculator_test.cc
mediapipe/calculators/util/detections_to_timed_box_list_calculator.cc
mediapipe/calculators/util/filter_collection_calculator.cc
mediapipe/calculators/util/filter_collection_calculator.h
mediapipe/calculators/util/fps_collection_calculator.cc
mediapipe/calculators/util/labels_to_render_data_calculator.cc
mediapipe/calculators/util/labels_to_render_data_calculator.proto
mediapipe/calculators/util/landmark_letterbox_removal_calculator.cc
mediapipe/calculators/util/landmark_letterbox_removal_calculator_test.cc
mediapipe/calculators/util/landmark_projection_calculator.cc
mediapipe/calculators/util/landmark_projection_calculator.proto
mediapipe/calculators/util/landmarks_to_detection_calculator.cc
mediapipe/calculators/util/landmarks_to_detection_calculator.proto
mediapipe/calculators/util/landmarks_to_floats_calculator.cc
mediapipe/calculators/util/landmarks_to_floats_calculator.proto
mediapipe/calculators/util/landmarks_to_render_data_calculator.cc
mediapipe/calculators/util/landmarks_to_render_data_calculator.h
mediapipe/calculators/util/landmarks_to_render_data_calculator.proto
mediapipe/calculators/util/latency.proto
mediapipe/calculators/util/local_file_contents_calculator.cc
mediapipe/calculators/util/local_file_pattern_contents_calculator.cc
mediapipe/calculators/util/non_max_suppression_calculator.cc
mediapipe/calculators/util/non_max_suppression_calculator.proto
mediapipe/calculators/util/norm_rect_to_rect_calculator.cc
mediapipe/calculators/util/packet_frequency.proto
mediapipe/calculators/util/packet_frequency_calculator.cc
mediapipe/calculators/util/packet_frequency_calculator.proto
mediapipe/calculators/util/packet_frequency_calculator_test.cc
mediapipe/calculators/util/packet_latency_calculator.cc
mediapipe/calculators/util/packet_latency_calculator.proto
mediapipe/calculators/util/packet_latency_calculator_test.cc
mediapipe/calculators/util/proxy_calculator.cc
mediapipe/calculators/util/proxy_calculator.h
mediapipe/calculators/util/proxy_calculator.proto
mediapipe/calculators/util/rect_projection_calculator.cc
mediapipe/calculators/util/rect_to_render_data_calculator.cc
mediapipe/calculators/util/rect_to_render_data_calculator.proto
mediapipe/calculators/util/rect_to_render_scale_calculator.cc
mediapipe/calculators/util/rect_to_render_scale_calculator.proto
mediapipe/calculators/util/rect_transformation_calculator.cc
mediapipe/calculators/util/rect_transformation_calculator.proto
mediapipe/calculators/util/thresholding_calculator.cc
mediapipe/calculators/util/thresholding_calculator.proto
mediapipe/calculators/util/timed_box_list_id_to_label_calculator.cc
mediapipe/calculators/util/timed_box_list_id_to_label_calculator.proto
mediapipe/calculators/util/timed_box_list_to_render_data_calculator.cc
mediapipe/calculators/util/timed_box_list_to_render_data_calculator.proto
mediapipe/calculators/util/top_k_scores_calculator.cc
mediapipe/calculators/util/top_k_scores_calculator.proto
mediapipe/calculators/util/top_k_scores_calculator_test.cc
mediapipe/calculators/video/testdata/format_FLV_H264_AAC.video
mediapipe/calculators/video/testdata/format_MKV_VP8_VORBIS.video
mediapipe/calculators/video/testdata/format_MP4_AVC720P_AAC.video
mediapipe/calculators/video/testdata/lenna.png
mediapipe/calculators/video/testdata/parallel_tracker_graph.pbtxt
mediapipe/calculators/video/testdata/tracker_graph.pbtxt
mediapipe/calculators/video/tool/BUILD
mediapipe/calculators/video/tool/flow_quantizer_model.cc
mediapipe/calculators/video/tool/flow_quantizer_model.h
mediapipe/calculators/video/tool/flow_quantizer_model.proto
mediapipe/calculators/video/box_detector_calculator.cc
mediapipe/calculators/video/box_detector_calculator.proto
mediapipe/calculators/video/box_tracker_calculator.cc
mediapipe/calculators/video/box_tracker_calculator.proto
mediapipe/calculators/video/BUILD
mediapipe/calculators/video/flow_packager_calculator.cc
mediapipe/calculators/video/flow_packager_calculator.proto
mediapipe/calculators/video/flow_to_image_calculator.cc
mediapipe/calculators/video/flow_to_image_calculator.proto
mediapipe/calculators/video/motion_analysis_calculator.cc
mediapipe/calculators/video/motion_analysis_calculator.proto
mediapipe/calculators/video/opencv_video_decoder_calculator.cc
mediapipe/calculators/video/opencv_video_decoder_calculator_test.cc
mediapipe/calculators/video/opencv_video_encoder_calculator.cc
mediapipe/calculators/video/opencv_video_encoder_calculator.proto
mediapipe/calculators/video/opencv_video_encoder_calculator_test.cc
mediapipe/calculators/video/tracked_detection_manager_calculator.cc
mediapipe/calculators/video/tracked_detection_manager_calculator.proto
mediapipe/calculators/video/tracking_graph_test.cc
mediapipe/calculators/video/tvl1_optical_flow_calculator.cc
mediapipe/calculators/video/tvl1_optical_flow_calculator_test.cc
mediapipe/calculators/video/video_pre_stream_calculator.cc
mediapipe/calculators/video/video_pre_stream_calculator.proto
mediapipe/calculators/video/video_pre_stream_calculator_test.cc
mediapipe/cmake-build-debug/cmake_install.cmake
mediapipe/cmake-build-debug/CMakeCache.txt
mediapipe/cmake-build-debug/Makefile
mediapipe/cmake-build-debug/mediapipe.cbp
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/aar_example/BUILD
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/basic/res/drawable/ic_launcher_background.xml
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/basic/res/drawable-v24/ic_launcher_foreground.xml
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/basic/res/layout/activity_main.xml
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/basic/res/mipmap-anydpi-v26/ic_launcher.xml
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/basic/res/mipmap-anydpi-v26/ic_launcher_round.xml
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/basic/res/mipmap-hdpi/ic_launcher.png
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/basic/res/mipmap-hdpi/ic_launcher_foreground.png
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/basic/res/mipmap-hdpi/ic_launcher_round.png
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/basic/res/mipmap-mdpi/ic_launcher.png
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/basic/res/mipmap-mdpi/ic_launcher_foreground.png
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/basic/res/mipmap-mdpi/ic_launcher_round.png
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/basic/res/mipmap-xhdpi/ic_launcher.png
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/basic/res/mipmap-xhdpi/ic_launcher_foreground.png
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/basic/res/mipmap-xhdpi/ic_launcher_round.png
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/basic/res/mipmap-xxhdpi/ic_launcher.png
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/basic/res/mipmap-xxhdpi/ic_launcher_foreground.png
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/basic/res/mipmap-xxhdpi/ic_launcher_round.png
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/basic/res/mipmap-xxxhdpi/ic_launcher.png
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/basic/res/mipmap-xxxhdpi/ic_launcher_foreground.png
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/basic/res/mipmap-xxxhdpi/ic_launcher_round.png
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/basic/res/values/colors.xml
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/basic/res/values/strings.xml
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/basic/res/values/styles.xml
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/basic/AndroidManifest.xml
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/basic/BUILD
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/basic/MainActivity.java
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/demo/BUILD
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/facedetectioncpu/BUILD
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/facedetectiongpu/BUILD
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/facemeshgpu/BUILD
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/facemeshgpu/MainActivity.java
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/hairsegmentationgpu/BUILD
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/handdetectiongpu/BUILD
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/handtrackinggpu/BUILD
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/handtrackinggpu/MainActivity.java
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/instantmotiontracking/assets/gif/default_gif_texture.jpg
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/instantmotiontracking/assets/gif/gif.obj.uuu
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/instantmotiontracking/assets/robot/robot.obj.uuu.zip
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/instantmotiontracking/assets/robot/robot_texture.jpg
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/instantmotiontracking/assets/BUILD
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/instantmotiontracking/res/drawable/asset_3d_preview.png
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/instantmotiontracking/res/drawable/asset_gif_preview.xml
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/instantmotiontracking/res/drawable/baseline_add_24.xml
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/instantmotiontracking/res/drawable/baseline_arrow_back_24.xml
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/instantmotiontracking/res/drawable/baseline_clear_24.xml
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/instantmotiontracking/res/drawable/baseline_clear_all_24.xml
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/instantmotiontracking/res/drawable/baseline_loop_24.xml
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/instantmotiontracking/res/drawable/baseline_search_24.xml
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/instantmotiontracking/res/drawable/circle_button.xml
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/instantmotiontracking/res/layout/instant_motion_tracking_activity_main.xml
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/instantmotiontracking/BUILD
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/instantmotiontracking/GIFEditText.java
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/instantmotiontracking/MainActivity.java
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/instantmotiontracking/StickerManager.java
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/iristrackinggpu/BUILD
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/iristrackinggpu/MainActivity.java
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/multihandtrackinggpu/BUILD
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/multihandtrackinggpu/MainActivity.java
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/objectdetection3d/assets/chair/BUILD
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/objectdetection3d/assets/chair/model.obj.uuu
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/objectdetection3d/assets/chair/texture.jpg
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/objectdetection3d/assets/sneaker/BUILD
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/objectdetection3d/assets/sneaker/model.obj.uuu
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/objectdetection3d/assets/sneaker/texture.jpg
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/objectdetection3d/assets/box.obj.uuu
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/objectdetection3d/assets/BUILD
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/objectdetection3d/assets/classic_colors.png
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/objectdetection3d/assets/colors.bmp
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/objectdetection3d/BUILD
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/objectdetection3d/MainActivity.java
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/objectdetectioncpu/BUILD
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/objectdetectiongpu/BUILD
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/objecttrackinggpu/BUILD
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/templatematchingcpu/BUILD
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/upperbodyposetrackinggpu/BUILD
mediapipe/examples/android/src/java/com/ali/uc/mediapipe/apps/upperbodyposetrackinggpu/MainActivity.java
mediapipe/examples/android/README.md
mediapipe/examples/coral/graphs/face_detection_desktop_live.pbtxt
mediapipe/examples/coral/graphs/object_detection_desktop_live.pbtxt
mediapipe/examples/coral/images/face_detection_demo_coral.gif
mediapipe/examples/coral/images/object_detection_demo_coral.jpg
mediapipe/examples/coral/models/face-detector-quantized_edgetpu.tflite
mediapipe/examples/coral/models/object-detector-quantized_edgetpu.tflite
mediapipe/examples/coral/models/object_detection_labelmap.txt
mediapipe/examples/coral/BUILD
mediapipe/examples/coral/demo_run_graph_main.cc
mediapipe/examples/coral/Dockerfile
mediapipe/examples/coral/README.md
mediapipe/examples/coral/setup.sh
mediapipe/examples/coral/update_sources.sh
mediapipe/examples/coral/WORKSPACE.coral
mediapipe/examples/desktop/autoflip/calculators/testdata/BUILD
mediapipe/examples/desktop/autoflip/calculators/testdata/dino.jpg
mediapipe/examples/desktop/autoflip/calculators/border_detection_calculator.cc
mediapipe/examples/desktop/autoflip/calculators/border_detection_calculator.proto
mediapipe/examples/desktop/autoflip/calculators/border_detection_calculator_test.cc
mediapipe/examples/desktop/autoflip/calculators/BUILD
mediapipe/examples/desktop/autoflip/calculators/content_zooming_calculator.cc
mediapipe/examples/desktop/autoflip/calculators/content_zooming_calculator.proto
mediapipe/examples/desktop/autoflip/calculators/content_zooming_calculator_test.cc
mediapipe/examples/desktop/autoflip/calculators/face_to_region_calculator.cc
mediapipe/examples/desktop/autoflip/calculators/face_to_region_calculator.proto
mediapipe/examples/desktop/autoflip/calculators/face_to_region_calculator_test.cc
mediapipe/examples/desktop/autoflip/calculators/localization_to_region_calculator.cc
mediapipe/examples/desktop/autoflip/calculators/localization_to_region_calculator.proto
mediapipe/examples/desktop/autoflip/calculators/localization_to_region_calculator_test.cc
mediapipe/examples/desktop/autoflip/calculators/scene_cropping_calculator.cc
mediapipe/examples/desktop/autoflip/calculators/scene_cropping_calculator.h
mediapipe/examples/desktop/autoflip/calculators/scene_cropping_calculator.proto
mediapipe/examples/desktop/autoflip/calculators/scene_cropping_calculator_test.cc
mediapipe/examples/desktop/autoflip/calculators/shot_boundary_calculator.cc
mediapipe/examples/desktop/autoflip/calculators/shot_boundary_calculator.proto
mediapipe/examples/desktop/autoflip/calculators/shot_boundary_calculator_test.cc
mediapipe/examples/desktop/autoflip/calculators/signal_fusing_calculator.cc
mediapipe/examples/desktop/autoflip/calculators/signal_fusing_calculator.proto
mediapipe/examples/desktop/autoflip/calculators/signal_fusing_calculator_test.cc
mediapipe/examples/desktop/autoflip/calculators/video_filtering_calculator.cc
mediapipe/examples/desktop/autoflip/calculators/video_filtering_calculator.proto
mediapipe/examples/desktop/autoflip/calculators/video_filtering_calculator_test.cc
mediapipe/examples/desktop/autoflip/quality/testdata/BUILD
mediapipe/examples/desktop/autoflip/quality/testdata/camera_motion_tracking_scene_frame_results.csv
mediapipe/examples/desktop/autoflip/quality/testdata/google.jpg
mediapipe/examples/desktop/autoflip/quality/testdata/result_0.3.jpg
mediapipe/examples/desktop/autoflip/quality/testdata/result_0.3_solid_background.jpg
mediapipe/examples/desktop/autoflip/quality/testdata/result_0.6.jpg
mediapipe/examples/desktop/autoflip/quality/testdata/result_0.6_solid_background.jpg
mediapipe/examples/desktop/autoflip/quality/testdata/result_1.6.jpg
mediapipe/examples/desktop/autoflip/quality/testdata/result_1.6_solid_background.jpg
mediapipe/examples/desktop/autoflip/quality/testdata/result_1.jpg
mediapipe/examples/desktop/autoflip/quality/testdata/result_1_solid_background.jpg
mediapipe/examples/desktop/autoflip/quality/testdata/result_2.5.jpg
mediapipe/examples/desktop/autoflip/quality/testdata/result_2.5_solid_background.jpg
mediapipe/examples/desktop/autoflip/quality/testdata/result_3.4.jpg
mediapipe/examples/desktop/autoflip/quality/testdata/result_3.4_solid_background.jpg
mediapipe/examples/desktop/autoflip/quality/BUILD
mediapipe/examples/desktop/autoflip/quality/cropping.proto
mediapipe/examples/desktop/autoflip/quality/focus_point.proto
mediapipe/examples/desktop/autoflip/quality/frame_crop_region_computer.cc
mediapipe/examples/desktop/autoflip/quality/frame_crop_region_computer.h
mediapipe/examples/desktop/autoflip/quality/frame_crop_region_computer_test.cc
mediapipe/examples/desktop/autoflip/quality/kinematic_path_solver.cc
mediapipe/examples/desktop/autoflip/quality/kinematic_path_solver.h
mediapipe/examples/desktop/autoflip/quality/kinematic_path_solver.proto
mediapipe/examples/desktop/autoflip/quality/kinematic_path_solver_test.cc
mediapipe/examples/desktop/autoflip/quality/math_utils.h
mediapipe/examples/desktop/autoflip/quality/padding_effect_generator.cc
mediapipe/examples/desktop/autoflip/quality/padding_effect_generator.h
mediapipe/examples/desktop/autoflip/quality/padding_effect_generator_test.cc
mediapipe/examples/desktop/autoflip/quality/piecewise_linear_function.cc
mediapipe/examples/desktop/autoflip/quality/piecewise_linear_function.h
mediapipe/examples/desktop/autoflip/quality/piecewise_linear_function_test.cc
mediapipe/examples/desktop/autoflip/quality/polynomial_regression_path_solver.cc
mediapipe/examples/desktop/autoflip/quality/polynomial_regression_path_solver.h
mediapipe/examples/desktop/autoflip/quality/polynomial_regression_path_solver_test.cc
mediapipe/examples/desktop/autoflip/quality/scene_camera_motion_analyzer.cc
mediapipe/examples/desktop/autoflip/quality/scene_camera_motion_analyzer.h
mediapipe/examples/desktop/autoflip/quality/scene_camera_motion_analyzer_test.cc
mediapipe/examples/desktop/autoflip/quality/scene_cropper.cc
mediapipe/examples/desktop/autoflip/quality/scene_cropper.h
mediapipe/examples/desktop/autoflip/quality/scene_cropper_test.cc
mediapipe/examples/desktop/autoflip/quality/scene_cropping_viz.cc
mediapipe/examples/desktop/autoflip/quality/scene_cropping_viz.h
mediapipe/examples/desktop/autoflip/quality/utils.cc
mediapipe/examples/desktop/autoflip/quality/utils.h
mediapipe/examples/desktop/autoflip/quality/utils_test.cc
mediapipe/examples/desktop/autoflip/quality/visual_scorer.cc
mediapipe/examples/desktop/autoflip/quality/visual_scorer.h
mediapipe/examples/desktop/autoflip/quality/visual_scorer.proto
mediapipe/examples/desktop/autoflip/quality/visual_scorer_test.cc
mediapipe/examples/desktop/autoflip/subgraph/autoflip_object_detection_subgraph.pbtxt
mediapipe/examples/desktop/autoflip/subgraph/BUILD
mediapipe/examples/desktop/autoflip/subgraph/face_detection_subgraph.pbtxt
mediapipe/examples/desktop/autoflip/subgraph/front_face_detection_subgraph.pbtxt
mediapipe/examples/desktop/autoflip/autoflip_graph.pbtxt
mediapipe/examples/desktop/autoflip/autoflip_graph_development.pbtxt
mediapipe/examples/desktop/autoflip/autoflip_messages.proto
mediapipe/examples/desktop/autoflip/BUILD
mediapipe/examples/desktop/autoflip/README.md
mediapipe/examples/desktop/face_detection/BUILD
mediapipe/examples/desktop/face_mesh/BUILD
mediapipe/examples/desktop/hair_segmentation/BUILD
mediapipe/examples/desktop/hand_tracking/BUILD
mediapipe/examples/desktop/hello_world/BUILD
mediapipe/examples/desktop/hello_world/hello_world.cc
mediapipe/examples/desktop/iris_tracking/BUILD
mediapipe/examples/desktop/iris_tracking/iris_depth_from_image_desktop.cc
mediapipe/examples/desktop/media_sequence/__init__.py
mediapipe/examples/desktop/media_sequence/BUILD
mediapipe/examples/desktop/media_sequence/charades_dataset.py
mediapipe/examples/desktop/media_sequence/demo_dataset.py
mediapipe/examples/desktop/media_sequence/kinetics_dataset.py
mediapipe/examples/desktop/media_sequence/read_demo_dataset.py
mediapipe/examples/desktop/media_sequence/README.md
mediapipe/examples/desktop/media_sequence/run_graph_file_io_main.cc
mediapipe/examples/desktop/multi_hand_tracking/BUILD
mediapipe/examples/desktop/object_detection/BUILD
mediapipe/examples/desktop/object_detection/test_video.mp4
mediapipe/examples/desktop/object_tracking/BUILD
mediapipe/examples/desktop/template_matching/BUILD
mediapipe/examples/desktop/upper_body_pose_tracking/BUILD
mediapipe/examples/desktop/youtube8m/viewer/static/index.html
mediapipe/examples/desktop/youtube8m/viewer/static/main.js
mediapipe/examples/desktop/youtube8m/viewer/server.py
mediapipe/examples/desktop/youtube8m/__init__.py
mediapipe/examples/desktop/youtube8m/BUILD
mediapipe/examples/desktop/youtube8m/extract_yt8m_features.cc
mediapipe/examples/desktop/youtube8m/generate_input_sequence_example.py
mediapipe/examples/desktop/youtube8m/generate_vggish_frozen_graph.py
mediapipe/examples/desktop/youtube8m/README.md
mediapipe/examples/desktop/__init__.py
mediapipe/examples/desktop/BUILD
mediapipe/examples/desktop/demo_run_graph_main.cc
mediapipe/examples/desktop/demo_run_graph_main_gpu.cc
mediapipe/examples/desktop/README.md
mediapipe/examples/desktop/simple_run_graph_main.cc
mediapipe/examples/ios/common/Assets.xcassets/AppIcon.appiconset/40_c_1x.png
mediapipe/examples/ios/common/Assets.xcassets/AppIcon.appiconset/40_c_2x.png
mediapipe/examples/ios/common/Assets.xcassets/AppIcon.appiconset/40_c_3x.png
mediapipe/examples/ios/common/Assets.xcassets/AppIcon.appiconset/60_c_iphone_2x.png
mediapipe/examples/ios/common/Assets.xcassets/AppIcon.appiconset/60_c_iphone_3x.png
mediapipe/examples/ios/common/Assets.xcassets/AppIcon.appiconset/76_c_Ipad.png
mediapipe/examples/ios/common/Assets.xcassets/AppIcon.appiconset/Contents.json
mediapipe/examples/ios/common/Assets.xcassets/Contents.json
mediapipe/examples/ios/common/Base.lproj/LaunchScreen.storyboard
mediapipe/examples/ios/common/Base.lproj/Main.storyboard
mediapipe/examples/ios/common/AppDelegate.h
mediapipe/examples/ios/common/AppDelegate.mm
mediapipe/examples/ios/common/BUILD
mediapipe/examples/ios/common/CommonViewController.h
mediapipe/examples/ios/common/CommonViewController.mm
mediapipe/examples/ios/common/Info.plist
mediapipe/examples/ios/common/main.m
mediapipe/examples/ios/facedetectioncpu/BUILD
mediapipe/examples/ios/facedetectioncpu/Info.plist
mediapipe/examples/ios/facedetectioncpu/ViewController.h
mediapipe/examples/ios/facedetectioncpu/ViewController.mm
mediapipe/examples/ios/facedetectiongpu/BUILD
mediapipe/examples/ios/facedetectiongpu/Info.plist
mediapipe/examples/ios/facemeshgpu/BUILD
mediapipe/examples/ios/facemeshgpu/FaceMeshGpuViewController.h
mediapipe/examples/ios/facemeshgpu/FaceMeshGpuViewController.mm
mediapipe/examples/ios/facemeshgpu/Info.plist
mediapipe/examples/ios/framework/Assets.xcassets/AppIcon.appiconset/Contents.json
mediapipe/examples/ios/framework/Assets.xcassets/Contents.json
mediapipe/examples/ios/framework/Base.lproj/LaunchScreen.storyboard
mediapipe/examples/ios/framework/Base.lproj/Main.storyboard
mediapipe/examples/ios/framework/AppDelegate.h
mediapipe/examples/ios/framework/AppDelegate.m
mediapipe/examples/ios/framework/BUILD
mediapipe/examples/ios/framework/Info.plist
mediapipe/examples/ios/framework/main.m
mediapipe/examples/ios/framework/mediapipeApi.h
mediapipe/examples/ios/framework/mediapipeCalculator.h
mediapipe/examples/ios/framework/mediapipeCommon.h
mediapipe/examples/ios/framework/UPPacket.h
mediapipe/examples/ios/framework/ViewController.h
mediapipe/examples/ios/framework/ViewController.mm
mediapipe/examples/ios/handdetectiongpu/BUILD
mediapipe/examples/ios/handdetectiongpu/Info.plist
mediapipe/examples/ios/handtrackinggpu/BUILD
mediapipe/examples/ios/handtrackinggpu/HandTrackingViewController.h
mediapipe/examples/ios/handtrackinggpu/HandTrackingViewController.mm
mediapipe/examples/ios/handtrackinggpu/Info.plist
mediapipe/examples/ios/helloworld/BUILD
mediapipe/examples/ios/helloworld/Info.plist
mediapipe/examples/ios/iristrackinggpu/BUILD
mediapipe/examples/ios/iristrackinggpu/Info.plist
mediapipe/examples/ios/iristrackinggpu/IrisTrackingViewController.h
mediapipe/examples/ios/iristrackinggpu/IrisTrackingViewController.mm
mediapipe/examples/ios/multihandtrackinggpu/BUILD
mediapipe/examples/ios/multihandtrackinggpu/Info.plist
mediapipe/examples/ios/multihandtrackinggpu/MultiHandTrackingViewController.h
mediapipe/examples/ios/multihandtrackinggpu/MultiHandTrackingViewController.mm
mediapipe/examples/ios/objectdetectioncpu/BUILD
mediapipe/examples/ios/objectdetectioncpu/Info.plist
mediapipe/examples/ios/objectdetectiongpu/BUILD
mediapipe/examples/ios/objectdetectiongpu/Info.plist
mediapipe/examples/ios/objecttrackinggpu/BUILD
mediapipe/examples/ios/objecttrackinggpu/Info.plist
mediapipe/examples/ios/upperbodyposetrackinggpu/BUILD
mediapipe/examples/ios/upperbodyposetrackinggpu/Info.plist
mediapipe/examples/ios/upperbodyposetrackinggpu/UpperBodyPoseTrackingViewController.h
mediapipe/examples/ios/upperbodyposetrackinggpu/UpperBodyPoseTrackingViewController.mm
mediapipe/examples/ios/BUILD
mediapipe/examples/ios/bundle_id.bzl
mediapipe/examples/ios/link_local_profiles.py
mediapipe/examples/ios/README.md
mediapipe/examples/python/__init__.py
mediapipe/examples/python/upper_body_pose_tracker.py
mediapipe/examples/__init__.py
mediapipe/framework/deps/aligned_malloc_and_free.h
mediapipe/framework/deps/BUILD
mediapipe/framework/deps/canonical_errors.h
mediapipe/framework/deps/cleanup.h
mediapipe/framework/deps/clock.cc
mediapipe/framework/deps/clock.h
mediapipe/framework/deps/expand_template.bzl
mediapipe/framework/deps/file_helpers.cc
mediapipe/framework/deps/file_helpers.h
mediapipe/framework/deps/file_path.cc
mediapipe/framework/deps/file_path.h
mediapipe/framework/deps/image_resizer.h
mediapipe/framework/deps/map_util.h
mediapipe/framework/deps/mathutil.h
mediapipe/framework/deps/mathutil_unittest.cc
mediapipe/framework/deps/message_matchers.h
mediapipe/framework/deps/monotonic_clock.cc
mediapipe/framework/deps/monotonic_clock.h
mediapipe/framework/deps/monotonic_clock_test.cc
mediapipe/framework/deps/no_destructor.h
mediapipe/framework/deps/numbers.h
mediapipe/framework/deps/point2.h
mediapipe/framework/deps/proto_descriptor.proto
mediapipe/framework/deps/random_base.h
mediapipe/framework/deps/re2.h
mediapipe/framework/deps/rectangle.h
mediapipe/framework/deps/registration.cc
mediapipe/framework/deps/registration.h
mediapipe/framework/deps/registration_token.cc
mediapipe/framework/deps/registration_token.h
mediapipe/framework/deps/registration_token_test.cc
mediapipe/framework/deps/ret_check.cc
mediapipe/framework/deps/ret_check.h
mediapipe/framework/deps/safe_int.h
mediapipe/framework/deps/safe_int_test.cc
mediapipe/framework/deps/singleton.h
mediapipe/framework/deps/source_location.h
mediapipe/framework/deps/status.cc
mediapipe/framework/deps/status.h
mediapipe/framework/deps/status_builder.cc
mediapipe/framework/deps/status_builder.h
mediapipe/framework/deps/status_builder_test.cc
mediapipe/framework/deps/status_macros.h
mediapipe/framework/deps/status_matchers.h
mediapipe/framework/deps/status_test.cc
mediapipe/framework/deps/statusor.cc
mediapipe/framework/deps/statusor.h
mediapipe/framework/deps/statusor_internals.h
mediapipe/framework/deps/statusor_test.cc
mediapipe/framework/deps/strong_int.h
mediapipe/framework/deps/thread_options.h
mediapipe/framework/deps/threadpool.h
mediapipe/framework/deps/threadpool_pthread_impl.cc
mediapipe/framework/deps/threadpool_std_thread_impl.cc
mediapipe/framework/deps/threadpool_test.cc
mediapipe/framework/deps/topologicalsorter.cc
mediapipe/framework/deps/topologicalsorter.h
mediapipe/framework/deps/topologicalsorter_test.cc
mediapipe/framework/deps/vector.h
mediapipe/framework/formats/annotation/BUILD
mediapipe/framework/formats/annotation/locus.proto
mediapipe/framework/formats/annotation/rasterization.proto
mediapipe/framework/formats/motion/BUILD
mediapipe/framework/formats/motion/optical_flow_field.cc
mediapipe/framework/formats/motion/optical_flow_field.h
mediapipe/framework/formats/motion/optical_flow_field_data.proto
mediapipe/framework/formats/motion/optical_flow_field_test.cc
mediapipe/framework/formats/object_detection/anchor.proto
mediapipe/framework/formats/object_detection/BUILD
mediapipe/framework/formats/BUILD
mediapipe/framework/formats/classification.proto
mediapipe/framework/formats/deleting_file.cc
mediapipe/framework/formats/deleting_file.h
mediapipe/framework/formats/detection.proto
mediapipe/framework/formats/image_file_properties.proto
mediapipe/framework/formats/image_format.proto
mediapipe/framework/formats/image_frame.cc
mediapipe/framework/formats/image_frame.h
mediapipe/framework/formats/image_frame_opencv.cc
mediapipe/framework/formats/image_frame_opencv.h
mediapipe/framework/formats/image_frame_opencv_test.cc
mediapipe/framework/formats/landmark.proto
mediapipe/framework/formats/location.cc
mediapipe/framework/formats/location.h
mediapipe/framework/formats/location_data.proto
mediapipe/framework/formats/matrix.cc
mediapipe/framework/formats/matrix.h
mediapipe/framework/formats/matrix_data.proto
mediapipe/framework/formats/rect.proto
mediapipe/framework/formats/time_series_header.proto
mediapipe/framework/formats/video_stream_header.h
mediapipe/framework/formats/yuv_image.h
mediapipe/framework/port/advanced_proto_inc.h
mediapipe/framework/port/advanced_proto_lite_inc.h
mediapipe/framework/port/aligned_malloc_and_free.h
mediapipe/framework/port/any_proto.h
mediapipe/framework/port/benchmark.h
mediapipe/framework/port/BUILD
mediapipe/framework/port/build_config.bzl
mediapipe/framework/port/canonical_errors.h
mediapipe/framework/port/commandlineflags.h
mediapipe/framework/port/core_proto_inc.h
mediapipe/framework/port/file_helpers.h
mediapipe/framework/port/gmock.h
mediapipe/framework/port/gtest.h
mediapipe/framework/port/image_resizer.h
mediapipe/framework/port/integral_types.h
mediapipe/framework/port/logging.h
mediapipe/framework/port/map_util.h
mediapipe/framework/port/numbers.h
mediapipe/framework/port/opencv_calib3d_inc.h
mediapipe/framework/port/opencv_core_inc.h
mediapipe/framework/port/opencv_features2d_inc.h
mediapipe/framework/port/opencv_highgui_inc.h
mediapipe/framework/port/opencv_imgcodecs_inc.h
mediapipe/framework/port/opencv_imgproc_inc.h
mediapipe/framework/port/opencv_video_inc.h
mediapipe/framework/port/parse_text_proto.h
mediapipe/framework/port/point2.h
mediapipe/framework/port/port.h
mediapipe/framework/port/proto_ns.h
mediapipe/framework/port/re2.h
mediapipe/framework/port/rectangle.h
mediapipe/framework/port/ret_check.h
mediapipe/framework/port/singleton.h
mediapipe/framework/port/source_location.h
mediapipe/framework/port/status.h
mediapipe/framework/port/status_builder.h
mediapipe/framework/port/status_macros.h
mediapipe/framework/port/status_matchers.h
mediapipe/framework/port/statusor.h
mediapipe/framework/port/threadpool.h
mediapipe/framework/port/topologicalsorter.h
mediapipe/framework/port/vector.h
mediapipe/framework/profiler/reporter/BUILD
mediapipe/framework/profiler/reporter/print_profile.cc
mediapipe/framework/profiler/reporter/README.md
mediapipe/framework/profiler/reporter/reporter.cc
mediapipe/framework/profiler/reporter/reporter.h
mediapipe/framework/profiler/reporter/statistic.cc
mediapipe/framework/profiler/reporter/statistic.h
mediapipe/framework/profiler/testdata/BUILD
mediapipe/framework/profiler/testdata/profile_latency_test.pbtxt
mediapipe/framework/profiler/testdata/profile_opencv_0.pbtxt
mediapipe/framework/profiler/testdata/profile_opencv_1.pbtxt
mediapipe/framework/profiler/testdata/profile_process_test.pbtxt
mediapipe/framework/profiler/testing/BUILD
mediapipe/framework/profiler/testing/simple_calculator.cc
mediapipe/framework/profiler/BUILD
mediapipe/framework/profiler/circular_buffer.h
mediapipe/framework/profiler/circular_buffer_test.cc
mediapipe/framework/profiler/gl_context_profiler.cc
mediapipe/framework/profiler/graph_profiler.cc
mediapipe/framework/profiler/graph_profiler.h
mediapipe/framework/profiler/graph_profiler_ios_test.mm
mediapipe/framework/profiler/graph_profiler_stub.h
mediapipe/framework/profiler/graph_profiler_test.cc
mediapipe/framework/profiler/graph_tracer.cc
mediapipe/framework/profiler/graph_tracer.h
mediapipe/framework/profiler/graph_tracer_test.cc
mediapipe/framework/profiler/profiler_resource_util.cc
mediapipe/framework/profiler/profiler_resource_util.h
mediapipe/framework/profiler/profiler_resource_util_android.cc
mediapipe/framework/profiler/profiler_resource_util_ios.cc
mediapipe/framework/profiler/reporter_test.cc
mediapipe/framework/profiler/sharded_map.h
mediapipe/framework/profiler/sharded_map_test.cc
mediapipe/framework/profiler/test_context_builder.h
mediapipe/framework/profiler/trace_buffer.h
mediapipe/framework/profiler/trace_builder.cc
mediapipe/framework/profiler/trace_builder.h
mediapipe/framework/stat/BUILD
mediapipe/framework/stat/mediapipe_statistics_manager.cc
mediapipe/framework/stat/mediapipe_statistics_manager.h
mediapipe/framework/stream_handler/barrier_input_stream_handler.cc
mediapipe/framework/stream_handler/barrier_input_stream_handler_test.cc
mediapipe/framework/stream_handler/BUILD
mediapipe/framework/stream_handler/default_input_stream_handler.cc
mediapipe/framework/stream_handler/default_input_stream_handler.h
mediapipe/framework/stream_handler/default_input_stream_handler.proto
mediapipe/framework/stream_handler/default_input_stream_handler_test.cc
mediapipe/framework/stream_handler/early_close_input_stream_handler.cc
mediapipe/framework/stream_handler/fixed_size_input_stream_handler.cc
mediapipe/framework/stream_handler/fixed_size_input_stream_handler.proto
mediapipe/framework/stream_handler/fixed_size_input_stream_handler_test.cc
mediapipe/framework/stream_handler/immediate_input_stream_handler.cc
mediapipe/framework/stream_handler/immediate_input_stream_handler_test.cc
mediapipe/framework/stream_handler/in_order_output_stream_handler.cc
mediapipe/framework/stream_handler/in_order_output_stream_handler.h
mediapipe/framework/stream_handler/mux_input_stream_handler.cc
mediapipe/framework/stream_handler/mux_input_stream_handler_test.cc
mediapipe/framework/stream_handler/set_input_stream_handler_test.cc
mediapipe/framework/stream_handler/sync_set_input_stream_handler.cc
mediapipe/framework/stream_handler/sync_set_input_stream_handler.proto
mediapipe/framework/stream_handler/sync_set_input_stream_handler_test.cc
mediapipe/framework/stream_handler/timestamp_align_input_stream_handler.cc
mediapipe/framework/stream_handler/timestamp_align_input_stream_handler.proto
mediapipe/framework/stream_handler/timestamp_align_input_stream_handler_test.cc
mediapipe/framework/testdata/BUILD
mediapipe/framework/testdata/night_light_calculator.proto
mediapipe/framework/testdata/sky_light_calculator.proto
mediapipe/framework/testdata/zoo_mutation_calculator.proto
mediapipe/framework/testdata/zoo_mutator.proto
mediapipe/framework/tool/testdata/BUILD
mediapipe/framework/tool/testdata/dub_quad_test_subgraph.pbtxt
mediapipe/framework/tool/testdata/nested_test_subgraph.pbtxt
mediapipe/framework/tool/testdata/test.pbtxt
mediapipe/framework/tool/BUILD
mediapipe/framework/tool/build_defs.bzl
mediapipe/framework/tool/calculator_graph_template.proto
mediapipe/framework/tool/data_as_c_string_test.cc
mediapipe/framework/tool/encode_as_c_string.cc
mediapipe/framework/tool/executor_util.cc
mediapipe/framework/tool/executor_util.h
mediapipe/framework/tool/executor_util_test.cc
mediapipe/framework/tool/fill_packet_set.cc
mediapipe/framework/tool/fill_packet_set.h
mediapipe/framework/tool/fill_packet_set_test.cc
mediapipe/framework/tool/name_util.cc
mediapipe/framework/tool/name_util.h
mediapipe/framework/tool/node_chain_subgraph.proto
mediapipe/framework/tool/options_util.h
mediapipe/framework/tool/packet_util.h
mediapipe/framework/tool/proto_util_lite.cc
mediapipe/framework/tool/proto_util_lite.h
mediapipe/framework/tool/simple_subgraph_template.cc
mediapipe/framework/tool/simulation_clock.cc
mediapipe/framework/tool/simulation_clock.h
mediapipe/framework/tool/simulation_clock_executor.cc
mediapipe/framework/tool/simulation_clock_executor.h
mediapipe/framework/tool/simulation_clock_test.cc
mediapipe/framework/tool/sink.cc
mediapipe/framework/tool/sink.h
mediapipe/framework/tool/sink_test.cc
mediapipe/framework/tool/source.cc
mediapipe/framework/tool/source.proto
mediapipe/framework/tool/status_util.cc
mediapipe/framework/tool/status_util.h
mediapipe/framework/tool/status_util_test.cc
mediapipe/framework/tool/subgraph_expansion.cc
mediapipe/framework/tool/subgraph_expansion.h
mediapipe/framework/tool/subgraph_expansion_test.cc
mediapipe/framework/tool/tag_map.cc
mediapipe/framework/tool/tag_map.h
mediapipe/framework/tool/tag_map_helper.cc
mediapipe/framework/tool/tag_map_helper.h
mediapipe/framework/tool/tag_map_test.cc
mediapipe/framework/tool/template_expander.cc
mediapipe/framework/tool/template_expander.h
mediapipe/framework/tool/template_parser.cc
mediapipe/framework/tool/template_parser.h
mediapipe/framework/tool/test_util.cc
mediapipe/framework/tool/test_util.h
mediapipe/framework/tool/text_to_binary_graph.cc
mediapipe/framework/tool/type_util.h
mediapipe/framework/tool/mediapipe_graph.bzl
mediapipe/framework/tool/validate.cc
mediapipe/framework/tool/validate.h
mediapipe/framework/tool/validate_name.cc
mediapipe/framework/tool/validate_name.h
mediapipe/framework/tool/validate_name_test.cc
mediapipe/framework/tool/validate_type.cc
mediapipe/framework/tool/validate_type.h
mediapipe/framework/BUILD
mediapipe/framework/calculator.proto
mediapipe/framework/calculator_base.cc
mediapipe/framework/calculator_base.h
mediapipe/framework/calculator_base_test.cc
mediapipe/framework/calculator_context.cc
mediapipe/framework/calculator_context.h
mediapipe/framework/calculator_context_manager.cc
mediapipe/framework/calculator_context_manager.h
mediapipe/framework/calculator_context_test.cc
mediapipe/framework/calculator_contract.cc
mediapipe/framework/calculator_contract.h
mediapipe/framework/calculator_contract_test.cc
mediapipe/framework/calculator_contract_test.proto
mediapipe/framework/calculator_framework.h
mediapipe/framework/calculator_graph.cc
mediapipe/framework/calculator_graph.h
mediapipe/framework/calculator_graph_bounds_test.cc
mediapipe/framework/calculator_graph_event_loop_test.cc
mediapipe/framework/calculator_graph_side_packet_test.cc
mediapipe/framework/calculator_graph_stopping_test.cc
mediapipe/framework/calculator_graph_test.cc
mediapipe/framework/calculator_node.cc
mediapipe/framework/calculator_node.h
mediapipe/framework/calculator_node_test.cc
mediapipe/framework/calculator_options.proto
mediapipe/framework/calculator_parallel_execution_test.cc
mediapipe/framework/calculator_profile.proto
mediapipe/framework/calculator_registry.h
mediapipe/framework/calculator_registry_util.cc
mediapipe/framework/calculator_registry_util.h
mediapipe/framework/calculator_runner.cc
mediapipe/framework/calculator_runner.h
mediapipe/framework/calculator_runner_test.cc
mediapipe/framework/calculator_state.cc
mediapipe/framework/calculator_state.h
mediapipe/framework/camera_intrinsics.h
mediapipe/framework/collection.h
mediapipe/framework/collection_item_id.cc
mediapipe/framework/collection_item_id.h
mediapipe/framework/collection_test.cc
mediapipe/framework/counter.h
mediapipe/framework/counter_factory.cc
mediapipe/framework/counter_factory.h
mediapipe/framework/delegating_executor.cc
mediapipe/framework/delegating_executor.h
mediapipe/framework/demangle.h
mediapipe/framework/encode_binary_proto.bzl
mediapipe/framework/executor.cc
mediapipe/framework/executor.h
mediapipe/framework/executor_external_build_test.cc
mediapipe/framework/graph_output_stream.cc
mediapipe/framework/graph_output_stream.h
mediapipe/framework/graph_service.h
mediapipe/framework/graph_service_test.cc
mediapipe/framework/graph_validation.h
mediapipe/framework/graph_validation_test.cc
mediapipe/framework/input_side_packet_handler.cc
mediapipe/framework/input_side_packet_handler.h
mediapipe/framework/input_stream.h
mediapipe/framework/input_stream_handler.cc
mediapipe/framework/input_stream_handler.h
mediapipe/framework/input_stream_manager.cc
mediapipe/framework/input_stream_manager.h
mediapipe/framework/input_stream_manager_test.cc
mediapipe/framework/input_stream_shard.cc
mediapipe/framework/input_stream_shard.h
mediapipe/framework/legacy_calculator_support.cc
mediapipe/framework/legacy_calculator_support.h
mediapipe/framework/lifetime_tracker.h
mediapipe/framework/output_side_packet.h
mediapipe/framework/output_side_packet_impl.cc
mediapipe/framework/output_side_packet_impl.h
mediapipe/framework/output_stream.h
mediapipe/framework/output_stream_handler.cc
mediapipe/framework/output_stream_handler.h
mediapipe/framework/output_stream_manager.cc
mediapipe/framework/output_stream_manager.h
mediapipe/framework/output_stream_manager_test.cc
mediapipe/framework/output_stream_poller.h
mediapipe/framework/output_stream_shard.cc
mediapipe/framework/output_stream_shard.h
mediapipe/framework/packet.cc
mediapipe/framework/packet.h
mediapipe/framework/packet_delete_test.cc
mediapipe/framework/packet_factory.proto
mediapipe/framework/packet_generator.h
mediapipe/framework/packet_generator.proto
mediapipe/framework/packet_generator_graph.cc
mediapipe/framework/packet_generator_graph.h
mediapipe/framework/packet_generator_test.cc
mediapipe/framework/packet_registration_test.cc
mediapipe/framework/packet_set.h
mediapipe/framework/packet_test.cc
mediapipe/framework/packet_test.proto
mediapipe/framework/packet_type.cc
mediapipe/framework/packet_type.h
mediapipe/framework/platform_specific_profiling.h
mediapipe/framework/port.h
mediapipe/framework/scheduler.cc
mediapipe/framework/scheduler.h
mediapipe/framework/scheduler_queue.cc
mediapipe/framework/scheduler_queue.h
mediapipe/framework/scheduler_shared.h
mediapipe/framework/status_handler.h
mediapipe/framework/status_handler.proto
mediapipe/framework/stream_handler.proto
mediapipe/framework/subgraph.cc
mediapipe/framework/subgraph.h
mediapipe/framework/subgraph_test.cc
mediapipe/framework/test_calculators.cc
mediapipe/framework/test_calculators.proto
mediapipe/framework/test_service.cc
mediapipe/framework/test_service.h
mediapipe/framework/thread_pool_executor.cc
mediapipe/framework/thread_pool_executor.h
mediapipe/framework/thread_pool_executor.proto
mediapipe/framework/throttler.h
mediapipe/framework/timestamp.cc
mediapipe/framework/timestamp.h
mediapipe/framework/timestamp_test.cc
mediapipe/framework/transitive_protos.bzl
mediapipe/framework/type_map.h
mediapipe/framework/mediapipe_options.proto
mediapipe/framework/mediapipe_profiling.h
mediapipe/framework/validated_graph_config.cc
mediapipe/framework/validated_graph_config.h
mediapipe/gpu/BUILD
mediapipe/gpu/copy_calculator.proto
mediapipe/gpu/egl_surface_holder.h
mediapipe/gpu/gl_base.h
mediapipe/gpu/gl_calculator_helper.cc
mediapipe/gpu/gl_calculator_helper.h
mediapipe/gpu/gl_calculator_helper_impl.h
mediapipe/gpu/gl_calculator_helper_impl_android.cc
mediapipe/gpu/gl_calculator_helper_impl_common.cc
mediapipe/gpu/gl_calculator_helper_impl_ios.mm
mediapipe/gpu/gl_context.cc
mediapipe/gpu/gl_context.h
mediapipe/gpu/gl_context_eagl.cc
mediapipe/gpu/gl_context_egl.cc
mediapipe/gpu/gl_context_internal.h
mediapipe/gpu/gl_context_nsgl.cc
mediapipe/gpu/gl_context_options.proto
mediapipe/gpu/gl_context_webgl.cc
mediapipe/gpu/gl_ios_test.mm
mediapipe/gpu/gl_quad_renderer.cc
mediapipe/gpu/gl_quad_renderer.h
mediapipe/gpu/gl_scaler_calculator.cc
mediapipe/gpu/gl_scaler_calculator.proto
mediapipe/gpu/gl_simple_calculator.cc
mediapipe/gpu/gl_simple_calculator.h
mediapipe/gpu/gl_simple_shaders.cc
mediapipe/gpu/gl_simple_shaders.h
mediapipe/gpu/gl_surface_sink_calculator.cc
mediapipe/gpu/gl_surface_sink_calculator.proto
mediapipe/gpu/gl_texture_buffer.cc
mediapipe/gpu/gl_texture_buffer.h
mediapipe/gpu/gl_texture_buffer_pool.cc
mediapipe/gpu/gl_texture_buffer_pool.h
mediapipe/gpu/gl_thread_collector.h
mediapipe/gpu/gpu_buffer.h
mediapipe/gpu/gpu_buffer_format.cc
mediapipe/gpu/gpu_buffer_format.h
mediapipe/gpu/gpu_buffer_multi_pool.cc
mediapipe/gpu/gpu_buffer_multi_pool.h
mediapipe/gpu/gpu_buffer_test.cc
mediapipe/gpu/gpu_buffer_to_image_frame_calculator.cc
mediapipe/gpu/gpu_service.cc
mediapipe/gpu/gpu_service.h
mediapipe/gpu/gpu_shared_data_internal.cc
mediapipe/gpu/gpu_shared_data_internal.h
mediapipe/gpu/gpu_test_base.h
mediapipe/gpu/graph_support.h
mediapipe/gpu/image_frame_to_gpu_buffer_calculator.cc
mediapipe/gpu/metal.bzl
mediapipe/gpu/metal_shader_base.h
mediapipe/gpu/MPPGraphGPUData.h
mediapipe/gpu/MPPGraphGPUData.mm
mediapipe/gpu/MPPGraphGPUDataTests.mm
mediapipe/gpu/MPPMetalHelper.h
mediapipe/gpu/MPPMetalHelper.mm
mediapipe/gpu/MPPMetalUtil.h
mediapipe/gpu/MPPMetalUtil.mm
mediapipe/gpu/pixel_buffer_pool_util.h
mediapipe/gpu/pixel_buffer_pool_util.mm
mediapipe/gpu/scale_mode.proto
mediapipe/gpu/shader_util.cc
mediapipe/gpu/shader_util.h
mediapipe/graphs/edge_detection/BUILD
mediapipe/graphs/edge_detection/edge_detection_mobile_gpu.pbtxt
mediapipe/graphs/face_detection/BUILD
mediapipe/graphs/face_detection/cartoon_face.pbtxt
mediapipe/graphs/face_detection/clip_image_demo.pbtxt
mediapipe/graphs/face_detection/demo_mobile.pbtxt
mediapipe/graphs/face_detection/demo_test.pbtxt
mediapipe/graphs/face_detection/doc_detection.pbtxt
mediapipe/graphs/face_detection/face_desktop_detect.pbtxt
mediapipe/graphs/face_detection/face_desktop_landmarks.pbtxt
mediapipe/graphs/face_detection/face_detection_back_desktop_live.pbtxt
mediapipe/graphs/face_detection/face_detection_back_mobile_gpu.pbtxt
mediapipe/graphs/face_detection/face_detection_desktop_live.pbtxt
mediapipe/graphs/face_detection/face_detection_mobile_cpu.pbtxt
mediapipe/graphs/face_detection/face_detection_mobile_gpu.pbtxt
mediapipe/graphs/face_detection/face_mobile_detect.pbtxt
mediapipe/graphs/face_detection/gesture_detection_mobile.pbtxt
mediapipe/graphs/face_detection/hand_detection_mobile.pbtxt
mediapipe/graphs/face_detection/hand_detection_mobile_android.pbtxt
mediapipe/graphs/face_detection/hand_mnn_desktop.pbtxt
mediapipe/graphs/face_detection/hand_num_mobile.pbtxt
mediapipe/graphs/face_detection/mobilenet_mobile.pbtxt
mediapipe/graphs/face_detection/segment_mobile.pbtxt
mediapipe/graphs/face_detection/sex_mobile.pbtxt
mediapipe/graphs/face_detection/tensor_image_test.pbtxt
mediapipe/graphs/face_detection/testgraph.pbtxt
mediapipe/graphs/face_detection/veg_detection_mobile.pbtxt
mediapipe/graphs/face_detection/yolo_detection_mobile.pbtxt
mediapipe/graphs/face_mesh/calculators/BUILD
mediapipe/graphs/face_mesh/calculators/face_landmarks_to_render_data_calculator.cc
mediapipe/graphs/face_mesh/subgraphs/BUILD
mediapipe/graphs/face_mesh/subgraphs/face_renderer_cpu.pbtxt
mediapipe/graphs/face_mesh/subgraphs/face_renderer_gpu.pbtxt
mediapipe/graphs/face_mesh/BUILD
mediapipe/graphs/face_mesh/face_mesh_desktop.pbtxt
mediapipe/graphs/face_mesh/face_mesh_desktop_live.pbtxt
mediapipe/graphs/face_mesh/face_mesh_desktop_live_gpu.pbtxt
mediapipe/graphs/face_mesh/face_mesh_mobile.pbtxt
mediapipe/graphs/hair_segmentation/BUILD
mediapipe/graphs/hair_segmentation/hair_segmentation_desktop_live.pbtxt
mediapipe/graphs/hair_segmentation/hair_segmentation_mobile_gpu.pbtxt
mediapipe/graphs/hand_tracking/calculators/BUILD
mediapipe/graphs/hand_tracking/calculators/hand_landmarks_to_rect_calculator.cc
mediapipe/graphs/hand_tracking/subgraphs/BUILD
mediapipe/graphs/hand_tracking/subgraphs/hand_detection_cpu.pbtxt
mediapipe/graphs/hand_tracking/subgraphs/hand_detection_gpu.pbtxt
mediapipe/graphs/hand_tracking/subgraphs/hand_landmark_cpu.pbtxt
mediapipe/graphs/hand_tracking/subgraphs/hand_landmark_gpu.pbtxt
mediapipe/graphs/hand_tracking/subgraphs/multi_hand_detection_cpu.pbtxt
mediapipe/graphs/hand_tracking/subgraphs/multi_hand_detection_gpu.pbtxt
mediapipe/graphs/hand_tracking/subgraphs/multi_hand_landmark.pbtxt
mediapipe/graphs/hand_tracking/subgraphs/multi_hand_renderer_cpu.pbtxt
mediapipe/graphs/hand_tracking/subgraphs/multi_hand_renderer_gpu.pbtxt
mediapipe/graphs/hand_tracking/subgraphs/renderer_cpu.pbtxt
mediapipe/graphs/hand_tracking/subgraphs/renderer_gpu.pbtxt
mediapipe/graphs/hand_tracking/BUILD
mediapipe/graphs/hand_tracking/hand_detection_desktop.pbtxt
mediapipe/graphs/hand_tracking/hand_detection_desktop_live.pbtxt
mediapipe/graphs/hand_tracking/hand_detection_mobile.pbtxt
mediapipe/graphs/hand_tracking/hand_tracking_desktop.pbtxt
mediapipe/graphs/hand_tracking/hand_tracking_desktop_live.pbtxt
mediapipe/graphs/hand_tracking/hand_tracking_mobile.pbtxt
mediapipe/graphs/hand_tracking/multi_hand_tracking_desktop.pbtxt
mediapipe/graphs/hand_tracking/multi_hand_tracking_desktop_live.pbtxt
mediapipe/graphs/hand_tracking/multi_hand_tracking_mobile.pbtxt
mediapipe/graphs/instant_motion_tracking/calculators/BUILD
mediapipe/graphs/instant_motion_tracking/calculators/matrices_manager_calculator.cc
mediapipe/graphs/instant_motion_tracking/calculators/sticker_buffer.proto
mediapipe/graphs/instant_motion_tracking/calculators/sticker_manager_calculator.cc
mediapipe/graphs/instant_motion_tracking/calculators/tracked_anchor_manager_calculator.cc
mediapipe/graphs/instant_motion_tracking/calculators/transformations.h
mediapipe/graphs/instant_motion_tracking/subgraphs/BUILD
mediapipe/graphs/instant_motion_tracking/subgraphs/region_tracking.pbtxt
mediapipe/graphs/instant_motion_tracking/BUILD
mediapipe/graphs/instant_motion_tracking/instant_motion_tracking.pbtxt
mediapipe/graphs/iris_tracking/calculators/BUILD
mediapipe/graphs/iris_tracking/calculators/iris_to_depth_calculator.cc
mediapipe/graphs/iris_tracking/calculators/iris_to_depth_calculator.proto
mediapipe/graphs/iris_tracking/calculators/iris_to_render_data_calculator.cc
mediapipe/graphs/iris_tracking/calculators/iris_to_render_data_calculator.proto
mediapipe/graphs/iris_tracking/calculators/update_face_landmarks_calculator.cc
mediapipe/graphs/iris_tracking/subgraphs/BUILD
mediapipe/graphs/iris_tracking/subgraphs/iris_and_depth_renderer_cpu.pbtxt
mediapipe/graphs/iris_tracking/subgraphs/iris_and_depth_renderer_gpu.pbtxt
mediapipe/graphs/iris_tracking/subgraphs/iris_renderer_cpu.pbtxt
mediapipe/graphs/iris_tracking/BUILD
mediapipe/graphs/iris_tracking/iris_depth_cpu.pbtxt
mediapipe/graphs/iris_tracking/iris_tracking_cpu.pbtxt
mediapipe/graphs/iris_tracking/iris_tracking_cpu_video_input.pbtxt
mediapipe/graphs/iris_tracking/iris_tracking_gpu.pbtxt
mediapipe/graphs/media_sequence/BUILD
mediapipe/graphs/media_sequence/clipped_images_from_file_at_24fps.pbtxt
mediapipe/graphs/media_sequence/tvl1_flow_and_rgb_from_file.pbtxt
mediapipe/graphs/object_detection/BUILD
mediapipe/graphs/object_detection/object_detection_desktop_live.pbtxt
mediapipe/graphs/object_detection/object_detection_desktop_tensorflow_graph.pbtxt
mediapipe/graphs/object_detection/object_detection_desktop_tflite_graph.pbtxt
mediapipe/graphs/object_detection/object_detection_mobile_cpu.pbtxt
mediapipe/graphs/object_detection/object_detection_mobile_gpu.pbtxt
mediapipe/graphs/object_detection_3d/calculators/a_r_capture_metadata.proto
mediapipe/graphs/object_detection_3d/calculators/annotation_data.proto
mediapipe/graphs/object_detection_3d/calculators/annotations_to_model_matrices_calculator.cc
mediapipe/graphs/object_detection_3d/calculators/annotations_to_model_matrices_calculator.proto
mediapipe/graphs/object_detection_3d/calculators/annotations_to_render_data_calculator.cc
mediapipe/graphs/object_detection_3d/calculators/annotations_to_render_data_calculator.proto
mediapipe/graphs/object_detection_3d/calculators/belief_decoder_config.proto
mediapipe/graphs/object_detection_3d/calculators/box.cc
mediapipe/graphs/object_detection_3d/calculators/box.h
mediapipe/graphs/object_detection_3d/calculators/box_util.cc
mediapipe/graphs/object_detection_3d/calculators/box_util.h
mediapipe/graphs/object_detection_3d/calculators/box_util_test.cc
mediapipe/graphs/object_detection_3d/calculators/BUILD
mediapipe/graphs/object_detection_3d/calculators/camera_parameters.proto
mediapipe/graphs/object_detection_3d/calculators/decoder.cc
mediapipe/graphs/object_detection_3d/calculators/decoder.h
mediapipe/graphs/object_detection_3d/calculators/frame_annotation_to_timed_box_list_calculator.cc
mediapipe/graphs/object_detection_3d/calculators/frame_annotation_tracker.cc
mediapipe/graphs/object_detection_3d/calculators/frame_annotation_tracker.h
mediapipe/graphs/object_detection_3d/calculators/frame_annotation_tracker_calculator.cc
mediapipe/graphs/object_detection_3d/calculators/frame_annotation_tracker_calculator.proto
mediapipe/graphs/object_detection_3d/calculators/frame_annotation_tracker_test.cc
mediapipe/graphs/object_detection_3d/calculators/gl_animation_overlay_calculator.cc
mediapipe/graphs/object_detection_3d/calculators/gl_animation_overlay_calculator.proto
mediapipe/graphs/object_detection_3d/calculators/lift_2d_frame_annotation_to_3d_calculator.cc
mediapipe/graphs/object_detection_3d/calculators/lift_2d_frame_annotation_to_3d_calculator.proto
mediapipe/graphs/object_detection_3d/calculators/model.cc
mediapipe/graphs/object_detection_3d/calculators/model.h
mediapipe/graphs/object_detection_3d/calculators/model_matrix.proto
mediapipe/graphs/object_detection_3d/calculators/object.proto
mediapipe/graphs/object_detection_3d/calculators/tensor_util.cc
mediapipe/graphs/object_detection_3d/calculators/tensor_util.h
mediapipe/graphs/object_detection_3d/calculators/tflite_tensors_to_objects_calculator.cc
mediapipe/graphs/object_detection_3d/calculators/tflite_tensors_to_objects_calculator.proto
mediapipe/graphs/object_detection_3d/calculators/types.h
mediapipe/graphs/object_detection_3d/subgraphs/BUILD
mediapipe/graphs/object_detection_3d/subgraphs/objectron_detection_gpu.pbtxt
mediapipe/graphs/object_detection_3d/subgraphs/objectron_tracking_gpu.pbtxt
mediapipe/graphs/object_detection_3d/BUILD
mediapipe/graphs/object_detection_3d/chair_classic_occlusion_tracking.pbtxt
mediapipe/graphs/object_detection_3d/shoe_classic_occlusion_tracking.pbtxt
mediapipe/graphs/pose_tracking/calculators/BUILD
mediapipe/graphs/pose_tracking/calculators/landmarks_smoothing_calculator.cc
mediapipe/graphs/pose_tracking/calculators/landmarks_smoothing_calculator.proto
mediapipe/graphs/pose_tracking/calculators/low_pass_filter.cc
mediapipe/graphs/pose_tracking/calculators/low_pass_filter.h
mediapipe/graphs/pose_tracking/calculators/low_pass_filter_test.cc
mediapipe/graphs/pose_tracking/calculators/relative_velocity_filter.cc
mediapipe/graphs/pose_tracking/calculators/relative_velocity_filter.h
mediapipe/graphs/pose_tracking/calculators/relative_velocity_filter_test.cc
mediapipe/graphs/pose_tracking/subgraphs/BUILD
mediapipe/graphs/pose_tracking/subgraphs/upper_body_pose_renderer_cpu.pbtxt
mediapipe/graphs/pose_tracking/subgraphs/upper_body_pose_renderer_gpu.pbtxt
mediapipe/graphs/pose_tracking/BUILD
mediapipe/graphs/pose_tracking/upper_body_pose_tracking_cpu.pbtxt
mediapipe/graphs/pose_tracking/upper_body_pose_tracking_gpu.pbtxt
mediapipe/graphs/template_matching/BUILD
mediapipe/graphs/template_matching/index_building.pbtxt
mediapipe/graphs/template_matching/template_matching_desktop.pbtxt
mediapipe/graphs/template_matching/template_matching_mobile_cpu.pbtxt
mediapipe/graphs/tracking/subgraphs/box_tracking_cpu.pbtxt
mediapipe/graphs/tracking/subgraphs/box_tracking_gpu.pbtxt
mediapipe/graphs/tracking/subgraphs/BUILD
mediapipe/graphs/tracking/subgraphs/object_detection_cpu.pbtxt
mediapipe/graphs/tracking/subgraphs/object_detection_gpu.pbtxt
mediapipe/graphs/tracking/subgraphs/object_tracking_cpu.pbtxt
mediapipe/graphs/tracking/subgraphs/object_tracking_gpu.pbtxt
mediapipe/graphs/tracking/subgraphs/renderer_cpu.pbtxt
mediapipe/graphs/tracking/subgraphs/renderer_gpu.pbtxt
mediapipe/graphs/tracking/BUILD
mediapipe/graphs/tracking/object_detection_tracking_desktop_live.pbtxt
mediapipe/graphs/tracking/object_detection_tracking_mobile_gpu.pbtxt
mediapipe/graphs/youtube8m/BUILD
mediapipe/graphs/youtube8m/feature_extraction.pbtxt
mediapipe/graphs/youtube8m/label_map.txt
mediapipe/graphs/youtube8m/local_video_model_inference.pbtxt
mediapipe/graphs/youtube8m/yt8m_dataset_model_inference.pbtxt
mediapipe/include/AdPred/AdPredBizCalculator.cc
mediapipe/include/AdPred/AdPredBizCalculator.h
mediapipe/include/AdPred/AdPredInfer.cc
mediapipe/include/AdPred/AdPredInfer.h
mediapipe/include/AdPred/BUILD
mediapipe/include/AdPred/test_x.txt
mediapipe/include/AdPred/test_y.txt
mediapipe/include/BUILD
mediapipe/include/README.md
mediapipe/include/UGraph.cpp
mediapipe/include/UGraph.h
mediapipe/include/mediapipeApi.cpp
mediapipe/include/mediapipeApi.h
mediapipe/include/mediapipeCalculator.cpp
mediapipe/include/mediapipeCalculator.h
mediapipe/include/mediapipeCommon.cpp
mediapipe/include/mediapipeCommon.h
mediapipe/include/mediapipecommon_internal.h
mediapipe/include/UPPacket.cpp
mediapipe/include/UPPacket.h
mediapipe/java/com/ali/uc/mediapipe/components/AudioDataConsumer.java
mediapipe/java/com/ali/uc/mediapipe/components/AudioDataProcessor.java
mediapipe/java/com/ali/uc/mediapipe/components/AudioDataProducer.java
mediapipe/java/com/ali/uc/mediapipe/components/BUILD
mediapipe/java/com/ali/uc/mediapipe/components/CameraHelper.java
mediapipe/java/com/ali/uc/mediapipe/components/CameraXPreviewHelper.java
mediapipe/java/com/ali/uc/mediapipe/components/ExternalTextureConverter.java
mediapipe/java/com/ali/uc/mediapipe/components/FrameProcessor.java
mediapipe/java/com/ali/uc/mediapipe/components/MicrophoneHelper.java
mediapipe/java/com/ali/uc/mediapipe/components/PermissionHelper.java
mediapipe/java/com/ali/uc/mediapipe/components/TextureFrameConsumer.java
mediapipe/java/com/ali/uc/mediapipe/components/TextureFrameProcessor.java
mediapipe/java/com/ali/uc/mediapipe/components/TextureFrameProducer.java
mediapipe/java/com/ali/uc/mediapipe/framework/jni/android_asset_util_jni.cc
mediapipe/java/com/ali/uc/mediapipe/framework/jni/android_asset_util_jni.h
mediapipe/java/com/ali/uc/mediapipe/framework/jni/android_packet_creator_jni.cc
mediapipe/java/com/ali/uc/mediapipe/framework/jni/android_packet_creator_jni.h
mediapipe/java/com/ali/uc/mediapipe/framework/jni/BUILD
mediapipe/java/com/ali/uc/mediapipe/framework/jni/class_registry.cc
mediapipe/java/com/ali/uc/mediapipe/framework/jni/class_registry.h
mediapipe/java/com/ali/uc/mediapipe/framework/jni/colorspace.h
mediapipe/java/com/ali/uc/mediapipe/framework/jni/compat_jni.cc
mediapipe/java/com/ali/uc/mediapipe/framework/jni/compat_jni.h
mediapipe/java/com/ali/uc/mediapipe/framework/jni/graph.cc
mediapipe/java/com/ali/uc/mediapipe/framework/jni/graph.h
mediapipe/java/com/ali/uc/mediapipe/framework/jni/graph_gl_sync_token.cc
mediapipe/java/com/ali/uc/mediapipe/framework/jni/graph_gl_sync_token.h
mediapipe/java/com/ali/uc/mediapipe/framework/jni/graph_jni.cc
mediapipe/java/com/ali/uc/mediapipe/framework/jni/graph_jni.h
mediapipe/java/com/ali/uc/mediapipe/framework/jni/graph_profiler_jni.cc
mediapipe/java/com/ali/uc/mediapipe/framework/jni/graph_profiler_jni.h
mediapipe/java/com/ali/uc/mediapipe/framework/jni/graph_service_jni.cc
mediapipe/java/com/ali/uc/mediapipe/framework/jni/graph_service_jni.h
mediapipe/java/com/ali/uc/mediapipe/framework/jni/graph_texture_frame_jni.cc
mediapipe/java/com/ali/uc/mediapipe/framework/jni/graph_texture_frame_jni.h
mediapipe/java/com/ali/uc/mediapipe/framework/jni/jni_util.cc
mediapipe/java/com/ali/uc/mediapipe/framework/jni/jni_util.h
mediapipe/java/com/ali/uc/mediapipe/framework/jni/packet_context_jni.cc
mediapipe/java/com/ali/uc/mediapipe/framework/jni/packet_context_jni.h
mediapipe/java/com/ali/uc/mediapipe/framework/jni/packet_creator_jni.cc
mediapipe/java/com/ali/uc/mediapipe/framework/jni/packet_creator_jni.h
mediapipe/java/com/ali/uc/mediapipe/framework/jni/packet_getter_jni.cc
mediapipe/java/com/ali/uc/mediapipe/framework/jni/packet_getter_jni.h
mediapipe/java/com/ali/uc/mediapipe/framework/jni/register_natives.cc
mediapipe/java/com/ali/uc/mediapipe/framework/jni/register_natives.h
mediapipe/java/com/ali/uc/mediapipe/framework/jni/surface_output_jni.cc
mediapipe/java/com/ali/uc/mediapipe/framework/jni/surface_output_jni.h
mediapipe/java/com/ali/uc/mediapipe/framework/AndroidAssetUtil.java
mediapipe/java/com/ali/uc/mediapipe/framework/AndroidPacketCreator.java
mediapipe/java/com/ali/uc/mediapipe/framework/AndroidPacketGetter.java
mediapipe/java/com/ali/uc/mediapipe/framework/AppTextureFrame.java
mediapipe/java/com/ali/uc/mediapipe/framework/AssetCache.java
mediapipe/java/com/ali/uc/mediapipe/framework/AssetCacheDbHelper.java
mediapipe/java/com/ali/uc/mediapipe/framework/BUILD
mediapipe/java/com/ali/uc/mediapipe/framework/Compat.java
mediapipe/java/com/ali/uc/mediapipe/framework/DummyAndroidManifest.xml
mediapipe/java/com/ali/uc/mediapipe/framework/GlSyncToken.java
mediapipe/java/com/ali/uc/mediapipe/framework/Graph.java
mediapipe/java/com/ali/uc/mediapipe/framework/GraphGlSyncToken.java
mediapipe/java/com/ali/uc/mediapipe/framework/GraphProfiler.java
mediapipe/java/com/ali/uc/mediapipe/framework/GraphService.java
mediapipe/java/com/ali/uc/mediapipe/framework/GraphTextureFrame.java
mediapipe/java/com/ali/uc/mediapipe/framework/MediaPipeException.java
mediapipe/java/com/ali/uc/mediapipe/framework/MediaPipeRunner.java
mediapipe/java/com/ali/uc/mediapipe/framework/Packet.java
mediapipe/java/com/ali/uc/mediapipe/framework/PacketCallback.java
mediapipe/java/com/ali/uc/mediapipe/framework/PacketCreator.java
mediapipe/java/com/ali/uc/mediapipe/framework/PacketGetter.java
mediapipe/java/com/ali/uc/mediapipe/framework/PacketWithHeaderCallback.java
mediapipe/java/com/ali/uc/mediapipe/framework/proguard.pgcfg
mediapipe/java/com/ali/uc/mediapipe/framework/proguard_allowobfuscation.pgcfg
mediapipe/java/com/ali/uc/mediapipe/framework/ProtoUtil.java
mediapipe/java/com/ali/uc/mediapipe/framework/SurfaceOutput.java
mediapipe/java/com/ali/uc/mediapipe/framework/TextureFrame.java
mediapipe/java/com/ali/uc/mediapipe/framework/TextureReleaseCallback.java
mediapipe/java/com/ali/uc/mediapipe/framework/TypeNameRegistry.java
mediapipe/java/com/ali/uc/mediapipe/framework/TypeNameRegistryFull.java
mediapipe/java/com/ali/uc/mediapipe/framework/TypeNameRegistryLite.java
mediapipe/java/com/ali/uc/mediapipe/glutil/BUILD
mediapipe/java/com/ali/uc/mediapipe/glutil/CommonShaders.java
mediapipe/java/com/ali/uc/mediapipe/glutil/EglManager.java
mediapipe/java/com/ali/uc/mediapipe/glutil/ExternalTextureRenderer.java
mediapipe/java/com/ali/uc/mediapipe/glutil/GlThread.java
mediapipe/java/com/ali/uc/mediapipe/glutil/ShaderUtil.java
mediapipe/java/com/ali/uc/mediapipe/glutil/TextureRenderer.java
mediapipe/java/com/ali/uc/mediapipe/BUILD
mediapipe/java/com/ali/uc/mediapipe/mediapipe_aar.bzl
mediapipe/models/object_detection_saved_model/model.ckpt.data-00000-of-00001
mediapipe/models/object_detection_saved_model/model.ckpt.index
mediapipe/models/object_detection_saved_model/model.ckpt.meta
mediapipe/models/object_detection_saved_model/pipeline.config
mediapipe/models/object_detection_saved_model/README.md
mediapipe/models/object_detection_saved_model/saved_model.pb
mediapipe/models/1.jpg
mediapipe/models/BUILD
mediapipe/models/cartoon_face.mnn
mediapipe/models/doc_mask.mnn
mediapipe/models/face_detection_back.tflite
mediapipe/models/face_detection_back_labelmap.txt
mediapipe/models/face_detection_front.tflite
mediapipe/models/face_detection_front_labelmap.txt
mediapipe/models/face_landmark.tflite
mediapipe/models/face_x13_y11_112_20200716.mnn
mediapipe/models/hair_segmentation.tflite
mediapipe/models/hand_landmark.tflite
mediapipe/models/handedness.txt
mediapipe/models/iris_landmark.tflite
mediapipe/models/knift_float.tflite
mediapipe/models/knift_float_1k.tflite
mediapipe/models/knift_float_400.tflite
mediapipe/models/knift_index.pb
mediapipe/models/knift_labelmap.txt
mediapipe/models/lut1.png
mediapipe/models/object_detection_3d_chair.tflite
mediapipe/models/object_detection_3d_sneakers.tflite
mediapipe/models/palm_detection.tflite
mediapipe/models/palm_detection_labelmap.txt
mediapipe/models/README.md
mediapipe/models/ssdlite_object_detection.tflite
mediapipe/models/ssdlite_object_detection_labelmap.txt
mediapipe/models/ucface_v3_quan.mnn
mediapipe/modules/face_detection/BUILD
mediapipe/modules/face_detection/face_detection_front.tflite
mediapipe/modules/face_detection/face_detection_front_cpu.pbtxt
mediapipe/modules/face_detection/face_detection_front_gpu.pbtxt
mediapipe/modules/face_detection/README.md
mediapipe/modules/face_landmark/BUILD
mediapipe/modules/face_landmark/face_detection_front_detection_to_roi.pbtxt
mediapipe/modules/face_landmark/face_landmark.tflite
mediapipe/modules/face_landmark/face_landmark_cpu.pbtxt
mediapipe/modules/face_landmark/face_landmark_front_cpu.pbtxt
mediapipe/modules/face_landmark/face_landmark_front_gpu.pbtxt
mediapipe/modules/face_landmark/face_landmark_gpu.pbtxt
mediapipe/modules/face_landmark/face_landmark_landmarks_to_roi.pbtxt
mediapipe/modules/face_landmark/README.md
mediapipe/modules/iris_landmark/BUILD
mediapipe/modules/iris_landmark/iris_landmark.tflite
mediapipe/modules/iris_landmark/iris_landmark_cpu.pbtxt
mediapipe/modules/iris_landmark/iris_landmark_gpu.pbtxt
mediapipe/modules/iris_landmark/iris_landmark_landmarks_to_roi.pbtxt
mediapipe/modules/iris_landmark/iris_landmark_left_and_right_cpu.pbtxt
mediapipe/modules/iris_landmark/iris_landmark_left_and_right_gpu.pbtxt
mediapipe/modules/iris_landmark/README.md
mediapipe/modules/pose_detection/BUILD
mediapipe/modules/pose_detection/pose_detection.tflite
mediapipe/modules/pose_detection/pose_detection_cpu.pbtxt
mediapipe/modules/pose_detection/pose_detection_gpu.pbtxt
mediapipe/modules/pose_detection/README.md
mediapipe/modules/pose_landmark/BUILD
mediapipe/modules/pose_landmark/pose_detection_to_roi.pbtxt
mediapipe/modules/pose_landmark/pose_landmark_upper_body.tflite
mediapipe/modules/pose_landmark/pose_landmark_upper_body_by_roi_cpu.pbtxt
mediapipe/modules/pose_landmark/pose_landmark_upper_body_by_roi_gpu.pbtxt
mediapipe/modules/pose_landmark/pose_landmark_upper_body_cpu.pbtxt
mediapipe/modules/pose_landmark/pose_landmark_upper_body_gpu.pbtxt
mediapipe/modules/pose_landmark/pose_landmark_upper_body_landmarks_to_roi.pbtxt
mediapipe/modules/pose_landmark/pose_landmark_upper_body_topology.svg
mediapipe/modules/pose_landmark/README.md
mediapipe/modules/README.md
mediapipe/objc/testdata/googlelogo_color_272x92dp.png
mediapipe/objc/testdata/googlelogo_color_272x92dp_luminance.png
mediapipe/objc/testdata/sergey.png
mediapipe/objc/testdata/sobel_reference.png
mediapipe/objc/testdata/test_sobel.pbtxt
mediapipe/objc/BUILD
mediapipe/objc/CFHolder.h
mediapipe/objc/CFHolderTests.mm
mediapipe/objc/CGImageRefUtils.h
mediapipe/objc/CGImageRefUtils.mm
mediapipe/objc/MPPCameraInputSource.h
mediapipe/objc/MPPCameraInputSource.m
mediapipe/objc/MPPDisplayLinkWeakTarget.h
mediapipe/objc/MPPDisplayLinkWeakTarget.m
mediapipe/objc/MPPGLViewRenderer.h
mediapipe/objc/MPPGLViewRenderer.mm
mediapipe/objc/MPPGpuSimpleTest.mm
mediapipe/objc/MPPGraph.h
mediapipe/objc/MPPGraph.mm
mediapipe/objc/MPPGraphTestBase.h
mediapipe/objc/MPPGraphTestBase.mm
mediapipe/objc/MPPGraphTests.mm
mediapipe/objc/MPPInputSource.h
mediapipe/objc/MPPInputSource.m
mediapipe/objc/MPPLayerRenderer.h
mediapipe/objc/MPPLayerRenderer.m
mediapipe/objc/MPPPlayerInputSource.h
mediapipe/objc/MPPPlayerInputSource.m
mediapipe/objc/MPPTimestampConverter.h
mediapipe/objc/MPPTimestampConverter.mm
mediapipe/objc/NSError+util_status.h
mediapipe/objc/NSError+util_status.mm
mediapipe/objc/util.cc
mediapipe/objc/util.h
mediapipe/objc/Weakify.h
mediapipe/python/pybind/BUILD
mediapipe/python/pybind/calculator_graph.cc
mediapipe/python/pybind/calculator_graph.h
mediapipe/python/pybind/image_frame.cc
mediapipe/python/pybind/image_frame.h
mediapipe/python/pybind/image_frame_util.h
mediapipe/python/pybind/matrix.cc
mediapipe/python/pybind/matrix.h
mediapipe/python/pybind/packet.cc
mediapipe/python/pybind/packet.h
mediapipe/python/pybind/packet_creator.cc
mediapipe/python/pybind/packet_creator.h
mediapipe/python/pybind/packet_getter.cc
mediapipe/python/pybind/packet_getter.h
mediapipe/python/pybind/resource_util.cc
mediapipe/python/pybind/resource_util.h
mediapipe/python/pybind/timestamp.cc
mediapipe/python/pybind/timestamp.h
mediapipe/python/pybind/util.h
mediapipe/python/__init__.py
mediapipe/python/BUILD
mediapipe/python/calculator_graph_test.py
mediapipe/python/framework_bindings.cc
mediapipe/python/image_frame_test.py
mediapipe/python/packet_creator.py
mediapipe/python/packet_getter.py
mediapipe/python/packet_test.py
mediapipe/python/timestamp_test.py
mediapipe/mediapipe.tulsiproj/Configs/mediapipe.tulsigen
mediapipe/mediapipe.tulsiproj/project.tulsiconf
mediapipe/util/android/file/base/BUILD
mediapipe/util/android/file/base/file.cc
mediapipe/util/android/file/base/file.h
mediapipe/util/android/file/base/filesystem.cc
mediapipe/util/android/file/base/filesystem.h
mediapipe/util/android/file/base/helpers.cc
mediapipe/util/android/file/base/helpers.h
mediapipe/util/android/asset_manager_util.cc
mediapipe/util/android/asset_manager_util.h
mediapipe/util/android/BUILD
mediapipe/util/android/logging.h
mediapipe/util/sequence/__init__.py
mediapipe/util/sequence/BUILD
mediapipe/util/sequence/media_sequence.cc
mediapipe/util/sequence/media_sequence.h
mediapipe/util/sequence/media_sequence.py
mediapipe/util/sequence/media_sequence_test.cc
mediapipe/util/sequence/media_sequence_test.py
mediapipe/util/sequence/media_sequence_util.h
mediapipe/util/sequence/media_sequence_util.py
mediapipe/util/sequence/media_sequence_util_test.cc
mediapipe/util/sequence/media_sequence_util_test.py
mediapipe/util/sequence/README.md
mediapipe/util/tflite/operations/BUILD
mediapipe/util/tflite/operations/max_pool_argmax.cc
mediapipe/util/tflite/operations/max_pool_argmax.h
mediapipe/util/tflite/operations/max_unpooling.cc
mediapipe/util/tflite/operations/max_unpooling.h
mediapipe/util/tflite/operations/transpose_conv_bias.cc
mediapipe/util/tflite/operations/transpose_conv_bias.h
mediapipe/util/tflite/BUILD
mediapipe/util/tflite/config.h
mediapipe/util/tflite/cpu_op_resolver.cc
mediapipe/util/tflite/cpu_op_resolver.h
mediapipe/util/tflite/op_resolver.cc
mediapipe/util/tflite/op_resolver.h
mediapipe/util/tflite/tensor_buffer.cc
mediapipe/util/tflite/tensor_buffer.h
mediapipe/util/tflite/tensor_buffer_test.cc
mediapipe/util/tflite/tflite_gpu_runner.cc
mediapipe/util/tflite/tflite_gpu_runner.h
mediapipe/util/tracking/testdata/box_tracker/chunk_0000
mediapipe/util/tracking/testdata/box_tracker/chunk_0001
mediapipe/util/tracking/testdata/box_tracker/chunk_0002
mediapipe/util/tracking/testdata/box_tracker/chunk_0003
mediapipe/util/tracking/testdata/box_tracker/chunk_0004
mediapipe/util/tracking/testdata/box_tracker/chunk_0005
mediapipe/util/tracking/testdata/box_tracker/chunk_0006
mediapipe/util/tracking/testdata/stabilize_test.png
mediapipe/util/tracking/box_detector.cc
mediapipe/util/tracking/box_detector.h
mediapipe/util/tracking/box_detector.proto
mediapipe/util/tracking/box_tracker.cc
mediapipe/util/tracking/box_tracker.h
mediapipe/util/tracking/box_tracker.proto
mediapipe/util/tracking/box_tracker_test.cc
mediapipe/util/tracking/BUILD
mediapipe/util/tracking/camera_motion.cc
mediapipe/util/tracking/camera_motion.h
mediapipe/util/tracking/camera_motion.proto
mediapipe/util/tracking/flow_packager.cc
mediapipe/util/tracking/flow_packager.h
mediapipe/util/tracking/flow_packager.proto
mediapipe/util/tracking/frame_selection.proto
mediapipe/util/tracking/frame_selection_solution_evaluator.proto
mediapipe/util/tracking/image_util.cc
mediapipe/util/tracking/image_util.h
mediapipe/util/tracking/image_util_test.cc
mediapipe/util/tracking/measure_time.cc
mediapipe/util/tracking/measure_time.h
mediapipe/util/tracking/motion_analysis.cc
mediapipe/util/tracking/motion_analysis.h
mediapipe/util/tracking/motion_analysis.proto
mediapipe/util/tracking/motion_estimation.cc
mediapipe/util/tracking/motion_estimation.h
mediapipe/util/tracking/motion_estimation.proto
mediapipe/util/tracking/motion_models.cc
mediapipe/util/tracking/motion_models.h
mediapipe/util/tracking/motion_models.proto
mediapipe/util/tracking/motion_models_cv.cc
mediapipe/util/tracking/motion_models_cv.h
mediapipe/util/tracking/motion_models_test.cc
mediapipe/util/tracking/motion_saliency.cc
mediapipe/util/tracking/motion_saliency.h
mediapipe/util/tracking/motion_saliency.proto
mediapipe/util/tracking/parallel_invoker.cc
mediapipe/util/tracking/parallel_invoker.h
mediapipe/util/tracking/parallel_invoker_forbid_mixed.cc
mediapipe/util/tracking/parallel_invoker_test.cc
mediapipe/util/tracking/push_pull_filtering.h
mediapipe/util/tracking/push_pull_filtering.proto
mediapipe/util/tracking/region_flow.cc
mediapipe/util/tracking/region_flow.h
mediapipe/util/tracking/region_flow.proto
mediapipe/util/tracking/region_flow_computation.cc
mediapipe/util/tracking/region_flow_computation.h
mediapipe/util/tracking/region_flow_computation.proto
mediapipe/util/tracking/region_flow_computation_test.cc
mediapipe/util/tracking/region_flow_visualization.cc
mediapipe/util/tracking/region_flow_visualization.h
mediapipe/util/tracking/streaming_buffer.cc
mediapipe/util/tracking/streaming_buffer.h
mediapipe/util/tracking/tone_estimation.cc
mediapipe/util/tracking/tone_estimation.h
mediapipe/util/tracking/tone_estimation.proto
mediapipe/util/tracking/tone_models.cc
mediapipe/util/tracking/tone_models.h
mediapipe/util/tracking/tone_models.proto
mediapipe/util/tracking/tracked_detection.cc
mediapipe/util/tracking/tracked_detection.h
mediapipe/util/tracking/tracked_detection_manager.cc
mediapipe/util/tracking/tracked_detection_manager.h
mediapipe/util/tracking/tracked_detection_manager_config.proto
mediapipe/util/tracking/tracked_detection_test.cc
mediapipe/util/tracking/tracking.cc
mediapipe/util/tracking/tracking.h
mediapipe/util/tracking/tracking.proto
mediapipe/util/tracking/tracking_visualization_utilities.cc
mediapipe/util/tracking/tracking_visualization_utilities.h
mediapipe/util/__init__.py
mediapipe/util/annotation_renderer.cc
mediapipe/util/annotation_renderer.h
mediapipe/util/audio_decoder.cc
mediapipe/util/audio_decoder.h
mediapipe/util/audio_decoder.proto
mediapipe/util/BUILD
mediapipe/util/color.proto
mediapipe/util/cpu_util.cc
mediapipe/util/cpu_util.h
mediapipe/util/header_util.cc
mediapipe/util/header_util.h
mediapipe/util/image_frame_util.cc
mediapipe/util/image_frame_util.h
mediapipe/util/render_data.proto
mediapipe/util/resource_util.cc
mediapipe/util/resource_util.h
mediapipe/util/resource_util_android.cc
mediapipe/util/resource_util_apple.cc
mediapipe/util/tensor_to_detection.cc
mediapipe/util/tensor_to_detection.h
mediapipe/util/time_series_test_util.h
mediapipe/util/time_series_util.cc
mediapipe/util/time_series_util.h
mediapipe/util/time_series_util_test.cc
mediapipe/__init__.py
mediapipe/BUILD
mediapipe/CMakeLists.txt
mediapipe/provisioning_profile.mobileprovision
BUILD
CMakeLists.txt
cmd
Dockerfile
README.md
setup_android_sdk_and_ndk.sh
setup_opencv.sh
version.txt
WORKSPACE)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment