Interface FullDocumentImageDpiOptions
-
- All Known Implementing Classes:
BlinkIdCombinedRecognizer
,BlinkIdRecognizer
,DocumentFaceRecognizer
,MrtdCombinedRecognizer
,MrtdRecognizer
,PassportRecognizer
,UsdlCombinedRecognizer
,VisaRecognizer
public interface FullDocumentImageDpiOptions
Options for configuring the DPI (Dots Per Inch) for full document image in cases when it should be returned.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getFullDocumentImageDpi()
Returns the DPI (Dots Per Inch) for full document image that should be returned.void
setFullDocumentImageDpi(int desiredDPI)
Sets desired DPI (Dots Per Inch) for full document image that should be returned.
-
-
-
Method Detail
-
getFullDocumentImageDpi
int getFullDocumentImageDpi()
Returns the DPI (Dots Per Inch) for full document image that should be returned. By default, this is set to '250'.- Returns:
- DPI for full document image that should be returned.
-
setFullDocumentImageDpi
void setFullDocumentImageDpi(@IntRange(from=100L,to=400L) int desiredDPI)
Sets desired DPI (Dots Per Inch) for full document image that should be returned. By default, this is set to '250'.- Parameters:
desiredDPI
- desired DPI in range [100, 400]
-
-