Python OpenCV | cv2.blur() method Last Updated : 04 Jan, 2023 Comments Improve Suggest changes Like Article Like Report OpenCV-Python is a library of Python bindings designed to solve computer vision problems. cv2.blur() method is used to blur an image using the normalized box filter. The function smooths an image using the kernel which is represented as: Syntax: cv2.blur(src, ksize[, dst[, anchor[, borderType]]]) Parameters: src: It is the image whose is to be blurred. ksize: A tuple representing the blurring kernel size. dst: It is the output image of the same size and type as src. anchor: It is a variable of type integer representing anchor point and it's default value Point is (-1, -1) which means that the anchor is at the kernel center. borderType: It depicts what kind of border to be added. It is defined by flags like cv2.BORDER_CONSTANT, cv2.BORDER_REFLECT, etc Return Value: It returns an image. Image used for all the below examples: Example #1: Python3 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) Output: Example #2: Python3 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 = (30, 30) # Using cv2.blur() method image = cv2.blur(image, ksize, cv2.BORDER_DEFAULT) # Displaying the image cv2.imshow(window_name, image) Output: Comment More infoAdvertise with us Next Article Python OpenCV | cv2.blur() method R Rajnis09 Follow Improve Article Tags : Python Image-Processing OpenCV Python-OpenCV Practice Tags : python Similar Reads Python OpenCV | cv2.circle() method OpenCV-Python is a library of Python bindings designed to solve computer vision problems. cv2.circle() method is used to draw a circle on any image. We use this image:Example:Pythonimport cv2 path = r'C:\Users\user\Desktop\geeks14.png' src = cv2.imread(path) cv2.circle(src, center=(100, 100), radius 2 min read Python OpenCV | cv2.line() method OpenCV-Python is a library of Python bindings designed to solve computer vision problems. cv2.line() method is used to draw a line on any image.Syntax:cv2.line(image, start_point, end_point, color, thickness) Parameters: image: It is the image on which line is to be drawn. start_point: It is the sta 3 min read Python OpenCV | cv2.erode() method OpenCV-Python is a library of Python bindings designed to solve computer vision problems. cv2.erode() method is used to perform erosion on the image. The basic idea of erosion is just like soil erosion only, it erodes away the boundaries of foreground object (Always try to keep foreground in white). 2 min read Python OpenCV | cv2.imshow() method OpenCV-Python is a library of Python bindings designed to solve computer vision problems. cv2.imshow() method is used to display an image in a window. The window automatically fits the image size. Syntax: cv2.imshow(window_name, image)Parameters: window_name: A string representing the name of the wi 3 min read cv2.imread() method - Python OpenCV OpenCV-Python is a Python library used to solve computer vision tasks. cv2.imread() method loads an image from the specified file. If the image cannot be read because of missing file, improper permissions or an unsupported/invalid format then it returns an empty matrix.Example:Pythonimport cv2 image 2 min read Like