标签:stream main alt har class pen 参数 jpg images
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;
}
标签:stream main alt har class pen 参数 jpg images
原文地址:http://www.cnblogs.com/fourmi/p/7479544.html