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

change(cells): stack cellmasks in dim 0

parent bd84b0fe
No related branches found
No related tags found
No related merge requests found
......@@ -165,7 +165,7 @@ class Cells:
def at_times(self, timepoints: t.Iterable[int], kind="mask"):
return [
[
np.dstack(tile_masks) if len(tile_masks) else []
np.stack(tile_masks) if len(tile_masks) else []
for tile_masks in self.at_time(tp, kind=kind).values()
]
for tp in timepoints
......
......@@ -120,7 +120,7 @@ def segment_traps(
for x, y in centroids
]
# make a mean template from all the found traps
mean_template = np.dstack(candidate_templates).astype(int).mean(axis=-1)
mean_template = np.stack(candidate_templates).astype(int).mean(axis=0)
# find traps using the mean trap template
traps = identify_trap_locations(
......@@ -243,4 +243,4 @@ def stretch_image(image):
maxval = np.percentile(image, 98)
image = np.clip(image, minval, maxval)
image = (image - minval) / (maxval - minval)
return image
\ No newline at end of file
return image
......@@ -264,8 +264,8 @@ class remoteImageViewer(BaseImageViewer):
]
lbls = [self.cells.labels_at_time(tp).get(trap_id, []) for tp in tps]
lbld_outlines = [
np.dstack([mask * lbl for mask, lbl in zip(maskset, lblset)]).max(
axis=2
np.stack([mask * lbl for mask, lbl in zip(maskset, lblset)]).max(
axis=0
)
if len(lblset)
else np.zeros_like(imgs_list[0]).astype(bool)
......
......@@ -479,7 +479,7 @@ class Extractor(StepABC):
masks = {trap_id: [] for trap_id in range(cells.ntraps)}
for trap_id, cells in raw_masks.items():
if len(cells):
masks[trap_id] = np.dstack(np.array(cells)).astype(bool)
masks[trap_id] = np.stack(np.array(cells)).astype(bool)
# convert to a list of masks
masks = [np.array(v) for v in masks.values()]
......@@ -491,7 +491,7 @@ class Extractor(StepABC):
bgs = []
if self.params.sub_bg:
bgs = [
~np.sum(m, axis=2).astype(bool)
~np.sum(m, axis=0).astype(bool)
if np.any(m)
else np.zeros((tile_size, tile_size))
for m in masks
......
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