forked from rssilva/web-audio-image-filtering
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plot-utils.js
60 lines (55 loc) · 1.1 KB
/
plot-utils.js
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
const COLORS = {
orange: 'rgba(247, 158, 2, 1)',
red: 'rgba(255, 0, 0, 1)',
green: 'rgba(0, 255, 0, 1)',
blue: 'rgba(0, 0, 255, 1)',
lightBlue: 'rgba(27, 156, 229, 1)'
}
const getDataSets = (signals, colors) => {
const datasets = signals.map((signal, index) => {
const colorName = colors[index]
return {
data: signal,
borderWidth: 1,
fill: false,
borderColor: COLORS[colorName],
pointRadius: 0
}
})
return datasets
}
const plot = ({signals, axis, context, colors, suggestedMin = 0, suggestedMax = 255}) => {
const chart = new Chart(context, {
type: 'line',
data: {
labels: axis,
datasets: getDataSets(signals, colors)
},
options: {
axes: {
display: 'none'
},
legend: {
display: false
},
animation: {
duration: 0
},
elements: {
line: {
tension: 0
}
},
scales: {
xAxes: [],
yAxes: [{
ticks: {
suggestedMin,
suggestedMax
}
}]
}
}
})
return chart
}