输出图像通道数和像素值

namedWindow("output", CV_WINDOW_AUTOSIZE);
cvtColor(src,dst,CV_BGR2GRAY);
printf("output channels: %d\n",src.channels());//输出图像通道数

//输出像素值
int cols = src.cols;
int rows = src.rows;
const uchar* firstrow = dst.ptr(0);//输出指定像素值
printf("first pixels value :%d ",*firstrow);
printf("cols:%d",cols);

printf("rows:%d",rows);



如有错误请批评指正

你可能感兴趣的:(输出图像通道数和像素值)