mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-24 12:07:19 +02:00
[ui] StatViewer: fix average computation
This commit is contained in:
parent
bedda0c5b6
commit
001d9a3de8
1 changed files with 1 additions and 1 deletions
|
@ -181,7 +181,7 @@ Item {
|
|||
}
|
||||
|
||||
for(var q = 0; q < average.length; q++) {
|
||||
average[q] = average[q] / (categories.length-1)
|
||||
average[q] = average[q] / (categories.length)
|
||||
|
||||
averageLine.append(q * root.deltaTime, average[q])
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue