Interface DatasetCreator
- All Known Implementing Classes:
DatasetCreatorFromROI,MaskedDatasetCreator
public interface DatasetCreator
interface that returns a Dataset from an input Dataset. The classic example is to return a dataset that
is a region of interest in the first
-
Method Summary
Modifier and TypeMethodDescriptionorg.eclipse.january.dataset.DatasetcreateDataSet(org.eclipse.january.dataset.Dataset ds) booleanAllows disabling and enabling the processing on the fly.
-
Method Details
-
createDataSet
org.eclipse.january.dataset.Dataset createDataSet(org.eclipse.january.dataset.Dataset ds) -
isEnabled
boolean isEnabled()Allows disabling and enabling the processing on the fly. If disabled,createDataSet(Dataset)will just return the supplied dataset.
-