Audio (343) Datatype (51) Demo (204) Development (603) Document (24) Driver (98) Emulation (149) Game (1019) Graphics (503) Library (119) Network (234) Office (67) Utility (932) Video (70)
Total files: 4416
Full index file Recent index file
Amigans.net Aminet IntuitionBase Hyperion Entertainment A-Eon Amiga Future
|
[Back to readme page] [Add Comment] [Refresh page]
Comment by: Petrol (81.80.55.177) | At: 03 Mar 2020, 11:32 | File version: 1.1.7 | Hi, I've trued to apply differents gaussian blur to a picture via the imagefilter module and the results were allways the same blur effect. I looked into the imagefilter.py file : # Gaussian blur filter. class GaussianBlur(Filter): name = "GaussianBlur" def __init__(self, radius=2): self.radius = 2 def filter(self, image): return image.gaussian_blur(self.radius) So I replaced this line in order to apply a custom radius to the GaussianBlur filter: self.radius = 2 by self.radius = radius Regards,
| | |
|