1.图像模糊
#include <opencv2/opencv.hpp>
#include <iostream>ing namespace std;
using namespace std;
using namespace cv;
int main()
{
Mat scimage= imread("D:\\2.jpg"); //存放自己图像的路径
imshow("显示yuan图像", scimage);
Mat dstimage;
blur(scimage, dstimage, Size(7, 7));//blur模糊图像操作
imshow("after_blur", dstimage);
waitKey(0);