Created
March 30, 2020 13:45
-
-
Save aravindpai/d9efe5cc4cae98a7f8e6aeaef1ead374 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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