第三个程序之图像模糊

来源:互联网 发布:淘宝古着能买吗 编辑:程序博客网 时间:2024/05/01 08:24
#include<opencv2\opencv.hpp>using namespace cv;int main(){Mat srcImage = imread("1.jpg");imshow("demo", srcImage);Mat dstImage;blur(srcImage, dstImage, Size(7, 7));imshow("demo_dst", dstImage);waitKey();return 0;}

原创粉丝点击