Browse Source

Fixes issue #50

upstream/backport/20220103
Ruben Verweij 3 years ago
committed by Lorenzo ZOLFANELLI
parent
commit
19d296598a
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      nd2reader/stitched.py

+ 2
- 1
nd2reader/stitched.py View File

@ -9,8 +9,9 @@ def get_unwanted_bytes_ids(image_group_data, image_data_start, height, width):
# rows (height), as the same unmber of unwanted bytes is expected to be
# appended at the end of each row. Then, returns the indexes of the unwanted
# bytes.
# Skip the first 4 elements that correspond to the time stamp
number_of_true_channels = int(len(image_group_data[4:]) / (height * width))
n_unwanted_bytes = (len(image_group_data[image_data_start:])) % (height * width)
n_unwanted_bytes = (len(image_group_data[4:])) % (height * width)
if not n_unwanted_bytes:
return np.arange(0)
assert 0 == n_unwanted_bytes % height, (


Loading…
Cancel
Save