docs(tutorial_js_usage): fix imshow usage

pull/19291/head
Grégoire Piffault 4 years ago
parent 2d2d72afbb
commit 0043d9bf13
  1. 2
      doc/js_tutorials/js_setup/js_usage/js_usage.markdown

@ -82,7 +82,7 @@ In this tutorial, we just show a cv.Mat on screen. To show a cv.Mat, you need a
You can use cv.imshow to show cv.Mat on the canvas.
@code{.js}
cv.imshow(mat, "outputCanvas");
cv.imshow("outputCanvas", mat);
@endcode
Putting all of the steps together, the final index.html is shown below.

Loading…
Cancel
Save