opencv之图像锐化

#include
#include
#include
using namespace std;
using namespace cv;
int main()
{
	
	 const char* imagename = "C://Users//huashuo111//Desktop//test2.bmp";
     //从文件中读入图像
     Mat img = imread(imagename);
     //如果读入图像失败
     if(img.empty())
     {
         fprintf(stderr, "Can not load image %s\n", imagename);
         return-1;
     }
	Mat dst;
	Sobel(img,dst,-1,1,1);
        //Laplacian(img,dst,-1);
	imshow("Sobel",dst);
	imshow("原图",img);
	
	

	imwrite( "C://Users//huashuo111//Desktop//Soble.bmp",img);
	
     //此函数等待按键,按键盘任意键就返回
     waitKey();
     return 0;
}

原图:

opencv之图像锐化_第1张图片

Sobel算子边缘检测:

opencv之图像锐化_第2张图片


Laplace:

opencv之图像锐化_第3张图片

你可能感兴趣的:(opencv)