平均模糊是通过对图像的每个像素及其周围像素的值求平均来实现的。
 blur函数通过计算输入图像image中每个像素及其邻域内像素的平均值来工作。
// 图像卷积
void QuickDemo::Conv_image_demo(Mat &image) {
	Mat dst;
	blur(image, dst, Size(3, 3), Point(-1, -1));// Point(-1, -1)通常表示核的几何中心
	imshow("3×3模糊", dst);
}

// 图像卷积
void QuickDemo::Conv_image_demo(Mat &image) {
	Mat dst;
	blur(image, dst, Size(13, 13), Point(-1, -1));// Point(-1, -1)通常表示核的几何中心
	imshow("13×13模糊", dst);
}

// 图像卷积
void QuickDemo::Conv_image_demo(Mat &image) {
	Mat dst;
	blur(image, dst, Size(23, 23), Point(-1, -1));// Point(-1, -1)通常表示核的几何中心
	imshow("23×23模糊", dst);
}



















