Package glair.vision
Class Vision
java.lang.Object
glair.vision.Vision
The main entry point for interacting with the Vision SDK.
This class provides access to various vision-related functionalities such as OCR,
face recognition, and identity verification.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionVision(VisionSettings visionSettings) Constructs a Vision instance with the given vision settingsVision(VisionSettings visionSettings, LoggerConfig loggerConfig) Constructs a Vision instance with the given vision settings and optional logger configuration. -
Method Summary
Modifier and TypeMethodDescriptionconfig()Get the configuration settings for the Vision SDK.faceBio()Get access to the FaceBio (Face Recognition) functionality of the Vision SDK.identity()Get access to the Identity functionality of the Vision SDK.ocr()Get access to the OCR functionality of the Vision SDK.voidPrint the current logger configuration to the standard output.
-
Field Details
-
version
Represents the version of the software/library.- See Also:
-
-
Constructor Details
-
Vision
Constructs a Vision instance with the given vision settings- Parameters:
visionSettings- The vision settings to configure the SDK.
-
Vision
Constructs a Vision instance with the given vision settings and optional logger configuration.- Parameters:
visionSettings- The vision settings to configure the SDK.loggerConfig- (Optional) The logger configuration for customizing logging behavior.
-
-
Method Details
-
config
Get the configuration settings for the Vision SDK.- Returns:
- The configuration settings.
-
ocr
Get access to the OCR functionality of the Vision SDK.- Returns:
- An OCR instance.
-
faceBio
Get access to the FaceBio (Face Recognition) functionality of the Vision SDK.- Returns:
- A FaceBio instance.
-
identity
Get access to the Identity functionality of the Vision SDK.- Returns:
- An Identity instance.
-
printLoggerConfig
public void printLoggerConfig()Print the current logger configuration to the standard output.
-