视觉处理常用的一些概念和微小算法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了视觉处理常用的一些概念和微小算法相关的知识,希望对你有一定的参考价值。

~ false positives 虚警率

~ false negative 漏检率

~ recall 检出率/查全率

~ precision 正确率

~ intergral images 积分帧(算法),该算法能够快速算出区块的灰度和

An integral image helps you rapidly calculate summations over image subregions. Every pixel in an integral image is the summation of the pixels above and to the left of it.

技术分享

To calculate the summation of a subregion of an image, you can use the corresponding region of its integral image. For example, in the input image below, the summation of the shaded region becomes a simple calculation using four reference values of the rectangular region in the corresponding integral image. The calculation becomes, 46 – 22 – 20 + 10 = 14. The calculation subtracts the regions above and to the left of the shaded region. The area of overlap is added back to compensate for the double subtraction.

技术分享

In this way, you can calculate summations in rectangular regions rapidly, irrespective of the filter size.


以上是关于视觉处理常用的一些概念和微小算法的主要内容,如果未能解决你的问题,请参考以下文章

一些常用的机器学习算法实现

OpenCV3学习笔记整理(一期)

OpenCV+3计算机视觉++Python语言实现+第二版pdf

人工智能领域的一些基本概念

常用特征检测算法SURFSIFTORB和FAST

机器学习中的一些概念