aiwiki icon indicating copy to clipboard operation
aiwiki copied to clipboard

OpenCV IP Filter blur

Open junxnone opened this issue 1 year ago • 0 comments

blur 模糊处理

void cv::blur(InputArray 	src,
            OutputArray 	dst,
            Size 	ksize,
            Point 	anchor = Point(-1,-1),
            int 	borderType = BORDER_DEFAULT 
)	
参数 描述
ksize 使用的 kernel size
anchor 处理时点与 kernel 对应的位置,默认对应 kernel 中心点
borderType 边界填充模式

调用 boxFilter 实现

Kernel Image

Reference

junxnone avatar Sep 20 '23 15:09 junxnone