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.
find_contours
1 parent d6de3ab commit 9381495Copy full SHA for 9381495
cdl/tests/features/images/contour_unit.py
@@ -23,7 +23,7 @@
23
from cdl.utils.vistools import view_image_items
24
25
26
-def __exec_contour_test(data):
+def find_contours(data):
27
"""Find contours"""
28
items = [make.image(data, interpolation="linear", colormap="hsv")]
29
t0 = time.time()
@@ -52,7 +52,7 @@ def __exec_contour_test(data):
52
def test_contour():
53
"""2D peak detection test"""
54
with qt_app_context():
55
- __exec_contour_test(get_peak2d_data())
+ find_contours(get_peak2d_data())
56
57
58
if __name__ == "__main__":
0 commit comments