nicetoolbox.detectors.feature_detectors.base_feature¶
Base class for Feature Detectors. Feature detectors run computations in-process using method detector outputs.
Classes
Abstract base class for feature detectors. |
- class nicetoolbox.detectors.feature_detectors.base_feature.BaseFeature(io, data, sequence_context, algorithm_instance: str)[source]¶
Abstract base class for feature detectors.
Feature detectors run in-process, computing derived features from method detector outputs.
Initialize base detector with references.
Subclasses should call super().__init__() and set inference_config.
- abstract compute() Any[source]¶
Compute the feature from method detector outputs.
- Returns:
Computed feature data (passed to visualization and post_compute)