Skip to content

Commit 84461f4

Browse files
authored
Add additional suffixes for bioformats (#1086)
* Add additional suffixes. * Update readme.
1 parent ca92487 commit 84461f4

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

webknossos/Changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ For upgrade instructions, please check the respective _Breaking Changes_ section
1818
### Added
1919
- Added a pixel level heuristic for distinguishing color and segmentation layers when importing image data with the `from_images` or `add_layer_from_images` method. [#1007](https://github.com/scalableminds/webknossos-libs/pull/1007)
2020
- Added .ims as supported suffix. [#1085](https://github.com/scalableminds/webknossos-libs/pull/1085)
21+
- Added suffixes supported by bioformats for Zeiss CZI, Leica LOF, Zeiss LSM (laser scanning microscope), Zeiss LSM (Laser Scanning Microscope) 510/710, Leica XLEF and Zeiss AxioVision ZVI (Zeiss Vision Image). [#1086](https://github.com/scalableminds/webknossos-libs/pull/1086)
2122

2223
### Changed
2324
- Moved functional parts of merge volume annotation CLI to Dataset and Annotation classes. [#1055](https://github.com/scalableminds/webknossos-libs/pull/1055)

webknossos/webknossos/dataset/_utils/pims_images.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -697,18 +697,26 @@ def get_valid_pims_suffixes() -> Set[str]:
697697
def get_valid_bioformats_suffixes() -> Set[str]:
698698
# Added the most present suffixes that are implemented in bioformats
699699
return {
700+
"bmp",
700701
"btf",
702+
"ch5",
703+
"czi",
701704
"dcm",
702705
"dicom",
706+
"fli",
703707
"gif",
704708
"ics",
705709
"ids",
706710
"ims",
707711
"lei",
708712
"lif",
713+
"lof",
714+
"lsm",
715+
"mdb",
709716
"nd",
710717
"nd2",
711718
"nii",
719+
"ome",
712720
"png",
713721
"pic",
714722
"stk",
@@ -718,6 +726,8 @@ def get_valid_bioformats_suffixes() -> Set[str]:
718726
"tiff",
719727
"raw",
720728
"xml",
729+
"xlef",
730+
"zvi",
721731
}
722732

723733

0 commit comments

Comments
 (0)