void boxFilter(const Mat& src, Mat& dst,int ddepth,Size ksize,Point anchor=Point(-, -),bool normalize=true,int borderType=BORDER_DEFAULT)

Smoothes image using box filter

Parameters:
  • src – The source image
  • dst – The destination image; willhave the same size and the same type as src
  • ksize – The smoothing kernelsize
  • anchor – The anchor point. Thedefault value Point(-1,-1) means that theanchor is at the kernel center
  • normalize – Indicates, whetherthe kernel is normalized by its area or not
  • borderType – The border mode usedto extrapolate pixels outside of the image

The function smoothes the image using the kernel:

where

    

Unnormalized box filter is useful for computing various integralcharacteristics over each pixel neighborhood, such as covariationmatrices of image derivatives (used in dense optical flowalgorithms, etc.). If you need to compute pixel sums overvariable-size windows, use integral().

See also: boxFilter(),bilateralFilter(),GaussianBlur(),medianBlur(),integral().

最新文章

  1. maven集成tomcat插件以及乱码解决
  2. 【VC++技术杂谈008】使用zlib解压zip压缩文件
  3. GbkToUtf8 Utf8ToGbk PackHttp
  4. http协议与网页优化泛谈
  5. 在网页中插入MSN,Skype,QQ的方法
  6. Linux的文件权限
  7. HDU 1142 A Walk Through the Forest (记忆化搜索 最短路)
  8. 深入.NET框架 项目--魔兽登录系统
  9. LAMP平台搭建详解
  10. js-转大小写
  11. c++几个新特性
  12. [Linux] PHP程序员玩转Linux系列-telnet轻松使用邮箱
  13. 有關於USB保固
  14. 六、Spring Boot Controller使用
  15. [Python Study Notes]字典操作
  16. 实战:通过ViewModel规范TableView界面开发
  17. 在php中实现Redis的订阅与发布
  18. k8s集群安装
  19. python3 九九乘法表打印花式操作(然并卵)
  20. mysql timestamp字段定义的

热门文章

  1. try-catch 捕捉不到异常
  2. (1)python tkinter-窗体
  3. VIM 代码自动补全, YouCompleteMe安装及配置
  4. 6_5.springboot2.x数据整合springData JPA
  5. Censored! POJ - 1625 AC自动机+大数DP
  6. 2 _ 基本框架 _ 检测VMX环境
  7. MATLAB 去掉数组里面不要的元素
  8. Keywords Search HDU2222 AC自动机模板题
  9. 在js中使用Razor
  10. 四. (TDZ)展示性死区