Digital Image Processing and Computer Vision - Practice Flashcards

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/29

flashcard set

Earn XP

Description and Tags

Flashcards covering the fundamentals of digital images, ISP pipelines, sampling, quantization, and image enhancement techniques like histogram equalization and gamma correction.

Last updated 3:57 PM on 6/22/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

30 Terms

1
New cards

A digital image is formed after the measurement, sampling, and __________ of light.

quantization

2
New cards

Modern cameras do not directly output RAW sensor data primarily because RAW is __________ and requires processing to become viewable.

mosaiced

3
New cards

The ISP step responsible for reconstructing missing colors in a Bayer-mosaiced RAW image is __________.

Demosaicing

4
New cards

The main purpose of white balance is to correct the __________ __________ caused by the illumination.

color cast

5
New cards

Sampling in digital imaging refers to measuring a continuous spatial signal at __________ __________ __________.

discrete pixel locations

6
New cards

__________ in digital imaging refers to mapping continuous-valued measurements to discrete intensity levels.

Quantization

7
New cards

If spatial sampling is too low relative to scene detail, the most common result is the appearance of __________ artifacts.

aliasing

8
New cards

Increasing the number of quantization levels while keeping the same sampling typically provides better __________ __________ and smaller quantization error.

intensity precision

9
New cards

A grayscale histogram represents the distribution or frequency of __________ __________ regardless of their spatial location.

intensity values

10
New cards

A point or pixel-wise operation is described as a mapping applied independently to each pixel value using the __________ __________.

same rule

11
New cards

A mapping is __________ __________ if it does not depend on pixel coordinates and the same rule is used everywhere.

spatially invariant

12
New cards

For an 8-bit grayscale image, the valid representable intensity range is ..

[0,255][0, 255]

13
New cards

After pixel arithmetic, __________ is used to force computed values back into the valid representable intensity range.

clamping

14
New cards

For visualization of frame differencing, the expression __________ is often preferred because it treats both brightening and darkening as change without negative values.

ItIt1|I_t - I_{t-1}|

15
New cards

In motion detection, __________ __________ is primarily used to convert a difference image into a binary motion mask.

global thresholding

16
New cards

Robust contrast stretching, also known as percentile clipping, uses qlowq_{low} and qhighq_{high} to reduce the influence of __________ __________ in histogram tails.

extreme outliers

17
New cards

The core idea behind histogram equalization is to use the __________ to remap intensities so output levels are used more uniformly.

CDF

18
New cards

In histogram equalization, contrast is increased in regions where the CDF is __________.

steep

19
New cards

For normalized intensities a[0,1]a \in [0, 1], gamma correction is modeled by the power-law equation __________.

b=aγb = a^{\gamma}

20
New cards

Alpha blending is defined by the equation __________, where α\alpha determines the contribution of each image.

Iblend=αIleft+(1α)IrightI_{blend} = \alpha I_{left} + (1 - \alpha)I_{right}

21
New cards

A large feathering window can create __________ artifacts if edges or textures in the overlap region are not perfectly aligned.

ghosting

22
New cards

A 2D or joint histogram counts how frequently pairs of values occur together and is more informative than 1D histograms because it captures __________ between variables.

correlation

23
New cards

In the HSV color model, H stands for Hue, S stands for __________, and V stands for Value.

Saturation

24
New cards

Displays use the RGB color model because they are additive systems, whereas printing uses the __________ model because inks absorb light.

CMYK

25
New cards

The YCbCr model is useful because it separates __________ from chrominance, allowing contrast enhancement without affecting color stability.

luminance

26
New cards

The ISP correction step that subtracts the sensor's baseline offset to ensure no light maps to true black is __________ __________.

black-level correction

27
New cards

__________ is a repeatable spatial pattern caused by pixel-to-pixel response differences and is reduced using dark or flat-field references.

Fixed-pattern noise

28
New cards

The __________ of a pixel p=(x,y)p = (x, y) includes the axis-aligned neighbors: (x+1,y)(x+1, y), (x1,y)(x-1, y), (x,y+1)(x, y+1), and (x,y1)(x, y-1).

N4(p)N_4(p)

29
New cards

Pixels that touch only at a corner are disconnected under N4N_4 connectivity but are considered connected under __________ connectivity.

N8N_8

30
New cards

Quantization is an __________ operation because multiple input intensities merge into a smaller number of output levels, meaning the original cannot be uniquely recovered.

irreversible