摘要:
//高斯滤波器 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... 阅读全文
摘要:
#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,... 阅读全文