public abstract class AbstractPipelineProcessor extends Object implements IPipelineProcessor
Constructor and Description |
---|
AbstractPipelineProcessor() |
Modifier and Type | Method and Description |
---|---|
void |
chain(IProcessor next)
Chains this processor to another.
|
int |
nextInChainProcess(ImageWrapper image)
This method passes on the image to the next processor.
|
abstract int |
process(ImageWrapper imageWrapper)
This is the abstract method that does the work, to be implemented in the
concrete class processor.
|
public void chain(IProcessor next)
chain
in interface IPipelineProcessor
next
- public abstract int process(ImageWrapper imageWrapper)
process
in interface IProcessor
imageWrapper
- public int nextInChainProcess(ImageWrapper image)
image
- Copyright © 2015–2022 SciJava. All rights reserved.