From ab5daa0352958b70bf81d9d7da6157bfe980916c Mon Sep 17 00:00:00 2001 From: NotXia <35894453+NotXia@users.noreply.github.com> Date: Wed, 29 May 2024 17:37:42 +0200 Subject: [PATCH] Fix typo --- .../module2/sections/_classification.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/year1/image-processing-and-computer-vision/module2/sections/_classification.tex b/src/year1/image-processing-and-computer-vision/module2/sections/_classification.tex index 53f5963..f60a8c4 100644 --- a/src/year1/image-processing-and-computer-vision/module2/sections/_classification.tex +++ b/src/year1/image-processing-and-computer-vision/module2/sections/_classification.tex @@ -536,9 +536,9 @@ Image filtering can be implemented through: Given a $H_\text{in} \times W_\text{in}$ image and a $H_K \times W_K$ kernel, the output with stride $S$ and padding $P$ has shape: \[ - H_\text{out} = \left\lfloor \frac{H_\text{in} - H_K + 2P}{2} \right\rfloor + 1 + H_\text{out} = \left\lfloor \frac{H_\text{in} - H_K + 2P}{S} \right\rfloor + 1 \hspace{2em} - W_\text{out} = \left\lfloor \frac{W_\text{in} - W_K + 2P}{2} \right\rfloor + 1 + W_\text{out} = \left\lfloor \frac{W_\text{in} - W_K + 2P}{S} \right\rfloor + 1 \]