美文网首页
2019-07-13(day035_addWeighted():

2019-07-13(day035_addWeighted():

作者: 雨住多一横 | 来源:发表于2019-07-13 09:57 被阅读0次

c++

#include"all.h"
using namespace std;
using namespace cv;
void MyClass::day035() {
    Mat img = read(PATH + "images\\test.jpg"), blured, dst;
    GaussianBlur(img, blured, Size(0, 0), 25);
    addWeighted(img, 1.5, blured, -0.5, 0, dst);
    imshow("usm_sharp", dst);
    waitKey(0);
}

c++中新知识点:
addWeighted():加权求和两张图片

相关文章

网友评论

      本文标题:2019-07-13(day035_addWeighted():

      本文链接:https://www.haomeiwen.com/subject/vbrpkctx.html