├── .gitmodules ├── LICENSE ├── README.md ├── binding-gen ├── core_bindings.cpp ├── embindgen.py ├── hdr_parser.py └── templates.py ├── bindings.cpp ├── make.py ├── package.json ├── patch_emscripten_master.diff └── test ├── cv.data ├── cv.js ├── dat.gui.js ├── data ├── cv.png ├── haarcascade_eye.xml ├── haarcascade_frontalface_default.xml ├── hogcascade_pedestrians.xml ├── iris.data └── lena.png ├── face_detect.html ├── features_2d.html ├── img_proc.html ├── memoryprofiler.js ├── serve.py ├── test_commons.js ├── test_features2d.js ├── test_imgproc.js ├── test_io.js ├── test_mat.js ├── test_ml.js ├── test_objdetect.js ├── test_photo.js ├── test_shape.js ├── test_utils.js ├── test_video.js └── tests.html /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/README.md -------------------------------------------------------------------------------- /binding-gen/core_bindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/binding-gen/core_bindings.cpp -------------------------------------------------------------------------------- /binding-gen/embindgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/binding-gen/embindgen.py -------------------------------------------------------------------------------- /binding-gen/hdr_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/binding-gen/hdr_parser.py -------------------------------------------------------------------------------- /binding-gen/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/binding-gen/templates.py -------------------------------------------------------------------------------- /bindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/bindings.cpp -------------------------------------------------------------------------------- /make.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/make.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/package.json -------------------------------------------------------------------------------- /patch_emscripten_master.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/patch_emscripten_master.diff -------------------------------------------------------------------------------- /test/cv.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/test/cv.data -------------------------------------------------------------------------------- /test/cv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/test/cv.js -------------------------------------------------------------------------------- /test/dat.gui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/test/dat.gui.js -------------------------------------------------------------------------------- /test/data/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/test/data/cv.png -------------------------------------------------------------------------------- /test/data/haarcascade_eye.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/test/data/haarcascade_eye.xml -------------------------------------------------------------------------------- /test/data/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/test/data/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /test/data/hogcascade_pedestrians.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/test/data/hogcascade_pedestrians.xml -------------------------------------------------------------------------------- /test/data/iris.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/test/data/iris.data -------------------------------------------------------------------------------- /test/data/lena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/test/data/lena.png -------------------------------------------------------------------------------- /test/face_detect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/test/face_detect.html -------------------------------------------------------------------------------- /test/features_2d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/test/features_2d.html -------------------------------------------------------------------------------- /test/img_proc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/test/img_proc.html -------------------------------------------------------------------------------- /test/memoryprofiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/test/memoryprofiler.js -------------------------------------------------------------------------------- /test/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/test/serve.py -------------------------------------------------------------------------------- /test/test_commons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/test/test_commons.js -------------------------------------------------------------------------------- /test/test_features2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/test/test_features2d.js -------------------------------------------------------------------------------- /test/test_imgproc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/test/test_imgproc.js -------------------------------------------------------------------------------- /test/test_io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/test/test_io.js -------------------------------------------------------------------------------- /test/test_mat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/test/test_mat.js -------------------------------------------------------------------------------- /test/test_ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/test/test_ml.js -------------------------------------------------------------------------------- /test/test_objdetect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/test/test_objdetect.js -------------------------------------------------------------------------------- /test/test_photo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/test/test_photo.js -------------------------------------------------------------------------------- /test/test_shape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/test/test_shape.js -------------------------------------------------------------------------------- /test/test_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/test/test_utils.js -------------------------------------------------------------------------------- /test/test_video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/test/test_video.js -------------------------------------------------------------------------------- /test/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucisysarch/opencvjs/HEAD/test/tests.html --------------------------------------------------------------------------------