Temporal anti-aliasing


Temporal anti-aliasing seeks to reduce or remove the effects of temporal aliasing. Temporal aliasing is caused by the sampling rate of a scene being too low compared to the transformation speed of objects inside of the scene; this causes objects to appear to jump or appear at a location instead of giving the impression of smoothly moving towards them. To avoid aliasing artifacts altogether, the sampling rate of a scene must be at least twice as high as the fastest moving object. The shutter behavior of the sampling system strongly influences aliasing, as the overall shape of the exposure over time determines the band-limiting of the system before sampling, an important factor in aliasing. A temporal anti-aliasing filter can be applied to a camera to achieve better band-limiting. A common example of temporal aliasing in film is the appearance of vehicle wheels travelling backwards, the so-called wagon-wheel effect. Temporal anti-aliasing can also help to reduce jaggies, making images appear softer.

In cel animation

In cel animation, animators can either add motion lines or create an object trail to give the impression of movement. To solve the wagon-wheel effect without changing the sampling rate or wheel speed, animators could add a broken or discolored spoke to force viewer's visual system to make the correct connections between frames.

In computer generated imagery

To perform anti-aliasing in computer graphics, the anti-aliasing system requires a key piece of information: which objects cover specific pixels at any given time in the animation.
One approach used is to derive a high resolution
temporal intensity function from object attributes which can then be convolved with
an averaging filter to compute the final anti-aliased image.
In this approach, there are two methods available for computing the temporal intensity function.
The first method being to compute the position of each object as a continuous function and then
using the function to determine which pixels are covered by this object in the scene. The second
method can use traditional rendering techniques to supersample the moving scene and determine a
discrete approximation of object position.
One algorithm proposed for computing the temporal intensity function is:

For each image frame:
For each object in the frame:
Calculate the temporal transformation function for each dynamic attribute
Determine the areas the object covers during the filtered interval
For each pixel:
Determine which objects are covering this pixel at some time in the sampled interval
Determine the subintervals of time during which each object projects onto this pixel
Perform hidden surface removal by removing subintervals of occluded objects
Determine pixel intensity function based on the remaining subintervals and the object's temporal transformation function
Filter resulting pixel intensity function

Note: The "temporal transformation function" in the above algorithm is simply the function mapping the change of a dynamic attribute.
In the cases where either object attributes are either not explicitly defined or are too complex for efficient analysis, interpolation between the sampled values may be used. To obtain results closest to the source data, B-splines can be used to interpolate the attributes. In cases where speed is a major concern, linear interpolation may be a better choice.
Temporal anti-aliasing can be applied in image space for simple objects but more complex polygons could require some or all calculations for the above algorithm to be performed in object space.
In spatial anti-aliasing it is possible to determine the image intensity function by supersampling.
Supersampling is also a valid approach to use in temporal anti-aliasing; the animation system can generate multiple pixel intensity buffers for a single output frame.
The primary advantage of supersampling is that it will work with any image, independent of what objects are displayed or rendering system is used.