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
fafefbc3
Commit
fafefbc3
authored
2 years ago
by
Alán Muñoz
Browse files
Options
Downloads
Patches
Plain Diff
fix(tiler): bak_ref_channel only used upon Nonetyp
parent
518d8603
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
src/aliby/tile/tiler.py
+6
-5
6 additions, 5 deletions
src/aliby/tile/tiler.py
with
6 additions
and
5 deletions
src/aliby/tile/tiler.py
+
6
−
5
View file @
fafefbc3
...
@@ -231,13 +231,14 @@ class Tiler(StepABC):
...
@@ -231,13 +231,14 @@ class Tiler(StepABC):
self
.
image
=
image
self
.
image
=
image
self
.
_metadata
=
metadata
self
.
_metadata
=
metadata
self
.
channels
=
metadata
.
get
(
self
.
channels
=
metadata
.
get
(
"
channels
"
,
list
(
range
(
metadata
.
get
(
"
size_c
"
,
0
)))
"
channels
"
,
)
list
(
range
(
metadata
.
get
(
"
size_c
"
,
0
))),
self
.
ref_channel
=
(
self
.
get_channel_index
(
parameters
.
ref_channel
)
or
self
.
backup_ref_channel
)
)
self
.
ref_channel
=
self
.
get_channel_index
(
parameters
.
ref_channel
)
if
self
.
ref_channel
is
None
:
self
.
ref_channel
=
self
.
backup_ref_channel
self
.
ref_channel
=
self
.
get_channel_index
(
parameters
.
ref_channel
)
self
.
ref_channel
=
self
.
get_channel_index
(
parameters
.
ref_channel
)
self
.
tile_locs
=
tile_locs
self
.
tile_locs
=
tile_locs
try
:
try
:
...
...
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