OpenCV图像矩阵Mat的基本操作

本文通过使用Visual Studio 2012结合OpenCV 3.0进行图像处理演示,包括图像读取显示、图像类型转换、双边滤波等操作。通过对图像应用不同的滤波器和技术,展示了如何改善图像质量并实现特定效果。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

//vs2012+OpenCV3.0
#include "stdafx.h"
#include "iostream"

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

int _tmain(int argc, _TCHAR* argv[])
{
	Mat frame=imread("s2.bmp");
	imshow("source",frame);

	//图像矩阵的定义与赋值-------------------------------
	//Mat frame2(14,3,CV_8UC3);

    //Mat frame2=Mat::ones(4,2,CV_32F);
	//Mat frame2=Mat::eye(4,4,CV_32F);
	Mat frame2=Mat::zeros(4,3,CV_8UC3); 
	//randu(frame2,Scalar::all(0),Scalar::all(10));


	//图像矩阵单个元素访问------------------------------
	frame2.at<Vec3b>(1,1)[0]=5;
	frame2.at<Vec3b>(1,1)[1]=5;
	frame2.at<Vec3b>(1,1)[2]=5;
	cout<<frame.type()<<endl;
	
   

	cout<<frame2<<endl;
	cout<<frame2.rows<<endl;
	cout<<frame2.cols<<endl;
	//

	//图像缩放--------------------------------------------------
	//resize(frame,frame2,Size(frame.cols*8,frame.rows*8));
	
	Mat gray,gray2;
	cvtColor(frame,gray,CV_RGB2GRAY);

	//图像滤波处理-----------------------------------------------
	//medianBlur(gray,gray,7);
	//blur(gray,gray,Size(3,3));
        //GaussianBlur(gray,gray,Size(3,3),0,0);
	bilateralFilter(gray,gray2,10,10,10);
	
	imshow("bilateral",gray2);

	waitKey(0);
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值