We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 582cb8e commit f7c72d0Copy full SHA for f7c72d0
2 files changed
src/epicure/Utils.py
@@ -1094,6 +1094,7 @@ def get_border_cells( img ):
1094
labels += list( np.unique( img[ :, (height-2): ] ) ) ## bottom border
1095
labels += list( np.unique( img[ 0:2,] ) ) ## left border
1096
labels += list( np.unique( img[ (width-2):,] ) ) ## right border
1097
+ labels = list( np.unique(labels) )
1098
return labels
1099
1100
def count_neighbors( label_img, label ):
tox.ini
@@ -24,7 +24,6 @@ platform =
24
passenv =
25
CI
26
GITHUB_ACTIONS
27
- DISPLAY
28
XAUTHORITY
29
PYVISTA_OFF_SCREEN
30
deps =
0 commit comments