Interface Processor<S,T,U>

Type Parameters:
S -
T -
U -
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface Processor<S,T,U>
A generic processor designed to work with Parameters and provide an output.

The intended use is to apply a local image processing task, such as thresholding, to a region of an image corresponding to an object.

Since:
v0.5.0
  • Method Summary

    Modifier and Type
    Method
    Description
    process(Parameters<S,T> params)
    Processing method.