From 67a937d9e41983c4cc39eddf4e2183125a8554c9 Mon Sep 17 00:00:00 2001 From: Prabhu Ramachandran Date: Tue, 15 May 2018 22:05:02 +0530 Subject: Remove references to lena and use image of penguins. --- scipy/basic/09_exercises.tex | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scipy/basic/09_exercises.tex') 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. # 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) -- cgit