Approximation: The form factor from $i$ to $j$ can be approximated with the form factor from
$dA_i$ to patch $j$.
\[F_{dA_iA_j} = \int_{A_j} \frac{\cos \phi_i \phi_j}{\pi r^2} d_{A_j}\]
\[F_{ji}dA_j = F_{ij}dA_i $ \le 1 \quad \text{ for all } i,j\]
Hemicube
Delta form factor: The form factor on each pixel on the hemicube
Form factor: $F_{ij} = \sum_k F_k$ for each pixel $k$ covered by projection patch to $j$ on the hemicube.
Computing hemicube delta form factors:
Take the vector $v$ from bottom-center of hemicube to center of the pixel.
$r = \sqrt{\text{length}(v)}$
$\cos \phi_i = \text{norm}(v) \cdot (0, 0, 1)$
$\cos \phi_j = \text{norm}(v) \cdot \text{opposite of face direction }\pm x, \pm y, \pm z$
Compute area $\Delta A = \frac{2.0}{h} * \frac{2.0}{w}$
System of linear equations
From each patch’s radiosity equation $B_i = E_i + R_i \int_j B_j F_{ij}$, we can get a system of
$n$ linear equations that we can represent in a matrix.
Gaussian elimination $O(n^3)$ is inefficient
Iterative methods (Jacobi iteration/Gauss-Seidel) $O(kn^2)$ for $k$ iterations
Iterative methods to solve $Ax = E$
Iteratively compute the equation below for each iteration $k$.