gitextract_n68vdvyl/ ├── .ci/ │ ├── install_cuda.sh │ └── travis_build_opencv.sh ├── .clang-format ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .travis.yml ├── .windows/ │ ├── mingw_build_OCV.ps1 │ ├── msvc_1_install_CUDA.ps1 │ └── msvc_2_build_OCV.ps1 ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE ├── README.md ├── appveyor.yml ├── assets/ │ ├── OCRHMM_transitions_table.xml │ ├── cuda_haarcascade_frontalface_default.xml │ └── haarcascade_frontalface_default.xml ├── build.rs ├── examples/ │ ├── calc_gradient.rs │ ├── calc_hist.rs │ ├── camshift.rs │ ├── display_image.rs │ ├── face_detect.rs │ ├── hog.rs │ ├── hs_hist.rs │ └── video_capture.rs ├── native/ │ ├── common-rust.cc │ ├── common-rust.h │ ├── common.h │ ├── cuda/ │ │ ├── cuda.cc │ │ └── cuda.h │ ├── features2d.cc │ ├── features2d.h │ ├── hash.cc │ ├── hash.h │ ├── highgui.cc │ ├── highgui.h │ ├── imcodecs.cc │ ├── imcodecs.h │ ├── imgproc.cc │ ├── imgproc.h │ ├── mat.cc │ ├── mat.h │ ├── objdetect.cc │ ├── objdetect.h │ ├── text/ │ │ ├── text.cc │ │ └── text.h │ ├── utils.cc │ ├── utils.h │ ├── video.cc │ ├── video.h │ ├── videoio.cc │ └── videoio.h ├── rustfmt.toml ├── setup_hooks.sh ├── src/ │ ├── core.rs │ ├── cuda.rs │ ├── errors.rs │ ├── features2d/ │ │ ├── bow_k_means_trainer.rs │ │ ├── descriptor_matcher.rs │ │ ├── mod.rs │ │ ├── mser.rs │ │ ├── sift.rs │ │ └── surf.rs │ ├── hash.rs │ ├── highgui.rs │ ├── imgcodecs.rs │ ├── imgproc.rs │ ├── lib.rs │ ├── mat.rs │ ├── objdetect.rs │ ├── text/ │ │ ├── hmm.rs │ │ ├── holisticword.rs │ │ ├── macros.rs │ │ ├── mod.rs │ │ └── tesseract.rs │ ├── video.rs │ └── videoio.rs └── tests/ ├── benchmark.rs ├── floatutils.rs ├── test_basic_ops.rs ├── test_features2d.rs ├── test_hash.rs ├── test_imgproc.rs ├── test_objdetect.rs ├── test_text.rs ├── test_video.rs └── utils.rs