CSEL311 Flashcards

1
Q

The computer is an __________

A

information processing machine

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

It is a tool for _______, ________, and _______ data.

A

storing, manipulating, correlating

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

It displays the information in the form of graphics objects like ____, ______, _____, and ______.

A

pictures, charts, graphs and diagrams

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

Computer graphics makes it possible to express data in ______

A

pictorial form

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

Pictures or graphics objects are presented as a collection of discrete picture elements called _______.

A

pixels

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

It is the smallest addressable screen element. It is the smallest piece of the display screen which we can control.

A

pixels

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

Thus we can say that computer graphics concerns the ___________ of real or imaginary objects.

A

pictorial synthesis

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

The image processing can be classified as (IE)

A

image enhancement

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

The image processing can be classified as (PDR)

A

pattern detection and recognition

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

The image processing can be classified as (SA & CV)

A

scene analysis and computer vision

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

It deals with the detection and clarification of standard patterns and finding deviations from these patterns.

A

pattern detection and recognition

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

Example of pattern detection and recognition

A

optical character recognition (OCR) technology

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

With ________, users can also control the animation by adjusting the speed, the portion of the total scene in view, the geometric relationship of the objects in the scene to one another, the amount of detail shown and so on.

A

interactive graphics

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

The interactive graphics provides a tool called _______. With this tool, user can move and tumble objects with respect to a stationary observer, or he can make objects stationary and the viewer moving around them.

A

motion dynamics

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

The interactive graphics also provides a facility called ________. With this, it is possible to change the shape, colour or other properties of the objects being viewed.

A

update dynamics

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

With the recent development of ____________(DSP) and ________, the interactive graphics can now provide audio feedback along with the graphical feedbacks to make the simulated environment even more realistic.

A

digital signal processing, audio synthesis chip

17
Q

Pictures found on the Web and photos you import from your digital camera are ________

A

raster graphics

18
Q

Raster graphics are made up of a grid of pixels, commonly referred to as ______. The larger it is, the bigger the size.

A

bitmap

19
Q

Raster graphics can typically be scaled down with no loss of quality, but enlarging a bitmap image causes it to look _____ and ________

A

blocky and pixelated

20
Q

________ are often used for certain images, such as company logos, which need to be scaled to different sizes.

A

vector graphics

21
Q

Making use of sequential commands or mathematical statements or programs which place lines or shapes in a 2-D or 3-D environment is referred to as ___________

A

vector graphics

22
Q

The main difference between vector and raster graphics is that raster graphics are composed of ______, while vector graphics are composed of _____

A

pixels, paths

23
Q

A ______ ______, such as a gif or jpeg, is an array of pixels of various colours, which together form an image.

A

raster graphic

24
Q

Similar to the naive line-drawing algorithm, with minor variations.

A

Digital Differential Analyzer (graphics algorithm)

25
Q

Optimized to use only additions (i.e. no divisions or multiplications); it also avoids floating-point computations.

A

Bresenham’s line algorithm

26
Q

_______ polygon has no interior angle greater than 180° (it has no inward-pointing sides).

A

convex

27
Q

_______ polygon has at least one interior angle greater than 180°. It must have at least 4 sides.

A

concave

28
Q

______ polygon encloses a single interior space (boundary) and does not have self-intersecting sides

A

simple

29
Q

_______ polygons have self-intersecting sides

A

complex

30
Q

An _________ polygon does not have congruent sides and interior angles.

A

irregular

31
Q

A _______ polygon has congruent sides and interior angles.

A

regular

32
Q

_______ is a representation of the surface. It is primitive which is closed in nature. It is formed using a collection of lines. It is also called a many-sided figure.

A

polygon

33
Q

The lines combined to form polygons are called _____ or _____.

A

sides or edges

34
Q

The lines of a polygon are obtained by combining two ________.

A

vertices

35
Q

The polygon edges are being intersected with the scanline.The polygon is filled with colours in between the intersecting pairs.

A

Scan-Line Algorithm

36
Q

Fill colour option is used rather than on the object boundary. Fill clour replaces the interior colour. The pixels are filled by using either Four-connect or Eight-connect method.

A

Flood Fill Algorithm

37
Q

A point inside an object is picked and is filled until the boundary is hit by the object. This algorithm works only when the colour of the boundary is different from the colour that is used for filling.

A

Boundary Fill Algorithm

38
Q

The pixels are used by placing them on four different sides of the current pixel till a different colour boundary is identified.

A

4-Connected Polygon

39
Q

8-connected pixels are used in this technique by adding the pixels above, below, right and left side of the current pixels. The pixels are fixed diagonally such that the complete area of the current pixel is covered. The process is continued till a boundary is found with different colour.

A

8-Connected Polygon