资 源 简 介
#include#includeusing namespace cv;using namespace std;int main() {Mat src1, src2, dst;src1 = imread("D:/ps/one.jpg");if (!src1.data) {cout << "could not found the image" << endl;return -1;}src2 = imread("D:/ps/two.jpg");if (!src2.data) {cout << "could not found the image" << endl;return -1;}double alpha = 0.39;