Peter M. Groen
/
openbr
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Download as
Email Patches
Plain Diff
Browse Code ยป
Commit
c4c126e7874f308bde140c52feb4b477866dcf58
Authored by
Josh Klontz
2013-03-11 12:03:34 -0400
1 parent
7660cc8e
fixed KDE default constructor
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
sdk/plugins/quality.cpp
sdk/plugins/quality.cpp
View file @
c4c126e
...
...
@@ -79,7 +79,7 @@ struct KDE
79
79
double mean, stddev;
80
80
QList<float> bins;
81
81
82
- KDE() : min(0), max(1)
{}
82
+ KDE() : min(0), max(1)
, mean(0), stddev(1)
{}
83
83
KDE(const QList<float> &scores)
84
84
{
85
85
Common::MinMax(scores, &min, &max);
...
...