#include <opencv2/core/core.hpp>  
#include <opencv2/highgui/highgui.hpp>  
#include<opencv2/imgproc/imgproc.hpp>
#include <iostream>

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 模糊处理

相关文章:

  • 2021-12-08
  • 2021-10-09
  • 2021-07-14
  • 2021-07-06
  • 2022-12-23
  • 2022-02-05
  • 2022-01-01
  • 2021-12-03
猜你喜欢
  • 2021-11-07
  • 2021-04-08
  • 2021-09-28
  • 2021-08-08
  • 2021-05-08
  • 2022-12-23
  • 2021-11-15
相关资源
相似解决方案