Package com.geniusscansdk.core
Class ScanProcessor.Result<T>
- java.lang.Object
-
- com.geniusscansdk.core.ScanProcessor.Result<T>
-
- Enclosing class:
- ScanProcessor
public static class ScanProcessor.Result<T> extends java.lang.Object
Result of the processing.
-
-
Field Summary
Fields Modifier and Type Field Description FilterType
appliedFilter
The filter that was applied to the image.Quadrangle
appliedQuadrangle
TheQuadrangle
that was used to perform perspective correction.RotationAngle
appliedRotation
T
output
The output of the processing, as a Bitmap or as a File
-
Constructor Summary
Constructors Constructor Description Result(Quadrangle appliedQuadrangle, FilterType appliedFilter, RotationAngle appliedRotation, T output)
-
-
-
Field Detail
-
appliedQuadrangle
public final Quadrangle appliedQuadrangle
TheQuadrangle
that was used to perform perspective correction.
-
appliedFilter
public final FilterType appliedFilter
The filter that was applied to the image.
-
appliedRotation
public final RotationAngle appliedRotation
-
output
public final T output
The output of the processing, as a Bitmap or as a File
-
-
Constructor Detail
-
Result
public Result(Quadrangle appliedQuadrangle, FilterType appliedFilter, RotationAngle appliedRotation, T output)
-
-