From c545857ea679aa633168883183976115a6514696 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorena=20Garc=C3=ADa?= Date: Tue, 4 Aug 2015 16:50:55 +0200 Subject: [PATCH] Indent fix --- modules/ml/src/data.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/ml/src/data.cpp b/modules/ml/src/data.cpp index 61aae46943..feb79d93a5 100644 --- a/modules/ml/src/data.cpp +++ b/modules/ml/src/data.cpp @@ -638,9 +638,9 @@ public: //If there are responses in the csv file, save them. If not, responses matrix will contain just zeros if (noutputvars != 0){ - Mat(nsamples, noutputvars, CV_32F, &allresponses[0]).copyTo(tempResponses); - setData(tempSamples, ROW_SAMPLE, tempResponses, noArray(), noArray(), - noArray(), Mat(vtypes).clone(), tempMissing); + Mat(nsamples, noutputvars, CV_32F, &allresponses[0]).copyTo(tempResponses); + setData(tempSamples, ROW_SAMPLE, tempResponses, noArray(), noArray(), + noArray(), Mat(vtypes).clone(), tempMissing); } else{ Mat zero_mat(nsamples, 1, CV_32F, Scalar(0));