CompPhoto: Chapter 7 Blending:ChatGPT

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

1/24

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

25 Terms

1
New cards

Point Process (Pixel Arithmetic)

An image operation applied independently to each pixel, such as addition, subtraction, or scaling.

2
New cards

Pixel Arithmetic

Adds, subtracts, or averages pixel values between images to create new effects.

3
New cards

Addition (Blend Mode)

Adds pixel values from two images; can brighten the result but often causes overexposure (too white).

4
New cards

Subtraction (Blend Mode)

Subtracts pixel values from one image from another; darkens the image and may cause clipping (too dark).

5
New cards

Difference (Blend Mode)

Calculates the absolute difference between two images, emphasizing areas of change.

6
New cards

Alpha (α)

Represents opacity or transparency; ranges from 0 (fully transparent) to 1 (fully opaque).

7
New cards

Alpha Blending (α-Blending)

A weighted combination of two images defined as f_blend(a,b) = αa + (1−α)b.

8
New cards

Opacity vs. Transparency

Opacity describes how visible a layer is; transparency describes how much of the lower layer shows through.

9
New cards

Simple Average Blending

Averages corresponding pixels from two images: f_blend(a,b) = (a + b)/2.

10
New cards

Normal Blend Mode

Simply replaces the pixel from one image with the pixel from another; equivalent to f_blend(a,b) = b.

11
New cards

Multiply Blend Mode

Darkens an image by multiplying pixel values: f_blend(a,b) = a × b.

12
New cards

Screen Blend Mode

Brightens an image by inverting, multiplying, and inverting again: f_blend(a,b) = 1 − (1 − a)(1 − b).

13
New cards

Overlay Blend Mode

Combines Multiply and Screen; bright areas become brighter, dark areas become darker.

14
New cards

Overlay Formula

f_blend(a,b) = 2ab if a < 0.5, otherwise 1 − 2(1 − a)(1 − b).

15
New cards

Dodge and Burn

Techniques used to selectively lighten (dodge) or darken (burn) areas of an image.

16
New cards

Dodge Mode

Lightens an image by increasing exposure in bright regions, often based on Screen mode.

17
New cards

Burn Mode

Darkens an image by reducing exposure in specific areas, based on Multiply mode.

18
New cards

Arithmetic Blend Modes

Include add, subtract, multiply, divide, difference, lighten, and darken; each affects pixel intensity differently.

19
New cards

Lighten Blend Mode

Chooses the maximum pixel value between two images for each channel: f_blend(a,b) = max(a,b).

20
New cards

Darken Blend Mode

Chooses the minimum pixel value between two images for each channel: f_blend(a,b) = min(a,b).

21
New cards

Divide Blend Mode

Brightens an image by dividing pixel values of one image by another; can wash out details.

22
New cards

Practical Application of Blending

Used for image compositing, HDR combination, cross-fading transitions, and artistic effects.

23
New cards

Transparency in Digital Images

Often implemented using an alpha channel in RGBA images to control layer visibility.

24
New cards

Importance of Blending in Computational Photography

Blending allows seamless integration of multiple images, crucial for panoramas, HDR, and exposure fusion.

25
New cards

Explore top flashcards