图像锐化(拉普拉斯算子):
将一副图像减去经过拉普拉斯滤波滞后的图像,这幅图像的边缘部分将得到放大,计算公式如下:
滤波后的像素值=5*中-左-右-上-下:
/**
* @file 2_6.cpp
* @Synopsis 图像锐化,拉普拉斯算子
* @author weih.cao
* @version 1.0.0.0
* @date 2013-12-10
*/
#include<opencv2/core/core.hpp>
#include<opencv2/imgproc/imgproc.hpp>
#include<opencv2/highgui/highgui.hpp>
/* ---------------------