From c964aa333314fc6b426b2e1d1716ae7d2aa66bc0 Mon Sep 17 00:00:00 2001
From: Andrey Smorodov <andreysmorodov@list.ru>
Date: Thu, 2 Nov 2017 15:47:45 +0300
Subject: [PATCH] Matrices in colorizeSegmentation were not initialized.

---
 samples/dnn/fcn_semsegm.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/samples/dnn/fcn_semsegm.cpp b/samples/dnn/fcn_semsegm.cpp
index f81fae90f2..4d4a33079c 100644
--- a/samples/dnn/fcn_semsegm.cpp
+++ b/samples/dnn/fcn_semsegm.cpp
@@ -50,8 +50,8 @@ static void colorizeSegmentation(const Mat &score, const vector<cv::Vec3b> &colo
     const int cols = score.size[3];
     const int chns = score.size[1];
 
-    cv::Mat maxCl(rows, cols, CV_8UC1);
-    cv::Mat maxVal(rows, cols, CV_32FC1);
+    cv::Mat maxCl=cv::Mat::zeros(rows, cols, CV_8UC1);
+    cv::Mat maxVal(rows, cols, CV_32FC1, cv::Scalar(-FLT_MAX));
     for (int ch = 0; ch < chns; ch++)
     {
         for (int row = 0; row < rows; row++)