From 33e659786f8a13da46ea3892dae0300d7baff6e2 Mon Sep 17 00:00:00 2001 From: Pavel Vlasov Date: Mon, 21 Sep 2015 18:11:20 +0300 Subject: [PATCH] Fix for cmp16s condition during IPP compare type convert; --- modules/core/src/arithm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/src/arithm.cpp b/modules/core/src/arithm.cpp index 1b8705983f..a9240f8d40 100644 --- a/modules/core/src/arithm.cpp +++ b/modules/core/src/arithm.cpp @@ -4692,7 +4692,7 @@ static void cmp16s(const short* src1, size_t step1, const short* src2, size_t st CV_IPP_CHECK() { IppCmpOp op = convert_cmp(*(int *)_cmpop); - if( op > 0 ) + if( op >= 0 ) { fixSteps(size, sizeof(dst[0]), step1, step2, step); if (0 <= ippiCompare_16s_C1R(src1, (int)step1, src2, (int)step2, dst, (int)step, ippiSize(size), op))