SequentialProcessor<T> class

A processor base class that chains a serial of Operator of type T and executes them.

Typically, users could use its subclasses, e.g. ImageProcessor rather than directly use this one.

Implemented types
Implementers

Properties

hashCode int
The hash code for this object.
no setterinherited
operatorIndex Map<String, List<int>>
The Map between the operator name and the corresponding op indexes in operatorList. An operator may be added multiple times into this SequentialProcessor.
getter/setter pair
operatorList List<Operator<T>>
List of operators added to this SequentialProcessor.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
process(T input) → T
override
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited