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 23ec63e commit 23bbb6fCopy full SHA for 23bbb6f
setup.cfg
@@ -34,6 +34,7 @@ packages = find:
34
install_requires =
35
dask-image
36
napari==0.4.17
37
+ natsort
38
numpy
39
opencv-python-headless
40
pandas
src/napari_deeplabcut/_reader.py
@@ -11,6 +11,7 @@
11
from dask import delayed
12
from dask_image.imread import imread
13
from napari.types import LayerData
14
+from natsort import natsorted
15
16
from napari_deeplabcut import misc
17
@@ -94,7 +95,7 @@ def read_images(path):
94
95
params = {
96
"name": "images",
97
"metadata": {
- "paths": sorted(filepaths),
98
+ "paths": natsorted(filepaths),
99
"root": os.path.split(path)[0],
100
},
101
}
0 commit comments