typos in ImageFilter.py

added the Import of core to this module.

did not find any other way to implement this!
This commit is contained in:
skidzo 2015-08-25 16:13:05 +02:00
parent 31688c76b6
commit 5f2ee7a75d

View File

@ -184,10 +184,10 @@ class UnsharpMask(Filter):
class Sobel(Filter):
"""
Using the Scobeloperator to integrate perpendicular towards the direction of the derivative.
Using the Sobeloperator to integrate perpendicular towards the direction of the derivative.
This is good for getting rid of disturbances.
"""
name = "Scobel"
name = "Sobel"
def __init__(self, size=3):
self.size = size