what is Projective Aliasing

Started by
0 comments, last by Krohm 10 years, 1 month ago
These days I read same paper about shadow map.When i am reading the paper "Common Techniques to Improve Shadow Depth Maps"(http://msdn.microsoft.com/zh-cn/library/ee416324%28en-us,VS.85%29.aspx).I can't understand what is Projective Aliasing,why this happen ??
Please help.Thanks.

Advertisement

Consider a projector pointing perpendicular to a plane. Its projected area will be a square, or perhaps a rectangle. Depending on the distance between the projector and the plane (and the projector matrices) the resulting image to project will have to be minified or magnified.

Ideally, we want to keep the pixel mapping 1:1.

Now, move the projector away from the plane (keeping the camera in place)

What happens is that the projected texture (the problem is not shadow-map-specific) will have to cover increasingly more pixels of your viewport / plane. When the texture has to me magnified, you have projective aliasing because the distance between adjacent pixels "on the screen" once mapped to the projected texture are more distant than 1 texel.

In other terms, 1 projected texel ends up bigger than 1 pixel (or the defined threshold).

In general, perspective aliasing is discussed when considering oblique frustum but I don't think it's necessary.

Previously "Krohm"

This topic is closed to new replies.

Advertisement