Skip to content

Instantly share code, notes, and snippets.

@aravindpai
Created March 30, 2020 13:45
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
img= cv2.imread('frames/' + frames[10])
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
gray = cv2.GaussianBlur(gray,(25,25),0)
plt.figure(figsize=(5,10))
plt.imshow(gray,cmap='gray')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment