[CCV] Prevented unintended side effects

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
Jim Martens 2017-05-30 20:53:41 +02:00
parent 781edeb133
commit 5deeb1a46e
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ cv::Mat max_fusion_generic(const std::vector<cv::Mat> feature_maps) {
}
if (first_value) {
C = f;
C = f.clone();
first_value = false;
}
else {