Skip to content

Commit

Permalink
Fix(imaging_no_curation.py) summary image ingestion from caiman
Browse files Browse the repository at this point in the history
  • Loading branch information
kushalbakshi committed Jul 17, 2024
1 parent 8989151 commit 10829c6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions element_calcium_imaging/imaging_no_curation.py
Original file line number Diff line number Diff line change
Expand Up @@ -917,10 +917,10 @@ def make(self, key):
}
for fkey, ref_image, ave_img, corr_img, max_img in zip(
field_keys,
caiman_dataset.ref_image.transpose(2, 0, 1),
caiman_dataset.mean_image.transpose(2, 0, 1),
caiman_dataset.correlation_map.transpose(2, 0, 1),
caiman_dataset.max_proj_image.transpose(2, 0, 1),
caiman_dataset.ref_image,
caiman_dataset.mean_image,
caiman_dataset.correlation_map,
caiman_dataset.max_proj_image,
)
]
self.Summary.insert(summary_images)
Expand Down

0 comments on commit 10829c6

Please sign in to comment.