小编典典

如何在OpenCV中获取图像的宽度和高度?

python

我想获取图像的宽度和高度,如何在OpenCV中实现呢?

例如:

Mat src = imread("path_to_image");
cout << src.width;

是对的吗?


阅读 121

收藏
2020-12-20

共1个答案

小编典典

您可以使用rowscols

cout << "Width : " << src.cols << endl;
cout << "Height: " << src.rows << endl;

size()

cout << "Width : " << src.size().width << endl;
cout << "Height: " << src.size().height << endl;
2020-12-20