CH4 Rasterization & Raster Graphics Flashcards

(42 cards)

1
Q

What are raster graphics?

A

Images created by a grid of individual pixels, each with its own color value.

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

Name common file formats for raster graphics.

A
  • BMP
  • JPEG
  • PNG
  • GIF
  • TIFF
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a key characteristic of raster graphics?

A

Fixed resolution; scaling can lead to loss of quality (pixelation).

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

Define a pixel.

A

The smallest individual element of an image displayed on a screen, representing a single point of color.

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

How is the resolution of a raster image defined?

A

By its width (in pixels) and height (in pixels).

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

What is rasterization?

A

The process of converting geometric shapes into a raster image made up of pixels.

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

What is the first stage in the rasterization process?

A

Vertex Processing.

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

What happens during primitive assembly in rasterization?

A

Vertices are assembled into primitives (triangles, lines, etc.) required for rendering.

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

What is the role of the framebuffer in rasterization?

A

It stores the final colors, which hold pixel values ready for display on the screen.

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

What does Bresenham’s Line Algorithm do?

A

Efficiently determines pixel positions for drawing straight lines based on their endpoints.

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

What is the Midpoint Circle Algorithm used for?

A

Efficiently calculates pixel locations for rasterizing circles by leveraging symmetry.

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

What is Z-buffering?

A

A depth-sorting method that manages depth information for pixels to ensure correct object display.

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

List advantages of raster graphics.

A
  • Capability to represent complex images with fine detail.
  • Flexibility in editing pixel data.
  • Wide compatibility with software for image manipulation.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

List disadvantages of raster graphics.

A
  • Resampling quality loss when scaling.
  • Larger file sizes than vector graphics.
  • Memory-intensive when using high-resolution images.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What are common applications of raster graphics?

A
  • Digital Photography
  • Graphic Design
  • Web Graphics
  • Video Games
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How do raster graphics differ from vector graphics?

A

Raster graphics are composed of pixels, while vector graphics are composed of mathematical paths and shapes.

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

What is a key conclusion about rasterization?

A

It is a fundamental process that enables the rendering of complex images in computer graphics.

18
Q

What is the first step in rasterizing a triangle?

A

Define the Triangle’s Vertices.

19
Q

What does the scanline fill algorithm do?

A

Determines which pixels lie inside the triangle boundaries for filling.

20
Q

Fill in the blank: Rasterization is the process that converts the geometric representation of shapes into a grid of _______.

21
Q

True or False: Raster graphics maintain quality when scaled.

22
Q

What is the purpose of the Scanline Polygon Fill Algorithm?

A

To fill a polygon with color by determining intersections on horizontal scanlines.

23
Q

What does the term ‘fragment processing’ refer to?

A

Processing fragments generated from rasterization to apply effects like shading and texturing.

24
Q

What is the main benefit of using raster graphics in digital photography?

A

Ability to capture, edit, and display detailed images.

25
After rasterizing a triangle, how can its interior be filled?
Using techniques like the scanline fill algorithm.
26
What is the significance of understanding raster graphics for professionals?
Crucial for fields such as graphic design, animation, and software development.
27
What is the first step to fill a polygon with color in raster graphics?
Identify the edges of the polygon.
28
How do you determine where a polygon intersects with horizontal scanlines?
For each horizontal scanline, determine where the polygon intersects.
29
What are the start and end points used for in filling a polygon?
Identify the start and end points of each intersection to fill in the pixels between those points.
30
What is an example of texture mapping in raster graphics?
Applying a 2D texture, like a brick pattern, onto a 3D surface.
31
What are UV coordinates used for in texture mapping?
To define how the texture corresponds to the object's surface.
32
What visual comparison is made in the demonstration of texture mapping?
Display the original texture and the 3D object with the applied texture side-by-side.
33
What does color depth refer to in raster graphics?
The number of bits used to represent the color of a single pixel.
34
What is illustrated by displaying images with varying color depths?
How color depth affects image quality.
35
What activity can students do to explore the effects of color depth?
Explore how the change in depth influences the amount of detail that can be represented.
36
What is a discussion topic regarding color depth and image quality?
The impact of color depth on file size and quality.
37
What compression technique is mentioned that affects image quality?
JPEG compression.
38
What is the purpose of implementing anti-aliasing techniques?
To smooth edges of raster graphics.
39
What is an example of an anti-aliasing technique?
Supersampling or smoothing.
40
What is used to show the effect of anti-aliasing visually?
Present two images of the same object, one with anti-aliasing applied and one without.
41
What are some real-world applications of raster graphics?
* Digital photography * Gaming * Web design
42
What hands-on activity can students do related to raster graphics?
Import raster images into graphics editing software and apply various techniques.