-
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.
- Loading branch information
1 parent
da86f91
commit 9b33075
Showing
39 changed files
with
3 additions
and
393 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
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,14 +1 @@ | ||
"""Toy example ImagingExtractor and SegmentationExtractor for testing. | ||
Modules | ||
------- | ||
toy_example | ||
Create a toy example of an ImagingExtractor and a SegmentationExtractor. | ||
Functions | ||
--------- | ||
toy_example | ||
Create a toy example of an ImagingExtractor and a SegmentationExtractor. | ||
""" | ||
|
||
from .toy_example import toy_example |
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
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
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 +0,0 @@ | ||
"""All specialized ImagingExtractors and SegmentationExtractors are defined here.""" | ||
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,14 +1 @@ | ||
"""A Segmentation Extractor for Caiman. | ||
Modules | ||
------- | ||
caimansegmentationextractor | ||
A Segmentation Extractor for Caiman. | ||
Classes | ||
------- | ||
CaimanSegmentationExtractor | ||
A class for extracting segmentation from Caiman output. | ||
""" | ||
|
||
from .caimansegmentationextractor import CaimanSegmentationExtractor |
8 changes: 0 additions & 8 deletions
8
src/roiextractors/extractors/caiman/caimansegmentationextractor.py
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
14 changes: 0 additions & 14 deletions
14
src/roiextractors/extractors/hdf5imagingextractor/__init__.py
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 @@ | ||
"""An imaging extractor for HDF5. | ||
Modules | ||
------- | ||
hdf5imagingextractor | ||
An imaging extractor for HDF5. | ||
Classes | ||
------- | ||
Hdf5ImagingExtractor | ||
An imaging extractor for HDF5. | ||
""" | ||
|
||
from .hdf5imagingextractor import Hdf5ImagingExtractor |
8 changes: 0 additions & 8 deletions
8
src/roiextractors/extractors/hdf5imagingextractor/hdf5imagingextractor.py
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
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,3 +1 @@ | ||
"""Defines extactors for Inscopix data.""" | ||
|
||
from .inscopiximagingextractor import InscopixImagingExtractor |
2 changes: 0 additions & 2 deletions
2
src/roiextractors/extractors/inscopixextractors/inscopiximagingextractor.py
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,5 +1,3 @@ | ||
"""Inscopix Imaging Extractor.""" | ||
|
||
import warnings | ||
from typing import Optional, Tuple | ||
|
||
|
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,19 +1,4 @@ | ||
"""Defines memmap-based ImagingExtractors. Currently, only numpy.memmap is supported. | ||
Modules | ||
------- | ||
memmapextractors | ||
The base class for memmapable imaging extractors. | ||
numpymemampextractor | ||
The class for reading optical imaging data stored in a binary format with numpy.memmap. | ||
Classes | ||
------- | ||
MemmapImagingExtractor | ||
The base class for memmapable imaging extractors. | ||
NumpyMemmapImagingExtractor | ||
The class for reading optical imaging data stored in a binary format with numpy.memmap. | ||
""" | ||
"""Defines memmap-based ImagingExtractors. Currently, only numpy.memmap is supported.""" | ||
|
||
from .memmapextractors import MemmapImagingExtractor | ||
from .numpymemampextractor import NumpyMemmapImagingExtractor |
8 changes: 0 additions & 8 deletions
8
src/roiextractors/extractors/memmapextractors/memmapextractors.py
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
8 changes: 0 additions & 8 deletions
8
src/roiextractors/extractors/memmapextractors/numpymemampextractor.py
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
13 changes: 0 additions & 13 deletions
13
src/roiextractors/extractors/miniscopeimagingextractor/__init__.py
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,14 +1 @@ | ||
"""An ImagingExtractor for the Miniscope video (.avi) format. | ||
Modules | ||
------- | ||
miniscopeimagingextractor | ||
An ImagingExtractor for the Miniscope video (.avi) format. | ||
Classes | ||
------- | ||
MiniscopeImagingExtractor | ||
An ImagingExtractor for the Miniscope video (.avi) format. | ||
""" | ||
|
||
from .miniscopeimagingextractor import MiniscopeImagingExtractor |
8 changes: 0 additions & 8 deletions
8
src/roiextractors/extractors/miniscopeimagingextractor/miniscopeimagingextractor.py
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
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,16 +1 @@ | ||
"""Imaging and Segmenation Extractors for .npy files. | ||
Modules | ||
------- | ||
numpyextractors | ||
Imaging and Segmenation Extractors for .npy files. | ||
Classes | ||
------- | ||
NumpyImagingExtractor | ||
An ImagingExtractor specified by timeseries .npy file, sampling frequency, and channel names. | ||
NumpySegmentationExtractor | ||
A Segmentation extractor specified by image masks and traces .npy files. | ||
""" | ||
|
||
from .numpyextractors import NumpyImagingExtractor, NumpySegmentationExtractor |
10 changes: 0 additions & 10 deletions
10
src/roiextractors/extractors/numpyextractors/numpyextractors.py
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
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,16 +1 @@ | ||
"""Imaging and segmentation extractors for NWB files. | ||
Modules | ||
------- | ||
nwbextractors | ||
Imaging and segmentation extractors for NWB files. | ||
Classes | ||
------- | ||
NwbImagingExtractor | ||
Extracts imaging data from NWB files. | ||
NwbSegmentationExtractor | ||
Extracts segmentation data from NWB files. | ||
""" | ||
|
||
from .nwbextractors import NwbImagingExtractor, NwbSegmentationExtractor |
10 changes: 0 additions & 10 deletions
10
src/roiextractors/extractors/nwbextractors/nwbextractors.py
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
13 changes: 0 additions & 13 deletions
13
src/roiextractors/extractors/sbximagingextractor/__init__.py
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,14 +1 @@ | ||
"""A segmentation extractor for Scanbox imaging data. | ||
Modules | ||
------- | ||
sbximagingextractor | ||
A segmentation extractor for Scanbox imaging data. | ||
Classes | ||
------- | ||
SbxImagingExtractor | ||
An ImagingExtractor for Scanbox Image files. | ||
""" | ||
|
||
from .sbximagingextractor import SbxImagingExtractor |
8 changes: 0 additions & 8 deletions
8
src/roiextractors/extractors/sbximagingextractor/sbximagingextractor.py
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
21 changes: 0 additions & 21 deletions
21
src/roiextractors/extractors/schnitzerextractor/__init__.py
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
8 changes: 0 additions & 8 deletions
8
src/roiextractors/extractors/schnitzerextractor/cnmfesegmentationextractor.py
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
12 changes: 0 additions & 12 deletions
12
src/roiextractors/extractors/schnitzerextractor/extractsegmentationextractor.py
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
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,14 +1 @@ | ||
"""A segmentation extractor for Sima. | ||
Modules | ||
------- | ||
simasegmentationextractor | ||
A segmentation extractor for Sima. | ||
Classes | ||
------- | ||
SimaSegmentationExtractor | ||
A segmentation extractor for Sima. | ||
""" | ||
|
||
from .simasegmentationextractor import SimaSegmentationExtractor |
8 changes: 0 additions & 8 deletions
8
src/roiextractors/extractors/simaextractor/simasegmentationextractor.py
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
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,14 +1 @@ | ||
"""A segmentation extractor for Suite2p. | ||
Modules | ||
------- | ||
suite2psegmentationextractor | ||
A segmentation extractor for Suite2p. | ||
Classes | ||
------- | ||
Suite2pSegmentationExtractor | ||
A segmentation extractor for Suite2p. | ||
""" | ||
|
||
from .suite2psegmentationextractor import Suite2pSegmentationExtractor |
8 changes: 0 additions & 8 deletions
8
src/roiextractors/extractors/suite2p/suite2psegmentationextractor.py
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
Oops, something went wrong.