We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Had anyone used fftw to replace dft experience? thanks for help.
The text was updated successfully, but these errors were encountered:
I am writing some test code here: ComplexMat KCF_Tracker::fft2(const cv::Mat &input) { ... cv:Mat input_8U; cv:Mat input_32F;
input.convertTo(input_32F, CV_32F); // first input.convertTo(input_8U, CV_8U); input_8U.convertTo(input_32F, CV_32F); // second ...
} the first input_32F will equals the input, but the second input_32F won't equals input.
Because I need the correct input convert into CV_8U for my fftw's input, what should I do.
@vojirt
Sorry, something went wrong.
Do you figure out how to do it?
No branches or pull requests
Had anyone used fftw to replace dft experience?
thanks for help.
The text was updated successfully, but these errors were encountered: