Package io.scanbot.sdk.imagefilters
Class WhiteBlackPointFilter
-
- All Implemented Interfaces:
-
android.os.Parcelable
public final class WhiteBlackPointFilter extends ParametricFilter implements Parcelable
Maps image value channel so that all the pixels darker than the black point are set to 0, all the pixels brighter than the white point are set to 255, and the pixels in between are linearly scaled.
-
-
Field Summary
Fields Modifier and Type Field Description private final String
_type
private Double
blackPoint
private Double
whitePoint
-
Constructor Summary
Constructors Constructor Description WhiteBlackPointFilter(Map<String, Object> source)
WhiteBlackPointFilter(JSONObject json)
WhiteBlackPointFilter(Double blackPoint, Double whitePoint)
-
Method Summary
Modifier and Type Method Description String
get_type()
final Double
getBlackPoint()
Fraction of the value channel range that is set to 0. final Unit
setBlackPoint(Double blackPoint)
Fraction of the value channel range that is set to 0. final Double
getWhitePoint()
Fraction of the value channel range that is not set to 255. final Unit
setWhitePoint(Double whitePoint)
Fraction of the value channel range that is not set to 255. JSONObject
toJson()
final static WhiteBlackPointFilter
default()
-
-
Method Detail
-
getBlackPoint
final Double getBlackPoint()
Fraction of the value channel range that is set to 0. The value should be in the range from 0 to 1. Default is 0.0
-
setBlackPoint
final Unit setBlackPoint(Double blackPoint)
Fraction of the value channel range that is set to 0. The value should be in the range from 0 to 1. Default is 0.0
-
getWhitePoint
final Double getWhitePoint()
Fraction of the value channel range that is not set to 255. The value should be in the range from 0 to 1. Default is 1.0
-
setWhitePoint
final Unit setWhitePoint(Double whitePoint)
Fraction of the value channel range that is not set to 255. The value should be in the range from 0 to 1. Default is 1.0
-
toJson
JSONObject toJson()
-
default
final static WhiteBlackPointFilter default()
-
-
-
-