#include <dwt.hh>
Static Public Member Functions | |
template<class I, class K> | |
static void | doit (abstract::image< I > &im, typename mlc::exact< I >::ret::point_type &p, const unsigned l1, const unsigned l2, const K &coeffs, dwt_transform_dir_ d) |
Iterate over all dimensions except one. |
dim | Number of dimension to process. | |
skip | Dimension to skip. |
Definition at line 356 of file dwt.hh.
static void oln::internal::dim_iterate_rec_< dim, skip >::doit | ( | abstract::image< I > & | im, | |
typename mlc::exact< I >::ret::point_type & | p, | |||
const unsigned | l1, | |||
const unsigned | l2, | |||
const K & | coeffs, | |||
dwt_transform_dir_ | d | |||
) | [inline, static] |
Iterate over all dimensions except one.
I | Exact type of the image to process. | |
K | Type of coefficients. |
Definition at line 365 of file dwt.hh.
00371 { 00372 dim_skip_iterate_rec_<dim, skip>::doit(im, p, l1, l2, coeffs, d); 00373 dim_iterate_rec_<dim, skip - 1>::doit(im, p, l1, l2, coeffs, d); 00374 }