在opencv中,addWeighted函数是按照图片各自的权重将2张图片融合为一张图片。
以下是使用方法:
int main() {
Mat img1 = imread("in.jpg", IMREAD_UNCHANGED);
Mat img2 = imread("in2.jpg", IMREAD_UNCHANGED);
Mat img3;
addWeighted(img1, 0.1, img2, 0.9, 0, img3);
imwrite("out.jpg", img3);
return 0;
}
下面是简单的一个demo 验证下 addWeighted 的内部实现。
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <linux/videodev2.h>
#include <string.h>
#include <sys/mman.h>
#include <assert.h>
#include <opencv2/opencv.hpp>
#include <opencv2/core.hpp>
#include <opencv2/imgcodecs.hpp>
#include <opencv2/highgui.hpp>
using namespace std;
using namespace cv;
typedef cv::Point3_<uint8_t> Pixel;
int main() {
Mat img1(10, 10, CV_8UC3, Scalar(10, 10, 255));
Mat img2(10, 10, CV_8UC3, Scalar(255, 25, 40));
Mat img3;
addWeighted(img1, 0.1, img2, 0.9, 0, img3);
int x, y, z;
x = (int) (10 * 0.1 + 255 * 0.9);
y = (int) (10 * 0.1 + 25 * 0.9);
z = (int) (255 * 0.1 + 40 * 0.9);
for (Pixel p : cv::Mat_<Pixel>(img3)) {
printf("%d\n", x);
printf("%d\n", y);
printf("%d\n", z);
printf("%d\n", p.x);
printf("%d\n", p.y);
printf("%d\n", p.z);
}
imwrite("out.jpg", img3);
return 0;
}