Files
2026-07-11 13:39:02 +00:00

70 lines
1.5 KiB
JSON

{
"pipelines": [
{
"name": "default",
"device": "/dev/touch_offload",
"algorithms": [
{
"class": "SegmentationAlgorithm",
"name": "segmentation",
},
{
"class": "PeakTrackerAlgorithm",
"name": "peak_tracker",
"blocked_by": ["segmentation"],
"parameters": {
},
},
{
"class": "GripSuppressionAlgorithm",
"name": "grip_suppression",
"blocked_by": ["peak_tracker"],
"parameters": {
}
},
{
"class": "EarCheekDetectionAlgorithm",
"name": "earcheek",
"parameters": {
"prob_threshold_lo": 0.7,
},
"blocked_by": ["grip_suppression"],
},
{
"class": "TouchflowAlgorithm",
"name": "touchflow",
"parameters": { "requires_self_data": true },
"blocked_by": ["earcheek"],
},
{
"class": "ReportingAlgorithm",
"name": "reporting",
"blocked_by": ["touchflow"],
},
{
"class": "HardwareStateDetector",
"name": "gril_antenna_tuning",
"blocked_by": ["reporting"],
"parameters": {
"enableGril": true,
"minNumFramesCaseDetection": 20000,
"scalingFactorSignalStrength": 0.98,
"scalingFactorSignalStrength2": 0.99,
"debounceDelayCaseAbsentToPresentMs": 0,
}
},
{
"class": "TouchSuezAlgorithm",
"name": "touchsuez",
"blocked_by": ["gril_antenna_tuning"],
},
{
"class": "SensorFusionAlgorithm",
"name": "sensorfusion",
"blocked_by": ["touchsuez"],
}
],
}
]
}