Skip to content

Commit cd54eb1

Browse files
committed
Add document string for XYWH
1 parent 7bdf3a9 commit cd54eb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bioformats/formatreader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -727,7 +727,6 @@ def init_reader(self):
727727
def read(self, c = None, z = 0, t = 0, series = None, index = None,
728728
rescale = True, wants_max_intensity = False, channel_names = None, XYWH=None):
729729
'''Read a single plane from the image reader file.
730-
:param XYWH: a (x, y, w, h) tuple
731730
:param c: read from this channel. `None` = read color image if multichannel
732731
or interleaved RGB.
733732
:param z: z-stack index
@@ -739,6 +738,7 @@ def read(self, c = None, z = 0, t = 0, series = None, index = None,
739738
:param wants_max_intensity: if `False`, only return the image; if `True`,
740739
return a tuple of image and max intensity
741740
:param channel_names: provide the channel names for the OME metadata
741+
:param XYWH: a (x, y, w, h) tuple
742742
'''
743743
if XYWH is not None:
744744
assert isinstance(XYWH, tuple) and len(XYWH) == 4, "Invalid XYWH tuple"

0 commit comments

Comments
 (0)