Browse Source

resolves #54: raises Index error when you go out of bounds

zolfa-add_slices_loading
jim 9 years ago
parent
commit
18bb3f5392
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      nd2reader/__init__.py

+ 2
- 0
nd2reader/__init__.py View File

@ -61,6 +61,8 @@ class Nd2(Nd2Parser):
image = Image(timestamp, raw_image_data, fov, channel, z_level, self.height, self.width)
except (TypeError, ValueError):
return None
except KeyError:
raise IndexError("Invalid frame number.")
else:
return image
elif isinstance(item, slice):


Loading…
Cancel
Save