We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10c4728 commit 5008a50Copy full SHA for 5008a50
.gitignore
@@ -3,4 +3,4 @@ SOURCES.txt
3
dependency_links.txt
4
requires.txt
5
top_level.txt
6
-
+.coverage
ridge_map/ridge_map.py
@@ -8,7 +8,7 @@
8
import matplotlib.pyplot as plt
9
import numpy as np
10
from skimage.filters import rank
11
-from skimage.morphology import square
+from skimage.morphology import footprint_rectangle
12
from skimage.util import img_as_ubyte
13
from scipy.ndimage import rotate
14
@@ -337,7 +337,6 @@ def plot_map(
337
-------
338
matplotlib.Axes
339
"""
340
341
if kind not in {"gradient", "elevation"}:
342
raise TypeError("Argument `kind` must be one of 'gradient' or 'elevation'")
343
if values is None:
0 commit comments