OpenCV学习-获取图像的像素和通道数

Posted 殇堼

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了OpenCV学习-获取图像的像素和通道数相关的知识,希望对你有一定的参考价值。

#include <opencv2\\opencv.hpp>
#include<iostream>
using namespace cv;
using namespace std;

int main(int arc, char**argc){
	Mat a;
	a = imread("D:/images/gaoyy.png");
	if (a.empty()) {
		printf("could not find the picture!");
		return-1;
	}
	
	//计算图像尺寸和通道数
	int height = a.rows;
	int width = a.cols;
	int channels = a.channels();
	printf("height=%d width=%d channels=%d", height, width, channels);
	
	imshow("image", a);
	waitKey(0);
	return 0;
}

以上是关于OpenCV学习-获取图像的像素和通道数的主要内容,如果未能解决你的问题,请参考以下文章

OpenCV学习笔记3基础:图像基本操作

OpenCV学习笔记3基础:图像基本操作

OpenCV学习笔记3基础:图像基本操作

opencv学习-入门系列汇总

OpenCV常用基本处理函数图像基本操作

使用Python,OpenCV获取更改像素,修改图像通道,剪裁ROI