Skip to content

Commit

Permalink
Fix in GaussBlur
Browse files Browse the repository at this point in the history
  • Loading branch information
ternaus committed Jan 17, 2025
1 parent 0aac709 commit 7b192de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion albumentations/augmentations/blur/transforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ class GaussianBlur(ImageOnlyTransform):
- If a tuple of two ints is provided, it defines the inclusive range
of possible kernel sizes.
Must be zero or odd and in range [0, inf). If set to 0 (default), the kernel size
will be computed from sigma as `int(6 * sigma + 1)` and adjusted to be odd if needed.
will be computed from sigma as `int(4 * sigma + 1)` and adjusted to be odd if needed.
Default: 0
Expand Down

0 comments on commit 7b192de

Please sign in to comment.