我正在使用node.js打开cv库,我想知道如何从看起来像Matrix对象的图像宽度和高度
cv.readImage("./sample.jpg", function(err, im){
var width = im.width;// this part breaks, how do I get width and height?
});
答案 0 :(得分:0)
方法是size()
e.g。
var width = im.size [0];
答案 1 :(得分:0)
在矩阵中使用width()
和height()
方法:
im.width()
im.height()
但要小心。忘记使用括号很容易,然后你只需要引用这个函数:
console.log(img.width) // [Function: width]
console.log(img.width + ''); // function width() { [native code] }
当然,在这些示例中很容易发现问题,但如果您不只是记录宽度和高度,那么这些问题最初可能会被忽视。