opencv 6 --cv2.absdiff

Posted wust小吴

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了opencv 6 --cv2.absdiff相关的知识,希望对你有一定的参考价值。

absdiff 获取差分图 就是将两幅图像作差

cv2.absdiff(src1,src2,[dst])

src1 The first source array

src2 The second source array
dst The destination array

The function calculates absolute difference between two arrays.
dst(i)c = |src1(I)c − src2(I)c |
All the arrays must have the same data type and the same size (or ROI size).

两张图片进行对比,返回的结果代表他们的差异之处

一般用在 比较与背景图的差异

diff = cv2.absdiff(background, gray_lwpCV)

两个图片相减,这里用的是灰度图,类型是uint8

在 OpenCV单通道使用的数据类型是 uint8,

两个uint8的数相减得不到负数,会得到差的补码

以上是关于opencv 6 --cv2.absdiff的主要内容,如果未能解决你的问题,请参考以下文章

Opencv python背景减法和运动跟踪

OpenCV版本4.1.0 drawContours

Visual c++ 6.0配置OpenCV开发环境

2-6 Opencv模块组织结构

2opencv2.4.13.6安装

opencv-6-图像绘制与opencv Line 函数剖析