Loading... ### 直接加运算 `img += 10` 每项rgb数值都加10,溢出部分会自动`% 255`处理 ### `cv2.add` `cv2.add(img, img1)`溢出部分将自动处理为255 ### `cv2.addaddWeighted` `cv2.addWeighted(src1, alpha, src2, beta, gamma[, dst[, dtype]]) → dst` * scr1, scr2:ndarray 多维数组,表示一个灰度或彩色图像 * alpha:第一张图像 scr1 的权重,通常取为 0~1 之间的浮点数 * beta:第二张图像 scr2 的权重,通常取为 0~1 之间的浮点数 * gamma: 灰度系数,图像校正的偏移量,用于调节亮度 * dtype 输出图像的深度,即每个像素值的位数,可选项,默认等于 src1.depth() * retrun:dst,加权加法运算结果的图像数组 ![image.png](https://mioe-xyz.oss-cn-shanghai.aliyuncs.com/usr/uploads/2022/09/3016520072.png) Last modification:September 25, 2022 © Allow specification reprint Like 0 如果觉得我的文章对你有用,请随意赞赏
Comment here is closed