CH4 Rasterization & Raster Graphics Flashcards
(42 cards)
What are raster graphics?
Images created by a grid of individual pixels, each with its own color value.
Name common file formats for raster graphics.
- BMP
- JPEG
- PNG
- GIF
- TIFF
What is a key characteristic of raster graphics?
Fixed resolution; scaling can lead to loss of quality (pixelation).
Define a pixel.
The smallest individual element of an image displayed on a screen, representing a single point of color.
How is the resolution of a raster image defined?
By its width (in pixels) and height (in pixels).
What is rasterization?
The process of converting geometric shapes into a raster image made up of pixels.
What is the first stage in the rasterization process?
Vertex Processing.
What happens during primitive assembly in rasterization?
Vertices are assembled into primitives (triangles, lines, etc.) required for rendering.
What is the role of the framebuffer in rasterization?
It stores the final colors, which hold pixel values ready for display on the screen.
What does Bresenham’s Line Algorithm do?
Efficiently determines pixel positions for drawing straight lines based on their endpoints.
What is the Midpoint Circle Algorithm used for?
Efficiently calculates pixel locations for rasterizing circles by leveraging symmetry.
What is Z-buffering?
A depth-sorting method that manages depth information for pixels to ensure correct object display.
List advantages of raster graphics.
- Capability to represent complex images with fine detail.
- Flexibility in editing pixel data.
- Wide compatibility with software for image manipulation.
List disadvantages of raster graphics.
- Resampling quality loss when scaling.
- Larger file sizes than vector graphics.
- Memory-intensive when using high-resolution images.
What are common applications of raster graphics?
- Digital Photography
- Graphic Design
- Web Graphics
- Video Games
How do raster graphics differ from vector graphics?
Raster graphics are composed of pixels, while vector graphics are composed of mathematical paths and shapes.
What is a key conclusion about rasterization?
It is a fundamental process that enables the rendering of complex images in computer graphics.
What is the first step in rasterizing a triangle?
Define the Triangle’s Vertices.
What does the scanline fill algorithm do?
Determines which pixels lie inside the triangle boundaries for filling.
Fill in the blank: Rasterization is the process that converts the geometric representation of shapes into a grid of _______.
[pixels]
True or False: Raster graphics maintain quality when scaled.
False
What is the purpose of the Scanline Polygon Fill Algorithm?
To fill a polygon with color by determining intersections on horizontal scanlines.
What does the term ‘fragment processing’ refer to?
Processing fragments generated from rasterization to apply effects like shading and texturing.
What is the main benefit of using raster graphics in digital photography?
Ability to capture, edit, and display detailed images.