MedicalVisualization

Maximum Intensity Projection

View-Aligned Planes | | MIP Example

The so called “Maximum Intensity Projektion” determines for each viewing ray the maximum of the occuring emissions (not observable in reality).

Using Ray-Casting:

Sampling the volume along each viewing ray r(s) parametrized by the viewing distance s.
For each sampling step: $I'=max(V(r(s)),I)$.

Using View Aligned Slices:

Simulate the MIP by rendering each slice with maximum blend function:
$RGB_{frame}' = max(RGB_{fragment},RGB_{frame})$

glBlendFunc(GL_ONE,GL_ONE);
glBlendEquation(GL_MAX_EXT);
glEnable(GL_BLEND);

Note: MIP is order independent.

View-Aligned Planes | | MIP Example

Options: