feat: implement cluster averaging pipeline, UI controls

This commit is contained in:
jack
2026-06-15 15:02:55 -07:00
parent 7d32fb4b65
commit e545c245d7
6 changed files with 158 additions and 9 deletions
@@ -182,6 +182,14 @@ ColumnLayout {
font.pixelSize: 11
}
PanelCheckBox {
id: clusterAverageToggle
text: "Average Clusters"
checked: streamController.clusterAveragingEnabled
font.pixelSize: 11
onCheckedChanged: streamController.clusterAveragingEnabled = checked
}
RowLayout {
Layout.fillWidth: true
spacing: 6
@@ -29,8 +29,9 @@ Dialog {
background: Rectangle {
color: Theme.cardBackground
radius: 8
radius: Theme.radiusLg
border.color: Theme.cardBorder
border.width: Theme.borderThin
}
ColumnLayout {