摘要:
#include<opencv2/core/core.hpp> #include<opencv2/highgui/highgui.hpp> #include<opencv2/imgproc/imgproc.hpp> using namespace std; using namespace cv; Mat I;//输入的图像矩阵 Mat F;//图像的快速傅里叶变换 Point maxLoc;//傅 阅读全文
摘要:
1 #include<opencv2/opencv.hpp> 2 #include<iostream> 3 using namespace std ; 4 using namespace cv ; 5 Mat gaussianlbrf( Mat scr, float sigma);//高斯低通滤波器函数 6 Mat freqfilt( Mat scr, Mat blur);//频率域滤波函数 7 阅读全文