Skip to content

Commit 9381495

Browse files
committed
contour_unit: exposing find_contours
1 parent d6de3ab commit 9381495

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cdl/tests/features/images/contour_unit.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from cdl.utils.vistools import view_image_items
2424

2525

26-
def __exec_contour_test(data):
26+
def find_contours(data):
2727
"""Find contours"""
2828
items = [make.image(data, interpolation="linear", colormap="hsv")]
2929
t0 = time.time()
@@ -52,7 +52,7 @@ def __exec_contour_test(data):
5252
def test_contour():
5353
"""2D peak detection test"""
5454
with qt_app_context():
55-
__exec_contour_test(get_peak2d_data())
55+
find_contours(get_peak2d_data())
5656

5757

5858
if __name__ == "__main__":

0 commit comments

Comments
 (0)