摘要: //高斯滤波器 https://github.com/scutlzk#include #include #include using namespace cv; using namespace std; void Get_Gaussian_Kernel(double*& gaus_1, const int size, const double sigma_s) { gaus_1... 阅读全文
posted @ 2017-11-27 23:32 ff_d 阅读(666) 评论(0) 推荐(0) 编辑
摘要: #include #include #include using namespace cv; using namespace std; void gaussianFilter2(vector corrupted, vector &smooth, int width, int height) { int templates[25] = { 1, 4, 7, 4, 1, 4, 16,... 阅读全文
posted @ 2017-11-27 23:30 ff_d 阅读(671) 评论(0) 推荐(0) 编辑