日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程语言 > c/c++ >内容正文

c/c++

OpenCV C++ 09 - Gaussian Blur on Images with OpenCV

發(fā)布時(shí)間:2024/7/5 c/c++ 38 豆豆
生活随笔 收集整理的這篇文章主要介紹了 OpenCV C++ 09 - Gaussian Blur on Images with OpenCV 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

3 x 3 Gaussian Kernel

5 x 5 Gaussian Kernel

Code

/* 作者:鄭大峰 時(shí)間:2019年09月23日 環(huán)境:OpenCV 4.1.1 + VS2017 內(nèi)容:Gaussian Blur on Images with OpenCV */#include "pch.h" #include <iostream> #include <opencv2/opencv.hpp>using namespace std; using namespace cv;int main() {Mat image = imread("claudia.png");if (image.empty()){cout << "Could not open or find the image" << endl;cin.get();return -1;}//Blur the image with 3x3 Gaussian kernelMat image_blurred_with_3x3_kernel;GaussianBlur(image, image_blurred_with_3x3_kernel, Size(3, 3), 0);//Blur the image with 5x5 Gaussian kernelMat image_blurred_with_5x5_kernel;GaussianBlur(image, image_blurred_with_5x5_kernel, Size(5, 5), 0);//Define names of the windowsString window_name = "claudia.png";String window_name_blurred_with_3x3_kernel = "claudia.png Blurred with 3 x 3 Gaussian Kernel";String window_name_blurred_with_5x5_kernel = "claudia.png Blurred with 5 x 5 Gaussian Kernel";// Create windows with above namesnamedWindow(window_name);namedWindow(window_name_blurred_with_3x3_kernel);namedWindow(window_name_blurred_with_5x5_kernel);// Show our images inside the created windows.imshow(window_name, image);imshow(window_name_blurred_with_3x3_kernel, image_blurred_with_3x3_kernel);imshow(window_name_blurred_with_5x5_kernel, image_blurred_with_5x5_kernel);waitKey(0); // Wait for any key strokedestroyAllWindows(); //destroy all open windowsreturn 0; }

Result

從圖像可以看到,核心的尺寸越大,圖像細(xì)節(jié)丟失越嚴(yán)重。不過相較均值濾波,效果要好一些。

轉(zhuǎn)載于:https://www.cnblogs.com/zdfffg/p/11570703.html

總結(jié)

以上是生活随笔為你收集整理的OpenCV C++ 09 - Gaussian Blur on Images with OpenCV的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。