Unverified Commit afa633b7 authored by Shinya Ishikawa's avatar Shinya Ishikawa Committed by GitHub

Fix typo in js_tutorials

parent 7267e94b
......@@ -22,7 +22,7 @@ Image properties include number of rows, columns and size, depth, channels, type
let src = cv.imread("canvasInput");
console.log('image width: ' + src.cols + '\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 channels ' + src.channels() + '\n' +
'image type: ' + src.type() + '\n');
......
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