Mean shift filter
目录
一、算法原理
在OpenCV中,meanshift filter函数为 pyrMeanShiftFiltering, 它的函数调用格式如下:
C++: void pyrMeanShiftFiltering(InputArray src, OutputArray dst, double sp, double sr, int maxLevel=1, TermCriteriatermcrit=TermCriteria( TermCriteria::MAX_ITER+TermCriteria::EPS,5,1) )
Parameters:
- src – The source 8-bit, 3-channel image. //三通道的输入图像
- dst – The destination image of the same format and the same size as the source. //相同尺寸格式输出图像
订阅专栏 解锁全文

1661

被折叠的 条评论
为什么被折叠?



