mirror of
https://github.com/opencv/opencv.git
synced 2024-11-27 12:40:05 +08:00
af71b03000
- support modern Emscripten build process - replaced Docker image - replaced Emscripten's web URLs
16 lines
540 B
Markdown
16 lines
540 B
Markdown
Building OpenCV.js by Emscripten
|
|
====================
|
|
|
|
[Download and install Emscripten](https://emscripten.org/docs/getting_started/downloads.html).
|
|
|
|
Execute `build_js.py` script:
|
|
```
|
|
emcmake python <opencv_src_dir>/platforms/js/build_js.py <build_dir>
|
|
```
|
|
|
|
If everything is fine, a few minutes later you will get `<build_dir>/bin/opencv.js`. You can add this into your web pages.
|
|
|
|
Find out more build options by `-h` switch.
|
|
|
|
For detailed build tutorial, check out `<opencv_src_dir>/doc/js_tutorials/js_setup/js_setup/js_setup.markdown`.
|