Skip to content

Commit

Permalink
Use correct channel number
Browse files Browse the repository at this point in the history
  • Loading branch information
lguerard committed Mar 5, 2024
1 parent 0864c40 commit 1fed4ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/imcflibs/imagej/bdv.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,8 @@ def process_channel(self, value): # def channel_select(self, value):
value : int or int-like
"""
self._channel_processing_option = SINGLE % "channel"
channel = int(value) - 1
self._channel_select = "processing_channel=[channel %s]" % channel
# channel = int(value) - 1
self._channel_select = "processing_channel=[channel %s]" % int(value)

def process_illumination(self, value): # def illumination_select(self, value):
"""Select a single illumination to use for processing.
Expand Down

0 comments on commit 1fed4ff

Please sign in to comment.