Skip to content
Snippets Groups Projects
Commit f3be0bdc authored by Sacha Percot-Tétu's avatar Sacha Percot-Tétu
Browse files

Corrected a tiny bug in FFTOp

parent 1d4a7637
No related branches found
No related tags found
No related merge requests found
......@@ -53,7 +53,7 @@ void FFTOp::operator()(const imagein::Image* image, const map<const imagein::Ima
}
}
for(unsigned int j = image->getHeight(); j < height; ++j) {
for(unsigned int i = image->getWidth(); i < height; ++i) {
for(unsigned int i = image->getWidth(); i < width; ++i) {
data[i][j] = 0;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment