Skip to content

Instantly share code, notes, and snippets.

@lati672
lati672 / dog_ex.py
Created March 15, 2023 03:47 — forked from leonidk/dog_ex.py
difference of gaussians example in python
from skimage import data, feature, color, filter, img_as_float
from matplotlib import pyplot as plt
original_image = img_as_float(data.chelsea())
img = color.rgb2gray(original_image)
k = 1.6
plt.subplot(2,3,1)