<div>The constructor for GaussianBlur class accepts the argument radius, with default value 2,</div><div>but it does nothing with this argument, and instead hardcodes the radius to 2.</div><div><br></div><div>Below is the code found in PIL 1.1.7:<br clear="all">
</div><div>class GaussianBlur(Filter):</div><div>    name = &quot;GaussianBlur&quot;<br></div><div>    def __init__(self, radius=2):</div><div>        self.radius = 2</div><div>    def filter(self, image):</div><div>        return image.gaussian_blur(self.radius)<br>
</div><div><br></div><div><br></div><div>I believe it should be &quot;self.radius = radius&quot; instead.<br></div><br>-- <br>Even<br><a href="mailto:eventh@gmail.com">eventh@gmail.com</a><br>