From 053b9da88a90badce4edf36a40c8472010521690 Mon Sep 17 00:00:00 2001 From: Jerod Weinman Date: Thu, 8 Oct 2015 10:40:27 -0500 Subject: [PATCH] Changed description of "mean" to "median", reflecting the code. --- doc/instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/instructions.md b/doc/instructions.md index 4294d4b..eb40a91 100644 --- a/doc/instructions.md +++ b/doc/instructions.md @@ -434,7 +434,7 @@ colormap gray ; ### Part 3.2: image preprocessing -Before we attempt to train the CNN, the image is pre-processed to remove its mean value. It is also smoothed by applying a Gaussian kernel of standard deviation 3 pixels: +Before we attempt to train the CNN, the image is pre-processed to remove its median value. It is also smoothed by applying a Gaussian kernel of standard deviation 3 pixels: ```matlab % Pre-smooth the image im = vl_imsmooth(im,3) ;