-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from lincbrain/oct_mat_to_zarr
Convert PS-OCT MAT files to OME-Zarr
- Loading branch information
Showing
12 changed files
with
1,272 additions
and
770 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"""Converters for all imaging modalities.""" | ||
|
||
__all__ = ["df", "lsm"] | ||
from . import df, lsm | ||
__all__ = ["df", "lsm", "psoct"] | ||
from . import df, lsm, psoct |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
"""Dark Field microscopy converters.""" | ||
|
||
__all__ = ["cli", "multi_slice", "single_slice"] | ||
try: | ||
import glymur as _ # noqa: F401 | ||
|
||
from . import cli, multi_slice, single_slice | ||
__all__ = ["cli", "multi_slice", "single_slice"] | ||
from . import cli, multi_slice, single_slice | ||
except ImportError: | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
"""Light Sheet Microscopy converters.""" | ||
|
||
__all__ = ["cli", "mosaic"] | ||
from . import cli, mosaic | ||
try: | ||
import tifffile as _ # noqa: F401 | ||
|
||
__all__ = ["cli", "mosaic"] | ||
from . import cli, mosaic | ||
except ImportError: | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
"""Polarization-sensitive optical coherence tomography converters.""" | ||
|
||
try: | ||
import h5py as _h5py # noqa: F401 | ||
import scipy as _scipy # noqa: F401 | ||
|
||
__all__ = ["cli", "multi_slice", "single_volume"] | ||
from . import cli, multi_slice, single_volume | ||
except ImportError: | ||
pass |
Oops, something went wrong.