![]() |
OpenCV
4.1.2
Open Source Computer Vision
|
Emscripten is an LLVM-to-JavaScript compiler. We will use Emscripten to build OpenCV.js.
To Install Emscripten, follow instructions of Emscripten SDK.
For example:
emsdk command. Please refer to Developer's Guide for more details.After install, ensure the EMSCRIPTEN environment is setup correctly.
For example:
You can use the latest stable OpenCV version or you can grab the latest snapshot from our Git repository.
Launch Git client and clone OpenCV repository.
For example:
git installed in your development environment.To build opencv.js, execute python script <opencv_src_dir>/platforms/js/build_js.py <build_dir>.
For example, to build in build_js directory:
python and cmake installed in your development environment.The build script builds asm.js version by default. To build WebAssembly version, append --build_wasm switch.
For example, to build wasm version in build_wasm directory:
[optional] To build documents, append --build_doc option.
For example:
doxygen installed in your development environment.[optional] To build tests, append --build_test option.
For example:
To run tests, launch a local web server in <build_dir>/bin folder. For example, node http-server which serves on localhost:8080.
Navigate the web browser to http://localhost:8080/tests.html, which runs the unit tests automatically.
You can also run tests using Node.js.
For example:
node installed in your development environment.[optional] To build opencv.js with threads optimization, append --threads option.
For example:
The default threads number is the logic core number of your device. You can use cv.parallel_pthreads_set_threads_num(number) to set threads number by yourself and use cv.parallel_pthreads_get_threads_num() to get the current threads number.
opencv.js if you want to enable this optimization. And the threads optimization only works in browser, not in node.js. You need to enable the WebAssembly threads support feature first with your browser. For example, if you use Chrome, please enable this flag in chrome://flags.[optional] To build opencv.js with wasm simd optimization, append --simd option.
For example:
The simd optimization is experimental as wasm simd is still in development.
opencv.js if you want to enable this optimization. For browser, you need to enable the WebAssembly SIMD support feature first. For example, if you use Chrome, please enable this flag in chrome://flags. For Node.js, you need to run script with flag --experimental-wasm-simd.opencv.js built by latest LLVM upstream may not work with the stable browser or old version of Node.js. Please use the latest version of unstable browser or Node.js to get new features, like Chrome Dev.[optional] To build wasm intrinsics tests, append --build_wasm_intrin_test option.
For example:
For wasm intrinsics tests, you can use the following function to test all the cases:
And the failed cases will be logged in the JavaScript debug console.
If you only want to test single data type of wasm intrinsics, you can use the following functions:
[optional] To build performance tests, append --build_perf option.
For example:
To run performance tests, launch a local web server in <build_dir>/bin folder. For example, node http-server which serves on localhost:8080.
There are some kernels now in the performance test like cvtColor, resize and threshold. For example, if you want to test threshold, please navigate the web browser to http://localhost:8080/perf/perf_imgproc/perf_threshold.html. You need to input the test parameter like (1920x1080, CV_8UC1, THRESH_BINARY), and then click the Run button to run the case. And if you don't input the parameter, it will run all the cases of this kernel.
You can also run tests using Node.js.
For example, run threshold with parameter (1920x1080, CV_8UC1, THRESH_BINARY):
Alternatively, the same build can be can be accomplished using docker containers which is often easier and more reliable, particularly in non linux systems. You only need to install docker on your system and use a popular container that provides a clean well tested environment for emscripten builds like this, that already has latest versions of all the necessary tools installed.
So, make sure docker is installed in your system and running. The following shell script should work in linux and MacOS:
In Windows use the following PowerShell command:
1.38.32 using the following command:To build the documentation doxygen needs to be installed. Create a file named Dockerfile with the following content:
Then we build the docker image and name it opencv-js-doc with the following command (that needs to be run only once):
Now run the build command again, this time using the new image and passing --build_doc:
1.8.12