mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-11 01:08:17 +08:00
Fix stylistic indentation
This commit is contained in:
@@ -239,9 +239,9 @@ def vscharr(image, mask=None):
|
||||
"""
|
||||
image = img_as_float(image)
|
||||
result = np.abs(convolve(image,
|
||||
np.array([[ 3, 0, -3],
|
||||
np.array([[ 3, 0, -3],
|
||||
[10, 0, -10],
|
||||
[ 3, 0, -3]]).astype(float) / 16.0))
|
||||
[ 3, 0, -3]]).astype(float) / 16.0))
|
||||
return _mask_filter_result(result, mask)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user