(21)Laplance

Posted xiaoyoucai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(21)Laplance相关的知识,希望对你有一定的参考价值。

这个算法还是用来进行边缘检测的

===============================

 

 1 #include <opencv2/opencv.hpp>
 2 #include <iostream>
 3 using namespace std;
 4 using namespace cv;
 5 
 6 Mat src, dst, gray_src;
 7 
 8 int main(int agrc, char** agrv) {
 9 
10     src = imread("C:\\Users\\32829\\Desktop\\aa.jpg");
11     if (!src.data) {
12         printf("no load..
");
13         return -1;
14     }
15     const char* input_win = "input";
16     const char* out_put = "out_put";
17     namedWindow(input_win, CV_WINDOW_AUTOSIZE);
18     namedWindow(out_put, CV_WINDOW_AUTOSIZE);
19     imshow(input_win, src);
20     GaussianBlur(src, dst, Size(3, 3), 0, 0);
21     cvtColor(dst, gray_src, CV_BGR2GRAY);
22     Mat edge_image;
23     Laplacian(gray_src, edge_image, CV_16S, 3);
24     convertScaleAbs(edge_image, edge_image);
25     threshold(edge_image, edge_image, 0, 255, THRESH_OTSU | THRESH_BINARY);
26     imshow(out_put, edge_image);
27 
28     waitKey(0);
29     return 0;
30 }

 

=============================

技术分享图片

 

以上是关于(21)Laplance的主要内容,如果未能解决你的问题,请参考以下文章

21个常用代码片段

14.VisualVM使用详解15.VisualVM堆查看器使用的内存不足19.class文件--文件结构--魔数20.文件结构--常量池21.文件结构访问标志(2个字节)22.类加载机制概(代码片段

片段中的 Asynctask 未到达 onPostExecute

C 中的共享内存代码片段

Eclipse 中的通用代码片段或模板

重新创建片段布局