Skip to content

Commit

Permalink
added skeletonize to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
haesleinhuepf committed Jan 20, 2022
1 parent 8ed96c3 commit 6fcbdeb
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ def test_something():
sum_images,\
multiply_images,\
divide_images,\
invert_image
invert_image, \
skeletonize

import numpy as np

Expand Down Expand Up @@ -61,7 +62,8 @@ def test_something():
black_tophat,
white_tophat,
morphological_gradient,
local_minima_seeded_watershed]:
local_minima_seeded_watershed,
invert_image]:

print(operation)

Expand All @@ -71,9 +73,10 @@ def test_something():
seeded_watershed,
sum_images,
multiply_images,
divide_images,
invert_image]:
divide_images]:

print(operation)

operation(image, image)

skeletonize(image > 0)

0 comments on commit 6fcbdeb

Please sign in to comment.