Source code for neuroconv.datainterfaces.ophys.sima.simadatainterface

from ..basesegmentationextractorinterface import BaseSegmentationExtractorInterface
from ....utils import FilePathType


[docs]class SimaSegmentationInterface(BaseSegmentationExtractorInterface): """Data interface for SimaSegmentationExtractor.""" help = "Interface for SIMA segmentation." display_name = "SIMA Segmentation" def __init__(self, file_path: FilePathType, sima_segmentation_label: str = "auto_ROIs"): """ Parameters ---------- file_path : FilePathType sima_segmentation_label : str, default: "auto_ROIs" """ super().__init__(file_path=file_path, sima_segmentation_label=sima_segmentation_label)