Merge pull request #2701 from thoinvil:BugfixFilterEngineApplyROI
This commit is contained in:
commit
988b108858
@ -453,8 +453,11 @@ void FilterEngine::apply(const Mat& src, Mat& dst,
|
|||||||
dstOfs.y + srcRoi.height <= dst.rows );
|
dstOfs.y + srcRoi.height <= dst.rows );
|
||||||
|
|
||||||
int y = start(src, srcRoi, isolated);
|
int y = start(src, srcRoi, isolated);
|
||||||
proceed( src.data + y*src.step, (int)src.step, endY - startY,
|
proceed( src.data + y*src.step
|
||||||
dst.data + dstOfs.y*dst.step + dstOfs.x*dst.elemSize(), (int)dst.step );
|
+ srcRoi.x*src.elemSize(),
|
||||||
|
(int)src.step, endY - startY,
|
||||||
|
dst.data + dstOfs.y*dst.step +
|
||||||
|
dstOfs.x*dst.elemSize(), (int)dst.step );
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user