mirror of
https://github.com/opencv/opencv.git
synced 2026-07-30 07:43:03 +04:00
Filter2D HAL interface
This commit is contained in:
@@ -856,8 +856,12 @@ void cv::Laplacian( InputArray _src, OutputArray _dst, int ddepth, int ksize,
|
||||
wtype, ks, kd, Point(-1,-1), 0, borderType, borderType, Scalar() );
|
||||
|
||||
Mat src = _src.getMat(), dst = _dst.getMat();
|
||||
int y = fx->start(src), dsty = 0, dy = 0;
|
||||
fy->start(src);
|
||||
Point ofs;
|
||||
Size wsz(src.cols, src.rows);
|
||||
src.locateROI( wsz, ofs );
|
||||
|
||||
int y = fx->start(src, wsz, ofs), dsty = 0, dy = 0;
|
||||
fy->start(src, wsz, ofs);
|
||||
const uchar* sptr = src.ptr() + src.step[0] * y;
|
||||
|
||||
int dy0 = std::min(std::max((int)(STRIPE_SIZE/(CV_ELEM_SIZE(stype)*src.cols)), 1), src.rows);
|
||||
|
||||
Reference in New Issue
Block a user