Skip to content

Commit 0913eb2

Browse files
authored
Update erosion_operation.py
1 parent 555cc5f commit 0913eb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

digital_image_processing/morphological_operations/erosion_operation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def gray2binary(gray: np.array) -> np.array:
3737

3838

3939
def erosion(image: np.array, kernel: np.array) -> np.array:
40-
"""
40+
"""
4141
Return eroded image
4242
>>> erosion(np.array([[True, True, False]]), np.array([[0, 1, 0]]))
4343
array([[False, False, False]])

0 commit comments

Comments
 (0)