-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #182 from catalystneuro/release_0.4.18
Release 0.4.18
- Loading branch information
Showing
2 changed files
with
31 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,44 @@ | ||
# Upcoming | ||
|
||
### Features | ||
|
||
### Improvements | ||
|
||
### Fixes | ||
|
||
### Testing | ||
|
||
|
||
|
||
# v0.4.18 | ||
|
||
### Improvements | ||
* `get_video` is now an abstract method in `ImagingExtractor` [PR #180](https://github.com/catalystneuro/roiextractors/pull/180) | ||
|
||
### Features | ||
* Add dummy segmentation extractor [PR #176](https://github.com/catalystneuro/roiextractors/pull/176) | ||
|
||
|
||
### Testing | ||
* Added unittests to the `get_frames` method from `ImagingExtractors` to assert that they are consistent with numpy | ||
indexing behavior. [PR #154](https://github.com/catalystneuro/roiextractors/pull/154) | ||
* Tests for spikeinterface like-behavior for the `get_video` funtiction [PR #181](https://github.com/catalystneuro/roiextractors/pull/181) | ||
|
||
|
||
|
||
# v0.4.17 | ||
|
||
### Depreceations | ||
- Suite2P argument has become `folder_path` instead of `file_path`, `file_path` deprecation scheduled for august or later. | ||
|
||
### Documentation | ||
- Improved docstrings across many extractors. | ||
|
||
### Features | ||
- Adds MultiImagingExtractor for combining multiple imaging extractors. | ||
- Adds ScanImageTiffExtractor for reading .tiff files output from ScanImage | ||
- Adds NumpyImagingExtractor for extracting raw video data as memmaps. | ||
- Added frame slicing capabilities for imaging extractors. | ||
|
||
### Testing | ||
- Added checks and debugs that all sampling frequencies returns are floats | ||
- Round trip testing working for all extractors that have a working write method. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ | |
|
||
setup( | ||
name="roiextractors", | ||
version="0.4.17", | ||
version="0.4.18", | ||
author="Heberto Mayorquin, Cody Baker, Ben Dichter, Alessio Buccino", | ||
author_email="[email protected]", | ||
description="Python module for extracting optical physiology ROIs and traces for various file types and formats", | ||
|