Computer Graphics Flashcards

0.0(0)
studied byStudied by 0 people
0.0(0)
linked notesView linked note
full-widthCall with Kai
GameKnowt Play
New
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/15

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards for reviewing computer graphics concepts.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

16 Terms

1
New cards

Motion Capture

Capturing the motion of a model from a real-life actor, typically by placing markers on the actor’s body and tracking them with calibrated cameras.

2
New cards

Rendering Pipeline

A sequence of stages including modelling, transformation, lighting, rasterisation, and pixel shading to transform a 3D scene into a 2D image.

3
New cards

Alpha Channel

A component in texture maps representing transparency, allowing textures to have varying levels of opacity.

4
New cards

MIP Mapping

A technique in OpenGL that improves texture rendering by creating prefiltered texture images at different resolutions, enhancing quality and performance.

5
New cards

Global Illumination

A rendering technique that simulates how light interacts with surfaces and scatters throughout a scene, considering both specular and diffuse lighting.

6
New cards

Local Illumination

A rendering model that calculates lighting based only on the direct light sources, without considering light bouncing from other objects in the scene.

7
New cards

Gouraud Shading

A shading technique characterized by L[D|S]E, representing single diffuse or specular reflection.

8
New cards

Phong Shading

A shading technique characterized by L[D|S]E, representing single diffuse or specular reflection.

9
New cards

Ray Tracing

A rendering technique characterized by LDS*E, representing single diffuse but multiple specular reflections.

10
New cards

Radiosity Method

A rendering technique characterized by LD*E, representing multiple diffuse reflections.

11
New cards

Normals

Vectors perpendicular to a surface, used for lighting calculations, bump mapping, displacement mapping, and surface smoothing.

12
New cards

Phong Model

A local illumination model that estimates reflection intensity based on local geometry and incoming light, without considering global effects like caustics.

13
New cards

Whitted Ray Tracing

A ray tracing technique that traces rays backward from the camera, stopping at diffuse surfaces and creating shadow rays to the light source. It can render shadows but does not simulate caustics well.

14
New cards

Path Tracing

A global illumination technique that shoots many rays from each pixel and follows their random paths, realistically simulating complex light interactions, including caustics.

15
New cards

Z-buffer Algorithm

A hidden surface removal algorithm that handles occlusions by recording the depth of each rendered pixel and overwriting it if a new, closer surface is rendered on the same location.

16
New cards

Painters Algorithm

A rendering algorithm that renders objects from back to front, allowing transparency to be handled by blending the pixel's color with the previous color based on the alpha value.