Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • swain-lab/aliby/aliby-mirror
  • swain-lab/aliby/alibylite
2 results
Show changes
Showing
with 1137 additions and 768 deletions
from extraction.core.parameters import Parameters
from extraction.core.extractor import Extractor
import numpy as np
from extraction.core.parameters import Parameters
params = Parameters(
tree={
......@@ -15,6 +14,4 @@ params = Parameters(
ext = Extractor(params, omero_id=19310)
# ext.extract_exp(tile_size=117)
d=ext.extract_tp(tp=1,tile_size=117)
d = ext.extract_tp(tp=1, tile_size=117)
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
File added
File added
#!/usr/bin/env python
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
import numpy as np
def trap_apply(cell_fun, cell_masks, trap_image, **kwargs):
"""
Apply a cell_function to a mask, trap_image pair
:param cell_fun: function to apply to a cell (from extraction/cell.py)
:param cell_masks: (numpy 3d array) cells' segmentation mask
:param trap_image: the image for the trap in which the cell is (all
channels)
:**kwargs: parameters to pass if needed for custom functions
"""
cells_iter = (*range(cell_masks.shape[2]),)
return [cell_fun(cell_masks[..., i], trap_image, **kwargs) for i in cells_iter]
def reduce_z(trap_image, fun):
# Optimise the reduction function if possible
if isinstance(fun, np.ufunc):
return fun.reduce(trap_image, axis=2)
else:
return np.apply_along_axis(fun, 2, trap_image)
This diff is collapsed.