forked from aleju/imgaug
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This patch adds `imgaug.augmenters.blur.blur_avg_()`, which applies an averaging blur kernel to images. The method is slightly faster for single image inputs (factor of 1.01x to 1.1x, more for medium-sized images around `128x128`) than the one used in `AverageBlur`. The performance of `AverageBlur` however is likely not changed significantly due to input validation now being done per image instead of per batch. Add functions: * `imgaug.augmenters.blur.blur_avg_()`
- Loading branch information
Showing
3 changed files
with
220 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Improved Average Bluring #625 | ||
|
||
This patch adds `imgaug.augmenters.blur.blur_avg_()`, | ||
which applies an averaging blur kernel to images. The method | ||
is slightly faster for single image inputs (factor of 1.01x to | ||
1.1x, more for medium-sized images around `128x128`) than | ||
the one used in `AverageBlur`. The performance of `AverageBlur` | ||
however is likely not changed significantly due to input | ||
validation now being done per image instead of per batch. | ||
|
||
Add functions: | ||
* `imgaug.augmenters.blur.blur_avg_()` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters