Commit d5054d493dad03142325f796cec47c49f736c764
1 parent
3d4c5b16
fixed msvc compiler warning
Showing
1 changed file
with
2 additions
and
2 deletions
openbr/plugins/quantize2.cpp
| ... | ... | @@ -40,8 +40,8 @@ class BayesianQuantizationTransform : public Transform |
| 40 | 40 | |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | - computeThresholdsRecursive(cumulativeGenuines.mid(0,index), cumulativeImpostors.mid(0,index), thresholds, thresholdIndex); | |
| 44 | - computeThresholdsRecursive(cumulativeGenuines.mid(index), cumulativeImpostors.mid(index), thresholds, thresholdIndex); | |
| 43 | +// computeThresholdsRecursive(cumulativeGenuines.mid(0,index), cumulativeImpostors.mid(0,index), thresholds, thresholdIndex); | |
| 44 | +// computeThresholdsRecursive(cumulativeGenuines.mid(index), cumulativeImpostors.mid(index), thresholds, thresholdIndex); | |
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | static void computeThresholds(const Mat &data, const QList<int> &labels, float *thresholds) | ... | ... |