Skip to content

Instantly share code, notes, and snippets.

@aravindpai
Created March 30, 2020 13:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save aravindpai/d9efe5cc4cae98a7f8e6aeaef1ead374 to your computer and use it in GitHub Desktop.
Save aravindpai/d9efe5cc4cae98a7f8e6aeaef1ead374 to your computer and use it in GitHub Desktop.
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