概述
#include<iostream>
#include<opencv2/highgui/highgui.hpp>
#include<opencv2/imgproc/imgproc.hpp>
using namespace std;
using namespace cv;
char* window_name = "Laplace Demo";
Mat src, src_gray, dst;
int kernel_size = 3, scale = 1, delta = 0, ddepth = CV_16S;
int main()
{
src = imread("哆啦A梦.jpg");
if (!src.data)
{
return -1;
}
imshow("哆啦A梦", src);
namedWindow(window_name);
GaussianBlur(src, src, Size(3, 3), 0, 0, BORDER_DEFAULT);
cvtColor(src, src_gray, CV_BGR2GRAY);
Mat abs_dst;
Laplacian(src_gray, dst, ddepth, kernel_size, scale, delta, BORDER_DEFAULT);
convertScaleAbs(dst, abs_dst);
imshow(window_name, abs_dst);
waitKey(0);
return 0;
}
最后
以上就是要减肥万宝路为你收集整理的C++版OpenCV·第十二集:拉普拉斯算子的全部内容,希望文章能够帮你解决C++版OpenCV·第十二集:拉普拉斯算子所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复