Functions
contrib/mul/vimt/vimt_sample_grid_bicub.h File Reference

Bicubic grid sampling functions for 2D images. More...

#include <vimt/vimt_image_2d_of.h>
#include <vnl/vnl_fwd.h>
#include <vgl/vgl_fwd.h>

Go to the source code of this file.

Functions

template<class imType , class vecType >
void vimt_sample_grid_bicub (vnl_vector< vecType > &vec, const vimt_image_2d_of< imType > &image, const vgl_point_2d< double > &p, const vgl_vector_2d< double > &u, const vgl_vector_2d< double > &v, int n1, int n2)
 Sample grid from image, using bicubic interpolation.

Detailed Description

Bicubic grid sampling functions for 2D images.

Author:
Tim Cootes
    Modifications
     Matt Leotta   4/16/03   Copied vimt_sample_grid_bilin to make this
   

Definition in file vimt_sample_grid_bicub.h.


Function Documentation

template<class imType , class vecType >
void vimt_sample_grid_bicub ( vnl_vector< vecType > &  vec,
const vimt_image_2d_of< imType > &  image,
const vgl_point_2d< double > &  p0,
const vgl_vector_2d< double > &  u,
const vgl_vector_2d< double > &  v,
int  n1,
int  n2 
)

Sample grid from image, using bicubic interpolation.

Grid points are p+i.u+j.v where i=[0..n1-1], j=[0..n2-1] Vector vec is resized to n1*n2*np elements, where np=image.nplanes(). vec[0]..vec[np-1] are the values from point p Samples are taken along direction v first, then along u. Points outside image return zero.

Grid points are p+i.u+j.v where i=[0..n1-1], j=[0..n2-1] Vector vec is resized to n1*n2*np elements, where np=image.nplanes(). vec[0]..vec[np-1] are the values from point p0 Samples are taken along direction v first, then along u. Points outside image return zero.

Definition at line 34 of file vimt_sample_grid_bicub.txx.