Unverified Commit 49f214b2 authored by Alexander Alekhin's avatar Alexander Alekhin Committed by GitHub

Merge pull request #10031 from meganetaaan:doc-typo-js

Fix typo in js_tutorials
parents 7267e94b afa633b7
...@@ -22,7 +22,7 @@ Image properties include number of rows, columns and size, depth, channels, type ...@@ -22,7 +22,7 @@ Image properties include number of rows, columns and size, depth, channels, type
let src = cv.imread("canvasInput"); let src = cv.imread("canvasInput");
console.log('image width: ' + src.cols + '\n' + console.log('image width: ' + src.cols + '\n' +
'image height: ' + src.rows + '\n' + 'image height: ' + src.rows + '\n' +
'image size: ' + src.size().width + '*' src.size().height + '\n' + 'image size: ' + src.size().width + '*' + src.size().height + '\n' +
'image depth: ' + src.depth() + '\n' + 'image depth: ' + src.depth() + '\n' +
'image channels ' + src.channels() + '\n' + 'image channels ' + src.channels() + '\n' +
'image type: ' + src.type() + '\n'); 'image type: ' + src.type() + '\n');
...@@ -263,4 +263,4 @@ Try it ...@@ -263,4 +263,4 @@ Try it
<iframe src="../../js_basic_ops_copymakeborder.html" width="100%" <iframe src="../../js_basic_ops_copymakeborder.html" width="100%"
onload="this.style.height=this.contentDocument.body.scrollHeight +'px';"> onload="this.style.height=this.contentDocument.body.scrollHeight +'px';">
</iframe> </iframe>
\endhtmlonly \endhtmlonly
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment