Representing Images Flashcards

1
Q

What is the RGB colour model?

A
  • three numbers
  • representing the amounts of red, green and blue present
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the range of numbers for the RGB model?

A

0-255

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

What is the colour code for red?

A

255,0,0

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

What is the colour code for white?

A

255,255,255

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

What is the colour code for blue?

A

0,0,255

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

What is the colour code for orange?

A

255,165,0

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

What is the colour code for black?

A

0,0,0

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

What is the colour code for green?

A

0,255,0

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

What is the colour code for yellow?

A

255,255,0

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

What is the colour code for purple?

A

128,0,128

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

What is the CMYK model?

A

Cyan, Magenta, Yellow and Black

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

When and how is the CMYK model used?

A
  • Colour printers
  • Starts with white and removes components
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is the HSL and YUV colour model?

A
  • Hue, Saturation, Luminance
  • Luminance, Blue, Red
  • mapped better to how the human brain can understand
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How many different colours can we have with the RGB model?

A

256 x 256 x 256
- 16 million colours

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

What do we use to represent RRGGBB?

A

hexadecimals

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

What are the 4 ways in digitized images and graphics?

A
  1. Pixel
  2. Resolution
  3. Vector graphics
  4. Rater-graphics
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

What are pixels?

A
  • Picture element
  • Each pixel is a single colour
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

What is resolution

A
  • Number of pixels in an image
19
Q

The size of an image is measured in what?

20
Q

Pixel density is another way of saying what?

A

resolution

21
Q

What is vector graphics?

A
  • an image that is defined by using mathematical equations to represent lines, curves, and polygons
22
Q

Can vector graphics be enlarged without losing detail or changing file size?

23
Q

What is SVG?

A

scalable vector graphics

24
Q

SVG files are _____-based?

A

text-based

25
What is the smallest unit of a digital image?
pixel
26
What is the advantage of vector graphics?
to never suffer from pixelization
27
What is Raster graphics?
An image that is comprised of a matrix of pixels - images created/edited using painting applications
28
What is the consequence of rester graphics?
suffer from pixelization
29
What is indexed image compression?
Only saving the colours needed and using keyword encoding, but for colour instead
30
What are the 3 types of image formating?
1. GIF 2. PNG 3. JPEG
31
Is GIF lossless or lossy?
lossless
32
Is PNG lossless or lossy?
lossless
33
Is JPEG lossless or lossy?
lossy
34
What is a GIF?
Graphics Interchange Format
35
What are the 4 attributes of GIF?
1. Coding related to Huffman's 2. Compression ratio of 10% 3. Indexed colours with a maximum of 256 4. Allows for transparency and animation
36
What are the 4 attributes of PNG?
1. indexdd colours 2. coding related to run-length 3. Compression ratio of 7% 4. more modern
37
What are PNG?
Portable Network Graphics
38
What are PNG and GIF best used for?
- line drawings - logos - diagrams
39
What is a consequence of PNG?
too large lossless
40
What is a consequence of GIF?
low quality 256 colours
41
What is JPEG?
Joint Photographic Experts Group
42
What is the JPEG compression ratio?
1-10% depending on quality
43
What is the lossy compression technique for JPEG?
- Divide the entire image into blocks of 8 x 8 FOR EACH BLOCK - store the avg intensity FOR EACH PIXEL IN SED BLOCK - store the difference between each pixel's intensity and the avg intensity of the block
44
True or False In lossy image compression, the differences smaller than a threshold are ignored
True