Skip to content
Snippets Groups Projects
Commit 74f56b4a authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

remap_bicubic: use remap_set_mask().

parent 3321a174
No related branches found
No related tags found
No related merge requests found
......@@ -291,6 +291,11 @@ remap_set_mask(size_t gridsize, const Varray<T> &v, T missval, Varray<short> &ma
}
}
// Explicit instantiation
template void remap_set_mask(size_t gridsize, const Varray<float> &v, float missval, Varray<short> &mask);
template void remap_set_mask(size_t gridsize, const Varray<double> &v, double missval, Varray<short> &mask);
// This routine computes and apply the weights for a bilinear interpolation.
template <typename T>
static void
......
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