From 49c5ca09d53d5a3ce197c7e2fa143dddb4174bf4 Mon Sep 17 00:00:00 2001 From: Guangyao Zhou Date: Fri, 3 Dec 2021 14:43:03 -0800 Subject: [PATCH] Update examples/rcn.py Co-authored-by: Swaroop Guntupalli --- examples/rcn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/rcn.py b/examples/rcn.py index 1a35c000..e9136b3e 100644 --- a/examples/rcn.py +++ b/examples/rcn.py @@ -308,7 +308,7 @@ def get_bu_msg(img: np.ndarray) -> np.ndarray: kern = filters[i, :, :] filtered[i] = fftconvolve(img, kern, mode="same") - # Apllying non-max supression to all the filtered images. + # Applying non-max suppression to all the filtered images. localized = np.zeros_like(filtered) cross_orient_max = filtered.max(0) filtered[filtered < 0] = 0