Computer Graphics Flashcards

1
Q

What is Modelling?

A

Effective representation and efficient computational modification of geometric shapes.

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

What is Animation and Simulation?

A

Generation and representation of dynamic imagery on a computer.

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

What is Image Synthesis?

A

Display of models and scenes on a computer.

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

What is Imaging and Computer Vision?

A

Manipulation of images and extraction of information from images.

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

What Is Visualisation?

A

Methods to visually represent the information content of large-scale, multi-dimensional data sets.

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

What is a Raster Display?

A

A display that consists of pixels with a defined colour and intensity. It also contains a framebuffer.

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

What is the RGB colour theory?

A

The theory that every colour can be made up of red, green and blue

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

What is a Framebuffer?

A

An in-memory representation of pixel states used to store the image displayed.

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

What is double buffering?

A

Having two framebuffers, draw into one while displaying the other then swap.

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

What are Primitives?

A

Simple geometric elements such as a line, point, boundary or polygon, that make up more complex shapes and images. They are specified by location and dimension.

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

What are Complex Objects?

A

Objects built from primitives, but with visual attributes such as colour, line-style, and fill style.

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

What are local and world coordinates?

A

Local coordinates define objects individually, while world coordinates describe these objects place in the world.

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

What is a clipping window in computer graphics?

A

The area of a scene, defined in world coordinates, that you choose to display.

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

What is a viewport?

A

An area on the display device (screen) where the clipped portion of the scene is rendered, defined in device coordinates.

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

Outline the main stages of the 2D Graphics Pipeline.

A

Model Scene: Construct objects from primitives in local coordinates and place them into world coordinates.

View Scene: Specify window (scene area) and viewport (display area), then clip and map the scene.

Output: Rasterise primitives to pixels using attributes for display.

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

What are Device Coordinates?

A

Coordinates specifying pixel locations on the physical device or screen, typically measured in pixels or physical units.

17
Q

What is a Linear Transformation?

A

A transformation represented by multiplying vectors by matrices, such as rotation, scaling, and shear.

18
Q

What linear transformation is
[ cosθ -sinθ ]
[ sinθ cosθ ]
and what would the effect be?

A

Rotation by θ

19
Q

What linear transformation is
[ λ1 0 ]
[ 0 λ2 ]
and what would the effect be?

A

Scaling x by λ1, and y by λ2

20
Q

What linear transformation is
[ 1 λ ]
[ 0 1 ]
and what would the effect be?

A

Shear, and it adds λy to every x value