From 1b0149752df6871b09d2054811663c0a89c1d868 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Vitor=20Amorim?= Date: Wed, 6 Aug 2025 20:28:21 -0300 Subject: [PATCH] fix: DepthSimulatedBlur augmentation typo --- augraphy/augmentations/depthsimulatedblur.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/augraphy/augmentations/depthsimulatedblur.py b/augraphy/augmentations/depthsimulatedblur.py index de2db1c..8cd0241 100644 --- a/augraphy/augmentations/depthsimulatedblur.py +++ b/augraphy/augmentations/depthsimulatedblur.py @@ -9,7 +9,7 @@ class DepthSimulatedBlur(Augmentation): """Creates a depth-simulated blur effect from a camera by blurring a small elliptical region of image. - :param blur_centerr: Center (x,y) of blur effect. Use "random" for random location. + :param blur_center: Center (x,y) of blur effect. Use "random" for random location. :type blur_center: tuple or string, optional :param blur_major_axes_length_range: Pair of ints determining the value of major axis in the blurring ellipse. :type blur_major_axes_length_range: tuple, optional