row(n)为图像第n行中的像素值,rows无参数,为图像的行数(即图像的高度)
代码:
#include<iostream>
#include<opencv2/core/core.hpp>
#include<opencv2/highgui/highgui.hpp>
using namespace std;
using namespace cv;
int main()
{
Mat img = imread("baboon.jpg",1);
cout << "图片的大小"<<img.size() << endl;
cout << "图片的行数: " << img.rows << endl;
cout << "图片中第0行的像素值" << img.row(0) << endl;
getchar();
return 0;
}
时间: 2024-11-04 22:24:06