void resize_clobber_image(Img& img, const typename Img::x_coord_t& width, const typename Img::y_coord_t& height) { img.recreate(width,height); }
void resize_clobber_image(Img& img, const typename Img::point_t& new_dims) { img.recreate(new_dims); }