📜  Python OpenCV | cv2.blur() 方法

📅  最后修改于: 2022-05-13 01:55:33.497000             🧑  作者: Mango

Python OpenCV | cv2.blur() 方法

OpenCV-Python是一个Python绑定库,旨在解决计算机视觉问题。 cv2.blur()方法用于使用归一化框过滤器模糊图像。该函数使用表示为的内核平滑图像:

用于以下所有示例的图像:

示例 #1:

# Python program to explain cv2.blur() method 
  
# importing cv2 
import cv2 
  
# path 
path = r'C:\Users\Rajnish\Desktop\geeksforgeeks\geeks.png'
  
# Reading an image in default mode 
image = cv2.imread(path) 
  
# Window name in which image is displayed 
window_name = 'Image'
  
# ksize
ksize = (10, 10)
  
# Using cv2.blur() method 
image = cv2.blur(image, ksize) 
  
# Displaying the image 
cv2.imshow(window_name, image) 

输出:

示例 #2:

# Python program to explain cv2.blur() method 
  
# importing cv2 
import cv2 
  
# path 
path = r'C:\Users\Rajnish\Desktop\geeksforgeeks\geeks.png'
  
# Reading an image in default mode 
image = cv2.imread(path) 
  
# Window name in which image is displayed 
window_name = 'Image'
  
# ksize
ksize = (30, 30)
  
# Using cv2.blur() method 
image = cv2.blur(image, ksize, cv2.BORDER_DEFAULT) 
  
# Displaying the image 
cv2.imshow(window_name, image) 

输出: