OPENCV 模糊处理

#include   
#include   
#include
#include 

using namespace cv; 
 
 
int main()
{
    Mat img = imread("1.jpg");
    Mat img2;
    blur(img,img2,Size(15,15));
    imshow("模糊除理",img2);

    waitKey(6000);
    return 0;
    
}
 


OPENCV 模糊处理_第1张图片

你可能感兴趣的:(openCV)