Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
alibylite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Swain Lab
aliby
alibylite
Commits
5b53094c
Commit
5b53094c
authored
2 years ago
by
Alán Muñoz
Browse files
Options
Downloads
Patches
Plain Diff
feat(image): Add ImageDirectory class
parent
02df905b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
aliby/io/image.py
+44
-0
44 additions, 0 deletions
aliby/io/image.py
with
44 additions
and
0 deletions
aliby/io/image.py
+
44
−
0
View file @
5b53094c
...
@@ -121,6 +121,50 @@ class ImageLocal:
...
@@ -121,6 +121,50 @@ class ImageLocal:
return
self
.
_formatted_img
return
self
.
_formatted_img
class
ImageDirectory
(
ImageLocal
):
"""
Image class for case where all images are split in one or multiple folders with time-points and channels as independent files.
It inherits from Imagelocal so we only override methods that are critical.
Assumptions:
- Assumes individual folders for individual channels. If only one path provided it assumes it to be brightfield.
- Assumes that images are flat.
- Provides Dimorder as TCZYX
"""
def
__init__
(
self
,
path
:
t
.
Union
[
str
,
t
.
Dict
[
str
,
str
]],
*
args
,
**
kwargs
):
if
isinstance
(
path
,
str
):
path
=
{
"
Brightfield
"
:
path
}
self
.
path
=
path
self
.
image_id
=
str
(
path
)
self
.
_meta
=
dict
(
channels
=
path
.
keys
(),
name
=
list
(
path
.
values
())[
0
])
# Parse name if necessary
# Build lazy-loading array using dask?
def
get_data_lazy_local
(
self
)
->
da
.
Array
:
"""
Return 5D dask array. For lazy-loading local multidimensional tiff files
"""
img
=
da
.
stack
([
imread
(
v
)
for
v
in
self
.
path
.
values
()])
if
(
img
.
ndim
<
5
):
# Files do not include z-stack: Add and swap with time dimension.
img
=
da
.
stack
((
img
,)).
swapaxes
(
0
,
2
)
# TODO check whether x and y swap is necessary
# Use images to redefine axes
for
i
,
dim
in
enumerate
((
"
t
"
,
"
c
"
,
"
z
"
,
"
y
"
,
"
x
"
)):
self
.
_meta
[
"
size_
"
+
dim
]
=
img
.
shape
[
i
]
self
.
_formatted_img
=
da
.
rechunk
(
img
,
chunks
=
(
1
,
1
,
1
,
self
.
_meta
[
"
size_y
"
],
self
.
_meta
[
"
size_x
"
]),
)
return
self
.
_formatted_img
class
Image
(
Argo
):
class
Image
(
Argo
):
"""
"""
Loads images from OMERO and gives access to the data and metadata.
Loads images from OMERO and gives access to the data and metadata.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment