diff options
author | Prabhu Ramachandran | 2018-05-15 22:05:02 +0530 |
---|---|---|
committer | Prabhu Ramachandran | 2018-05-15 22:05:02 +0530 |
commit | 67a937d9e41983c4cc39eddf4e2183125a8554c9 (patch) | |
tree | 0b98b7a3d928d2dd89c1f28d023e4da19be8a8f1 /scipy/basic/09_exercises.tex | |
parent | 9132e564c5f28f1b10d66d8323ad765f9d914231 (diff) | |
download | python-workshops-67a937d9e41983c4cc39eddf4e2183125a8554c9.tar.gz python-workshops-67a937d9e41983c4cc39eddf4e2183125a8554c9.tar.bz2 python-workshops-67a937d9e41983c4cc39eddf4e2183125a8554c9.zip |
Remove references to lena and use image of penguins.
Diffstat (limited to 'scipy/basic/09_exercises.tex')
-rw-r--r-- | scipy/basic/09_exercises.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scipy/basic/09_exercises.tex b/scipy/basic/09_exercises.tex index 78ba335..f9fdaf3 100644 --- a/scipy/basic/09_exercises.tex +++ b/scipy/basic/09_exercises.tex @@ -416,15 +416,15 @@ In []: x.dtype.<TAB> # Explore! \begin{frame}[fragile] \frametitle{Problem 6} - Edge detection looks much nicer with \typ{lena.png}, try it! The + Edge detection looks much nicer with \typ{penguins.png}, try it! The caveat is that it is a 4 component RGBA image with elements in the range $[0.0, 1.0]$. \begin{lstlisting} -In []: x = imread('lena.png') +In []: x = imread(penguins.png') In []: print(x.shape) -(512, 512, 4) +(370, 370, 4) In []: print(x.min(), x.max()) (0.0, 1.0) |