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

fix(distributors): simplify using cell axis 0

parent 091ca651
No related branches found
No related tags found
No related merge requests found
...@@ -19,10 +19,8 @@ def trap_apply(cell_fun, cell_masks, *args, **kwargs): ...@@ -19,10 +19,8 @@ def trap_apply(cell_fun, cell_masks, *args, **kwargs):
**kwargs: dict **kwargs: dict
Keyword arguments to pass if needed to custom functions. Keyword arguments to pass if needed to custom functions.
""" """
# find an index for each cell in the trap
cells_iter = (*range(cell_masks.shape[2]),)
# apply cell_fun to each cell and return the results as a list # apply cell_fun to each cell and return the results as a list
return [cell_fun(cell_masks[..., i], *args, **kwargs) for i in cells_iter] return [cell_fun(mask, *args, **kwargs) for mask in cell_masks]
def reduce_z(trap_image: np.ndarray, fun: t.Callable): def reduce_z(trap_image: np.ndarray, fun: t.Callable):
......
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