Class | Description |
---|---|
AccelerationClassifier |
A classifier which looks at the speed and distance between successive points of a Stroke.
|
AnglesClassifier |
A classifier which calculates the variance of differences between successive angles in a stroke.
|
AnglesPercentageEvaluator | |
AnglesVarianceEvaluator | |
Classifier |
An abstract class for classifiers for touch and sensor events.
|
ClassifierData |
Contains data which is used to classify interaction sequences on the lockscreen.
|
DirectionClassifier |
A classifier which looks at the general direction of a stroke and evaluates it depending on
the type of action that takes place.
|
DirectionEvaluator | |
DurationCountClassifier |
A classifier which looks at the ratio between the duration of the stroke and its number of
points.
|
DurationCountEvaluator | |
EndPointLengthClassifier |
A classifier which looks at the distance between the first and the last point from the stroke.
|
EndPointLengthEvaluator | |
EndPointRatioClassifier |
A classifier which looks at the ratio between the total length covered by the stroke and the
distance between the first and last point from this stroke.
|
EndPointRatioEvaluator | |
FalsingLog |
Keeps track of interesting falsing data.
|
FalsingManager |
When the phone is locked, listens to touch, sensor and phone events and sends them to
DataCollector and HumanInteractionClassifier.
|
GestureClassifier |
An abstract class for classifiers which classify the whole gesture (all the strokes which
occurred from DOWN event to UP/CANCEL event)
|
HistoryEvaluator |
Holds the evaluations for ended strokes and gestures.
|
HumanInteractionClassifier |
An classifier trying to determine whether it is a human interacting with the phone or not.
|
LengthCountClassifier |
A classifier which looks at the ratio between the length of the stroke and its number of
points.
|
LengthCountEvaluator |
A classifier which looks at the ratio between the length of the stroke and its number of
points.
|
Point | |
PointerCountClassifier |
A classifier which looks at the total number of traces in the whole gesture.
|
PointerCountEvaluator | |
ProximityClassifier |
A classifier which looks at the proximity sensor during the gesture.
|
ProximityEvaluator | |
SpeedAnglesClassifier |
A classifier which for each point from a stroke, it creates a point on plane with coordinates
(timeOffsetNano, distanceCoveredUpToThisPoint) (scaled by DURATION_SCALE and LENGTH_SCALE)
and then it calculates the angle variance of these points like the class
AnglesClassifier (without splitting it into two parts). |
SpeedAnglesPercentageEvaluator | |
SpeedClassifier |
A classifier that looks at the speed of the stroke.
|
SpeedEvaluator | |
SpeedRatioEvaluator | |
SpeedVarianceEvaluator | |
Stroke |
Contains data about a stroke (a single trace, all the events from a given id from the
DOWN/POINTER_DOWN event till the UP/POINTER_UP/CANCEL event.)
|
StrokeClassifier |
An abstract class for classifiers which classify each stroke separately.
|