Skip to content

Instantly share code, notes, and snippets.

@THEFASHIONGEEK
Created March 27, 2020 05:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save THEFASHIONGEEK/28d88701b9ffe7f81686e40af33479b7 to your computer and use it in GitHub Desktop.
Save THEFASHIONGEEK/28d88701b9ffe7f81686e40af33479b7 to your computer and use it in GitHub Desktop.
import numpy as np
import cv2
from matplotlib import pyplot as plt
img = cv2.imread("imgs/chapter5/sudoku.png", 0);
img = cv2.blur(img, (3, 3));
laplacian = cv2.Laplacian(img,cv2.CV_8UC1) #Binarized
f = plt.figure(figsize=(15,15))
f.add_subplot(1, 2, 1).set_title('Original Image');
plt.imshow(img, cmap = "gray")
f.add_subplot(1, 2, 2).set_title('Filtered Image');
plt.imshow(robert_filter, cmap = "gray");
plt.show();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment