From 8967a1289a890593ab9947e79b2977e4274d82a3 Mon Sep 17 00:00:00 2001 From: Vadim Pisarevsky Date: Thu, 25 Nov 2010 18:32:40 +0000 Subject: [PATCH] fixed problem with missing minMaxIdx (ticket #703) --- modules/core/src/stat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/src/stat.cpp b/modules/core/src/stat.cpp index 20abd384f0..1000d8d249 100644 --- a/modules/core/src/stat.cpp +++ b/modules/core/src/stat.cpp @@ -771,7 +771,7 @@ static void ofs2idx(const Mat& a, size_t ofs, int* idx) } } -void minMaxIndx(const Mat& a, double* minVal, +void minMaxIdx(const Mat& a, double* minVal, double* maxVal, int* minIdx, int* maxIdx, const Mat& mask) {