GazeTrackerOptions class
Provides options for configuring the Gaze Tracker.
Use GazeTrackerOptions.builder to customize options such as blink detection, user status tracking, gaze filtering, concurrency control, and camera presets.
Example usage:
var options = GazeTrackerOptions.builder
.setUseBlink(true)
.setMaxConcurrency(2)
.setPreset(CameraPreset.fhd1920x1080)
.build();
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- maxConcurrency → int
-
final
- preset → CameraPreset
-
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- useBlink → bool
-
final
- useGazeFilter → bool
-
final
- useUserStatus → bool
-
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Properties
- builder → GazeTrackerOptionsBuilder
-
Returns a new GazeTrackerOptionsBuilder to configure the options.
no setter