Nearest Neighbor Interpolation
- May be implemented as 2-D FIR filter by H
- Alternate pixels may be skipped
/* v is the zoomed (interpolated) version of u */
v[m,n]=u[round(m/2),round(n/2)]
- Interpolation by pixel replication
- Computationally simple
- Aliasing