mirror of
https://github.com/opencv/opencv.git
synced 2025-06-11 20:09:23 +08:00
Fixed offset computation for ND case in MinMaxIdx HAL.
This commit is contained in:
parent
7e9ef4db86
commit
9ed1d6730f
@ -1522,10 +1522,11 @@ void cv::minMaxIdx(InputArray _src, double* minVal,
|
||||
|
||||
if (res == CV_HAL_ERROR_OK)
|
||||
{
|
||||
// minIdx[0] and minIdx[0] are always 0 for "flatten" version
|
||||
if (minIdx)
|
||||
ofs2idx(src, minIdx[0], minIdx);
|
||||
ofs2idx(src, minIdx[1], minIdx);
|
||||
if (maxIdx)
|
||||
ofs2idx(src, maxIdx[0], maxIdx);
|
||||
ofs2idx(src, maxIdx[1], maxIdx);
|
||||
return;
|
||||
}
|
||||
else if (res != CV_HAL_ERROR_NOT_IMPLEMENTED)
|
||||
|
Loading…
Reference in New Issue
Block a user