Browse Source

deleted unused method

zolfa-add_slices_loading
Jim Rybarski 10 years ago
parent
commit
9aadde5739
1 changed files with 1 additions and 6 deletions
  1. +1
    -6
      nd2reader/__init__.py

+ 1
- 6
nd2reader/__init__.py View File

@ -5,7 +5,6 @@ from datetime import datetime
import logging import logging
from nd2reader.model import Image, ImageSet from nd2reader.model import Image, ImageSet
from nd2reader.parser import Nd2Parser from nd2reader.parser import Nd2Parser
import numpy as np
import re import re
import struct import struct
@ -57,7 +56,7 @@ class Nd2(Nd2Parser):
validity = self.metadata['ImageMetadata']['SLxExperiment']['ppNextLevelEx'][''][0]['ppNextLevelEx'][''][0]['pItemValid'] validity = self.metadata['ImageMetadata']['SLxExperiment']['ppNextLevelEx'][''][0]['ppNextLevelEx'][''][0]['pItemValid']
except KeyError: except KeyError:
# If none of the channels have been deleted, there is no validity list, so we just make one # If none of the channels have been deleted, there is no validity list, so we just make one
validity = [True for i in metadata]
validity = [True for _ in metadata]
# Channel information is contained in dictionaries with the keys a0, a1...an where the number # Channel information is contained in dictionaries with the keys a0, a1...an where the number
# indicates the order in which the channel is stored. So by sorting the dicts alphabetically # indicates the order in which the channel is stored. So by sorting the dicts alphabetically
# we get the correct order. # we get the correct order.
@ -159,10 +158,6 @@ class Nd2(Nd2Parser):
else: else:
return count return count
@staticmethod
def as_numpy_array(arr):
return np.frombuffer(arr)
@property @property
def _channel_offset(self): def _channel_offset(self):
""" """


Loading…
Cancel
Save