next up previous contents
Next: 10.6.0.2 Approximating Bump Mapping Up: 10.6 Bump Mapping with Previous: 10.6 Bump Mapping with   Contents

10.6.0.1 Bump Mapping

Bump mapping [9], like texture mapping, is a technique to add more realism to synthetic images without adding a lot of geometry. Texture mapping adds realism by attaching images to geometric surfaces. Bump mapping adds per-pixel surface relief shading, increasing the apparent complexity of the surface by perturbing the surface normal. Surfaces that have a patterned roughness are good candidates for bump mapping. Examples include oranges, strawberries, stucco, wood, etc.

An intuitive representation of surface bumpiness is formed by a 2D height field array, or bump map. This bump map is defined by the scalar difference $F(u,v)$ between the flat surface $P(u,v)$ and the desired bumpy surface $P'(u,v)$ along the normal $N$ at each point $u,v$. Typically the function $P$ is modeled separately as polygons or parametric patches and $F$ is modeled as a 2D image using a painting program or other image processing tool.

Rather than subdivide the surface $P'(u,v)$ into regions that are locally flat, observe that the shading perturbations on such a surface depend more on perturbations in the surface normal than on the position of the surface itself. A technique perturbing only the surface normal at shading time achieves similar results without the processing burden of subdividing geometry. (Note that this technique does not perturb shadows from other surfaces falling on the bumps or shadows from bumps on the same surface, so such shadows will retain their flat appearance.)

The normal vector $\vec{N'}$ at $u,v$ can be calculated by the cross product of the partial derivatives of $P'$ in $u$ and $v$. (The notational simplification $P'_{u}$ is used here to mean the partial derivative of $P'$ with respect to $u$, sometimes written $\frac{\partial P'}{\partial u}$.) The chain rule can be applied to the partial derivatives to yield the following expression of $P'_u$ $P'_v$ in terms of $P$, $F$, and derivatives of $F$:


\begin{displaymath}P'_u = P_u + F_u(\frac{N}{\vert N\vert}) + F \frac{\partial \frac{N}{\vert N\vert}}{\partial u}\end{displaymath}


\begin{displaymath}P'_v = P_v + F_v(\frac{N}{\vert N\vert}) + F \frac{\partial \frac{N}{\vert N\vert}}{\partial v}\end{displaymath}

If $F$ is assumed to be sufficiently small, the final terms of each of the previous expressions can be approximated by zero:


\begin{displaymath}P'_u =~ P_u + F_u(\frac{N}{\vert N\vert})\end{displaymath}


\begin{displaymath}P'_v =~ P_v + F_v(\frac{N}{\vert N\vert})\end{displaymath}

Expanding the cross product $P'_v \times P'_u$ gives the following expression for $N'$:


\begin{displaymath}N' = (P_u + F_u(\frac{N}{\vert N\vert})) \times (P_v + F_v(\frac{N}{\vert N\vert}))\end{displaymath}

Which evaluates to:


\begin{displaymath}N' = P_u \times P_v + \frac{F_u(N \times P_v)}{\vert N\vert} ...
...u)}{\vert N\vert} + \frac{F_u F_v (N \times N)}{\vert N\vert^2}\end{displaymath}

Because $P_u \times P_v$ yields the normal $N$ and $N \times N$ yields 0, we can further simplify the expression for $N'$ as follows:


\begin{displaymath}N' = N + \frac{F_u(N \times P_v)}{\vert N\vert} + \frac{F_v(N \times P_u)}{\vert N\vert}\end{displaymath}

The values $F_u$ and $F_v$ are easily computed through forward differencing from the 2D bump map, and $P_u$ and $P_v$ can be computed either directly from the surface definition or from forward differencing applied to the surface parameterization.


next up previous contents
Next: 10.6.0.2 Approximating Bump Mapping Up: 10.6 Bump Mapping with Previous: 10.6 Bump Mapping with   Contents
2001-01-10