Skip to content

Instantly share code, notes, and snippets.

@THEFASHIONGEEK
Created March 26, 2020 08:11
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/4917f36a327d4f4f4ab9cdb66c39166d to your computer and use it in GitHub Desktop.
Save THEFASHIONGEEK/4917f36a327d4f4f4ab9cdb66c39166d 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));
#############################FOCUS################################################
ret,thresh1 = cv2.threshold(img,127,255,cv2.THRESH_BINARY)
thresh2 = cv2.adaptiveThreshold(img,255,cv2.ADAPTIVE_THRESH_MEAN_C, cv2.THRESH_BINARY,11,2)
thresh3 = cv2.adaptiveThreshold(img,255,cv2.ADAPTIVE_THRESH_GAUSSIAN_C, cv2.THRESH_BINARY,11,2)
##################################################################################
f = plt.figure(figsize=(15,15))
f.add_subplot(2, 2, 1).set_title('Original Image');
plt.imshow(img, cmap = "gray")
f.add_subplot(2, 2, 2).set_title('Simple Threshold');
plt.imshow(thresh1, cmap = "gray");
f.add_subplot(2, 2, 3).set_title('ADAPTIVE_THRESH_MEAN_C');
plt.imshow(thresh2, cmap = "gray");
f.add_subplot(2, 2, 4).set_title('ADAPTIVE_THRESH_GAUSSIAN_C');
plt.imshow(thresh3, cmap = "gray");
plt.show();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment