public final class FineWhitepaper extends FineOperation
FineOperation class| Modifier and Type | Field and Description |
|---|---|
boolean |
isFast
Processing mode flag
|
int |
radius
The smoothing radius
|
int |
strength
The filtering strength
|
| Constructor and Description |
|---|
FineWhitepaper(int radius,
int strength,
boolean isFast)
Creates the
FineWhitepaper object given input parameters |
| Modifier and Type | Method and Description |
|---|---|
void |
processImage(MIImage image,
MICallback callback)
Processes an input image
|
public int radius
public int strength
public boolean isFast
public FineWhitepaper(int radius,
int strength,
boolean isFast)
FineWhitepaper object given input parametersradius - - The smoothing radius as percent of the image size. The value should be positive.
The recommended value is 50.strength - - The strength of the brightness of the image. The higher value, the brighter image.
The value should be positive. The recommended value is 25.isFast - - If true, the operation is performed fasterpublic void processImage(MIImage image, MICallback callback) throws MIGenericException
processImage in class FineOperationimage - - the MIImage object with the imagecallback - - the MICallback object that receives information about the image processing progressMIGenericException