Skip to content

Commit

Permalink
Standardize imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mkcor committed Aug 24, 2023
1 parent 7b7774a commit f477193
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions episodes/06-blurring.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,6 @@ First, import the packages needed for this episode:
import matplotlib.pyplot as plt
import ipympl
import imageio.v3 as iio
import skimage
import skimage.filters
%matplotlib widget
```
Expand Down Expand Up @@ -411,9 +410,9 @@ And now, how does the same set of pixels look in the corresponding *blurred* ima
```python
# first, create a blurred version of (grayscale) image
#
from skimage.filters import gaussian
import skimage.filters

image_blur = gaussian(image_gray, sigma=3)
image_blur = skimage.filters.gaussian(image_gray, sigma=3)

# like before, plot the pixels profile along "Y"
#
Expand Down

0 comments on commit f477193

Please sign in to comment.