Skip to content
Snippets Groups Projects
Commit 32bc8ffa authored by Alán Muñoz's avatar Alán Muñoz
Browse files

fix(cells): update method of finding tile_size

parent df95da90
No related branches found
No related tags found
No related merge requests found
...@@ -77,7 +77,8 @@ class Cells: ...@@ -77,7 +77,8 @@ class Cells:
def tile_size(self) -> t.Union[int, t.Tuple[int], None]: def tile_size(self) -> t.Union[int, t.Tuple[int], None]:
if self._tile_size is None: if self._tile_size is None:
with h5py.File(self.filename, mode="r") as f: with h5py.File(self.filename, mode="r") as f:
self._tile_size = f["trap_info/tile_size"][0] # self._tile_size = f["trap_info/tile_size"][0]
self._tile_size = f["cell_info/edgemasks"].shape[1:]
return self._tile_size return self._tile_size
def nonempty_tp_in_trap(self, trap_id: int) -> set: def nonempty_tp_in_trap(self, trap_id: int) -> set:
...@@ -99,7 +100,7 @@ class Cells: ...@@ -99,7 +100,7 @@ class Cells:
We use mother_assign to list traps because it is the only property that appears even We use mother_assign to list traps because it is the only property that appears even
when no cells are found when no cells are found
""" """
return [self.labels_in_trap(trap) for trap in self.traps] return [self.labels_in_trap(trap) for trap in range(self.ntraps)]
def where(self, cell_id: int, trap_id: int): def where(self, cell_id: int, trap_id: int):
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment