-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.qml
100 lines (86 loc) · 2.26 KB
/
main.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
import QtQuick
import QtCharts
import QtQuick.Controls
Item {
width: 800
height: 600
property int minDistance: 0
property int maxDistance: 5000
function updatePoints(points) {
lidarSeries.clear();
for (var i = 0; i < points.length; i++) {
let d = points[i].distance;
if (d >= minDistance && d <= maxDistance) {
lidarSeries.append(points[i].angle, d);
}
}
}
function updateAxisRange() {
axisRadial.min = minDistance;
axisRadial.max = maxDistance;
}
Column {
anchors.top: parent.top
anchors.left: parent.left
anchors.margins: 10
spacing: 10
Text {
text: "Distance Filter"
font.bold: true
}
ComboBox {
id: distanceFilter
model: ["0-5m", "0-2m)", "5m+"]
onCurrentIndexChanged: {
if (currentIndex === 0) {
minDistance = 0;
maxDistance = 5000;
} else if (currentIndex === 1) {
minDistance = 0;
maxDistance = 2000;
} else if (currentIndex === 2) {
minDistance = 0;
maxDistance = 15000;
}
updateAxisRange();
updatePoints(scanData.points);
}
}
}
PolarChartView {
id: chart
title: "Lidar Scan Data"
anchors.fill: parent
anchors.topMargin: 50
legend.visible: false
antialiasing: true
ValueAxis {
id: axisAngular
min: 0
max: 360
tickCount: 9
}
ValueAxis {
id: axisRadial
min: 0
max: 5000
labelFormat: "%.1f"
}
ScatterSeries {
id: lidarSeries
axisAngular: axisAngular
axisRadial: axisRadial
markerSize: 5
color: "blue"
}
Component.onCompleted: {
updatePoints(scanData.points);
}
Connections {
target: scanData
function onPointsChanged() {
updatePoints(scanData.points);
}
}
}
}