Aliasing and Anti-Aliasing Flashcards

1
Q

How is aliasing caused?

A

Aliasing is caused by taking samples at too low a frequency?

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What rate do we sample above to reconstruct a signal correctly?

A

The Nyquist rate, if the frequency of the signal is f, samples must be taken at least 2f

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What happens to an image if it’s sampled more?

A

It becomes more accurate.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is unweighted sampling?

A

We measure the area of coverage of the line of the pixel and set that percentage to the colour of the foreground over the background

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the benefit of unweighted sampling?

A

Smooth transition from on to off

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the disadvantage of unweighted sampling?

A

Hard to compute.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is super-sampling?

A

More sampling per pixels. Samples are subdivided into sub-pixels and compared

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What does super-sampling do for ray-tracing?

A

Trace more rays per pixel

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the disadvantage of super-sampling?

A

More computation needed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the advantage of super-sampling?

A

Better image quality

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is adaptive aliasing?

A

Find the pixels on edges and do more samples per pixel there instead of non-edges.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the process of adaptive super-sampling?

A
  • Sample scene at each pixel corner
  • If the 4 samples vary by more then the current threshold
    -Take 5 more samples to create 4 subpixels
  • Recursively repeat this process on each of the subpixels until the samples are less than the current threshold or a limit has been reached
  • Average all the samples for the anti-aliased result
How well did you know this?
1
Not at all
2
3
4
5
Perfectly