Skip to content

Instantly share code, notes, and snippets.

@haider11234
Created June 23, 2020 14:43
Show Gist options
  • Save haider11234/53f2f81ea47eecb11a00790f5338edb6 to your computer and use it in GitHub Desktop.
Save haider11234/53f2f81ea47eecb11a00790f5338edb6 to your computer and use it in GitHub Desktop.
Gaussian Blur
import cv2
import numpy as np
image = cv2.imread('C://Geeksforgeeks//image_processing//fruits.jpg')
cv2.imshow('Original Image', image)
cv2.waitKey(0)
# Gaussian Blur
Gaussian = cv2.GaussianBlur(image, (7, 7), 0)
cv2.imshow('Gaussian Blurring', Gaussian)
cv2.waitKey(200)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment