- Practical Computer Vision
- Abhinav Dadhich
- 209字
- 2021-06-30 18:54:50
Properties of linear filters
Several computer vision applications are composed of step by step transformations of an input photo to output. This is easily done due to several properties associated with a common type of filters, that is, linear filters:
- The linear filters are commutative such that we can perform multiplication operations on filters in any order and the result still remains the same:
a * b = b * a
- They are associative in nature, which means the order of applying the filter does not effect the outcome:
(a * b) * c = a * (b * c)
- Even in cases of summing two filters, we can perform the first summation and then apply the filter, or we can also individually apply the filter and then sum the results. The overall outcome still remains the same:
b = (k+l) * a
- Applying a scaling factor to one filter and multiplying to another filter is equivalent to first multiplying both filters and then applying scaling factor
These properties play a significant role later, when we look at computer vision tasks such as object detection, segmentation, and so on. A suitable combination of these filters enhances the quality of information extraction and as a result, improves the accuracy.
推薦閱讀
- 腦動力:Linux指令速查效率手冊
- Hands-On Machine Learning on Google Cloud Platform
- 程序設計缺陷分析與實踐
- JMAG電機電磁仿真分析與實例解析
- 統(tǒng)計策略搜索強化學習方法及應用
- Supervised Machine Learning with Python
- 運動控制器與交流伺服系統(tǒng)的調試和應用
- Photoshop行業(yè)應用基礎
- 單片機技能與實訓
- 在實戰(zhàn)中成長:C++開發(fā)之路
- 一步步寫嵌入式操作系統(tǒng)
- 電氣控制及Micro800 PLC程序設計
- Intel Edison Projects
- 工業(yè)控制系統(tǒng)安全
- OSGi原理與最佳實踐