perf test 中 ROI 是指处理图像时只取部分处理,但是可选不同的边界填充模式, BORDER_ISOLATED 选项不使用 ROI 外的像素生成边界
When the source image is a part (ROI) of a bigger image, the function will try to use the pixels outside of the ROI to form a border. To disable this feature and always do extrapolation, as if src was not a ROI, use borderType | BORDER_ISOLATED.
用于边缘检测的线性滤波器 Sobel
0
/1
0
/1
Sobel 算子
x 方向
y 方向
Scharr 算子
ksize = -1
时,使用 scharr kernel, 即 perf test 中的scharrViaSobelFilter
x 方向
y 方向
perf test 中的 ROI
BORDER_ISOLATED
选项不使用 ROI 外的像素生成边界Reference