欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

c++ 均值滤波和高斯滤波

程序员文章站 2022-07-14 16:15:31
...
#include<iostream>
#include<opencv2/opencv.hpp>
using namespace std;
using namespace cv;
int main()
{
	Mat example = imread("D:\\VC项目\\img1.jpg");
	if (!example.data)
	{
		cout << "图片路径错误!!!" << endl;
	}
	Mat out_ex_blur;
	Mat out_ex_gaussian;
	blur(example, out_ex_blur, Size(30, 1), Point(-1, -1));//均值滤波的API
	GaussianBlur(example, out_ex_gaussian, Size(5, 5), (0, 0));//高斯滤波的API
	imshow("example", example);
	imshow("out_ex_blur", out_ex_blur);
	imshow("out_ex_gaussian", out_ex_gaussian);
	waitKey(0);
	return 0;
}
相关标签: c++ 图像编程