Skip to content

Instantly share code, notes, and snippets.

@masazdream
Last active December 28, 2015 15:49
Show Gist options
  • Select an option

  • Save masazdream/7524573 to your computer and use it in GitHub Desktop.

Select an option

Save masazdream/7524573 to your computer and use it in GitHub Desktop.
opencv dft sample
Mat padded;
int m = getOptimalDFTSize( I.rows ); ← I に元画像をimreadしてください
int n = getOptimalDFTSize( I.cols );
copyMakeBorder(I, padded, 0, m - I.rows, 0, n - I.cols, BORDER_CONSTANT, Scalar::all(0));
Mat planes[] = {Mat_<float>(padded), Mat::zeros(padded.size(), CV_32F)};
Mat complexI;
merge(planes, 2, complexI);
dft(complexI, complexI);
split(complexI, planes);
magnitude(planes[0], planes[1], planes[0]);
Mat magI = planes[0];
magI += Scalar::all(1);
log(magI, magI);
magI = magI(Rect(0, 0, magI.cols & -2, magI.rows & -2));
int cx = magI.cols/2;
int cy = magI.rows/2;
Mat q0(magI, Rect(0, 0, cx, cy));
Mat q1(magI, Rect(cx, 0, cx, cy));
Mat q2(magI, Rect(0, cy, cx, cy));
Mat q3(magI, Rect(cx, cy, cx, cy));
Mat tmp;
q0.copyTo(tmp);
q3.copyTo(q0);
tmp.copyTo(q3);
q1.copyTo(tmp);
q2.copyTo(q1);
tmp.copyTo(q2);
normalize(magI, magI, 0, 1, CV_MINMAX);
imshow("Input Image" , I );
imshow("spectrum magnitude", magI); ←ここで表示される画像に、ボケと正常で分類出来そうな変化が無いかどうか?
waitKey();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment