You are viewing the course site for a past offering of this course. The current offering may be found here.
Lecture 5: Texture Mapping (71)
UncooleBen

Image resampling is for texture magnification, whereas mipmap level resampling is for texture minification. The slide implies that we can use the combination of these two methods. How can we magnify and minify a texture at the same time?

Stafftancik

@UncooleBen Image resampling is not just for texture magnification, rather it is the method used for sampling an off-grid point from a grid of texture values. We can either take texture value that is nearest to the query point (Nearest) or interpolate near points (eg Bilinear interpolation). This operation is both necessary for texture magnification and for sampling values from a mipmap.

You must be enrolled in the course to comment