Dithering Flashcards

1
Q

What is halftoning in the print industry?

A

Using different sized black circles to give the impression of tones

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

What intensity level can be displayed on nxn pixels (on a bi-level display)?

A

n^2 + 1

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

What is the pattern number equation?

A

p = min(floor(I*(n^2+1)), n^2)

I = scaled intensity

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

What is the rough algorithm for pattern Dithering?

A
  • get total scaled intensity
  • Find pattern template to use
  • Compare with nxn template
  • Set pixel white if p > template number
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the process of Ordered Dither?

A

-Get the pattern number for each pixel
-If pattern number is >= template number, set pixel to white

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

What is thresholding?

A

The process of turning a coloured image into a black and white image.

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

How does thresholding work?

A

Goes through every pixel and checks if it’s higher or lower than the threshold, if it’s lower set it to white else set it to black

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

What is the total intensity of an image?

A

Sum of each pixel colour intensity

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

What is the average intensity of an image?

A

The average of the total intensity

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

What is the error total?

A

The difference between the total intensity of the original image and new image

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

How does Floyd-Steinberg Error diffusion dithering work compared to normal error diffusion dithering?

A

Instead of passing 100% of the error to the next pixel, distribute it to the 4 “un-displayed” neighbours of the current pixel.

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

How do you get the total scaled intensity of an image?

A
  • Calculate the total intensity
  • Calculate the average intensity
  • Total scaled intensity = average intensity/255
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is the advantage of thresholding?

A

Very fast to compute and easy to implement

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

What is the disadvantage of thresholding?

A

Very inaccurate

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

What is the advantage of error diffusion dithering over thresholding?

A

It creates a better representation of the image.

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

What is the disadvantage of error diffusion dithering?

A

There are more accurate techniques such as Floyd-Steinberg.

17
Q

What does the Floyd Steinberg dithering do with the error value?

A

Error is retained in a local area by distributing it to its neighbours