├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md └── conda ├── bld.bat ├── build.sh ├── cap_mpjpeg_decoder.patch ├── kcftracker.patch ├── meta.yaml ├── no_rpath.patch ├── ocr_beamsearch_decoder.patch └── ocr_hmm_decoder.patch /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | .DS_Store 3 | *~ 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menpo/conda-opencv3/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menpo/conda-opencv3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menpo/conda-opencv3/HEAD/README.md -------------------------------------------------------------------------------- /conda/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menpo/conda-opencv3/HEAD/conda/bld.bat -------------------------------------------------------------------------------- /conda/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menpo/conda-opencv3/HEAD/conda/build.sh -------------------------------------------------------------------------------- /conda/cap_mpjpeg_decoder.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menpo/conda-opencv3/HEAD/conda/cap_mpjpeg_decoder.patch -------------------------------------------------------------------------------- /conda/kcftracker.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menpo/conda-opencv3/HEAD/conda/kcftracker.patch -------------------------------------------------------------------------------- /conda/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menpo/conda-opencv3/HEAD/conda/meta.yaml -------------------------------------------------------------------------------- /conda/no_rpath.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menpo/conda-opencv3/HEAD/conda/no_rpath.patch -------------------------------------------------------------------------------- /conda/ocr_beamsearch_decoder.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menpo/conda-opencv3/HEAD/conda/ocr_beamsearch_decoder.patch -------------------------------------------------------------------------------- /conda/ocr_hmm_decoder.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menpo/conda-opencv3/HEAD/conda/ocr_hmm_decoder.patch --------------------------------------------------------------------------------