You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Features
Added FemtonicsImagingExtractor for reading and extracting metadata and imaging data from Femtonics MESc files.PR #440
Added get_original_frame_indices() method to ScanImageImagingExtractor for mapping extractor samples back to original frame indices in raw microscopy data. This method can be used to synchronize with other data sources or for advanced analysis that requires knowledge of the original frame indices. PR #445
Fixes
Fixed InscopixSegmentationExtractor with support for string/integer ROI IDs, NWB-compliant pixel masks, standardized ROI lists, improved macOS compatibility, enhanced metadata extraction, and general code cleanup. PR #435
Added missing function to retrieve inscopix metadata PR #436
Fixed deprecation warning about invalid escape sequence in micromanager TIFF extractor PR #442
Removed integer-only assumption for ROI IDs in segmentation extractors. ROI IDs can now be strings or any type. Updated generate_dummy_segmentation_extractor to produce string ROI IDs in format roi_00, roi_01, etc. PR #449
Deprecations And Removals
The get_image_size() method in SegmentationExtractor is deprecated and will be removed on or after January 2026. Use get_frame_shape() instead. PR #443
The get_num_frames() method in SegmentationExtractor is deprecated and will be removed on or after January 2026. Use get_num_samples() instead. PR #443
The frame_to_time() method in SegmentationExtractor is deprecated and will be removed on or after January 2026. Use sample_indices_to_time() instead. PR #447
Removed unused is_writable class attributes from all extractor classes PR #442
get_frames is now get_samples. get_frames will be deprecated in or after January 2026 PR #444
Improvements
Bruker series can now read sequences of type BrightnessOverTimePR #448