#include "mexLog.h"#include "Image.h"#include "Filters.h"#include <algorithm>#include <cmath>#include <limits>

Go to the source code of this file.
Functions | |
| Image | lowPass6yDecY (const Image &src) |
| Low-pass with a 6x6 separable kernel in Y and decimate in Y by factor 2. | |
| Image | lowPass6xDecX (const Image &src) |
| Low-pass with a 6x6 separable kernel in X and decimate in X by factor 2. | |
| Image | conv2PreserveEnergy (const Image &src, const Image &f) |
| 2d convolution that avoids bleeding energy over the edge. | |
Definition in file Filters.cpp.
2d convolution that avoids bleeding energy over the edge.
Definition at line 168 of file Filters.cpp.
References ASSERT, Image::begin(), Image::beginw(), ecx, ecxStr, Image::getHeight(), Image::getWidth(), and Image::isInitialized().
Referenced by mexFunction().

Low-pass with a 6x6 separable kernel in X and decimate in X by factor 2.
Definition at line 90 of file Filters.cpp.
References ASSERT, Image::begin(), Image::beginw(), ecx, ecxStr, Image::getHeight(), and Image::getWidth().
Referenced by mexFunction().

Low-pass with a 6x6 separable kernel in Y and decimate in Y by factor 2.
Definition at line 20 of file Filters.cpp.
References ASSERT, Image::begin(), Image::beginw(), ecx, ecxStr, Image::getHeight(), and Image::getWidth().
Referenced by mexFunction().

1.5.6