对图像进行均值滤波操作,图像模糊。

#include <opencv2/highgui/highgui.hpp> // highgui 模块头文件
#include <opencv2/imgproc/imgproc.hpp> // 图像处理头文件

using namespace cv;

int main()
{
Mat srcImage = imread("1.jpg");
imshow("原图", srcImage);

// 进行均值滤波操作
Mat dstImage;
blur(srcImage, dstImage, Size(7, 7));

imshow("均值滤波", dstImage);
waitKey(0);

return 0;
}

OpenCV 简单均值滤波操作图像模糊_OpenCV




参考:

《OpenCV3 编程入门》 毛星云 P30