Source code for neuroconv.datainterfaces.ophys.caiman.caimandatainterface
from ..basesegmentationextractorinterface import BaseSegmentationExtractorInterface
from ....utils import FilePathType
[docs]class CaimanSegmentationInterface(BaseSegmentationExtractorInterface):
"""Data interface for CaimanSegmentationExtractor."""
help = "Interface for Caiman segmentation data."
display_name = "CaImAn Segmentation"
def __init__(self, file_path: FilePathType, verbose: bool = True):
"""
Parameters
----------
file_path : FilePathType
Path to .hdf5 file.
verbose : bool, default True
Whether to print progress
"""
super().__init__(file_path=file_path)
self.verbose = verbose