Age | Commit message (Collapse) | Author | Files | Lines |
|
Reorder the indices and introduce a couple of temporary accumulators to
improve cache access.
|
|
Currently the convolution code uses the formula 2*(N-1)-n to reflect the index
n when n is greater than or equal to N.
This is wrong as n=N -> 2*(N-1)-N = N-2 instead of N-1.
Furthermore when the image is small, e.g. at the highest levels of the
pyramid, this causes the code to index before the start of the array and
causes valgrind to issue a warning.
|
|
This was a leak in the test suite only, (and then only when tests failed).
|
|
stupidly broken
|
|
The only things we had missed were a few new/delete pairs, and some
obvious header file fixups, (like not doing <string>).
|