EEE-6512_Exam3_Lecture16

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

1/60

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 1:31 AM on 4/17/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

61 Terms

1
New cards

What is segmentation

Segmentation divides an image into groups of pixels

2
New cards

Why are pixels grouped together in segmentation

They share some local property such as gray level or color or texture or motion

3
New cards

What are four ways of displaying segmentation output shown in the lecture

Boundaries and labels and pseudocolors and mean colors

4
New cards

What is oversegmentation

Dividing what should be one group into too many groups

5
New cards

What is undersegmentation

Failing to separate regions that should be distinct

6
New cards

What is the simplest segmentation problem discussed in the lecture

Foreground background segmentation

7
New cards

What is the goal of foreground background segmentation

Separate foreground objects from background

8
New cards

What common approach is used for the simplest segmentation problem

Find a threshold value that separates foreground pixels from background pixels

9
New cards

According to the lecture what do points represent in segmentation context

Foreground objects

10
New cards

According to the lecture what do edges represent in segmentation context

Boundaries between background and foreground

11
New cards

In global thresholding when is g(x y)=1

When f(x y) is greater than T

12
New cards

In global thresholding when is g(x y)=0

When f(x y) is less than or equal to T

13
New cards

What is multiple thresholding used for

Partitioning intensities into more than two classes

14
New cards

How can noise affect image thresholding according to the lecture

It can blur or overlap histogram modes and make separation harder

15
New cards

How can illumination and reflectance affect thresholding

They can distort the histogram and make class separation less clear

16
New cards

What is Step 1 of the basic global thresholding algorithm

Select an initial estimate for the global threshold T

17
New cards

What is Step 2 of the basic global thresholding algorithm

Segment the image using T into G1 and G2

18
New cards

What is G1 in the basic global thresholding algorithm

The group of pixels with intensity values greater than T

19
New cards

What is G2 in the basic global thresholding algorithm

The group of pixels with intensity values less than or equal to T

20
New cards

What is Step 3 of the basic global thresholding algorithm

Compute the average intensity values m1 and m2 for G1 and G2

21
New cards

What is Step 4 of the basic global thresholding algorithm

Compute a new threshold T as one half of m1 plus m2

22
New cards

What is Step 5 of the basic global thresholding algorithm

Repeat the process until the threshold change between iterations is smaller than delta T

23
New cards

When does the basic global thresholding algorithm work well

When there is a reasonably clear valley between histogram modes for objects and background

24
New cards

Under what condition does the basic global thresholding algorithm converge in a finite number of steps

When the initial T is greater than the minimum and less than the maximum intensity value

25
New cards

What is the basic idea of Otsu's method

The best threshold is the one that gives the best separation between classes in intensity

26
New cards

Where are all operations performed in Otsu's method

Directly on the histogram

27
New cards

What does Otsu's method assume about the histogram and image

It assumes the histogram and image are bimodal

28
New cards

What does Otsu's method assume about statistics in the image

It assumes stationary statistics

29
New cards

What illumination assumption is made implicitly in Otsu's method

It assumes uniform illumination

30
New cards

Why does Otsu's method implicitly assume uniform illumination

So bimodal brightness behavior arises from object appearance only

31
New cards

What search strategy does Otsu's method use to find the threshold

An exhaustive search for the optimal threshold

32
New cards

What quantity does Otsu's method maximize

The between class variance

33
New cards

What is k* in Otsu's method

The threshold value that maximizes the between class variance

34
New cards

What does the separability measure eta equal in Otsu's method

Between class variance divided by global variance

35
New cards

What is Step 1 of Otsu's algorithm summary

Compute the normalized histogram of the input image

36
New cards

What is Step 2 of Otsu's algorithm summary

Compute the cumulative sums P1(k)

37
New cards

What is Step 3 of Otsu's algorithm summary

Compute the cumulative means m(k)

38
New cards

What is Step 4 of Otsu's algorithm summary

Compute the global intensity mean mG

39
New cards

What is Step 5 of Otsu's algorithm summary

Compute the between class variance for each k

40
New cards

What is Step 6 of Otsu's algorithm summary

Obtain the Otsu threshold k*

41
New cards

What is Step 7 of Otsu's algorithm summary

Obtain the separability measure

42
New cards

Why can image smoothing improve global thresholding

Smoothing reduces noise and can make histogram classes more separable

43
New cards

What problem is raised in the lecture when the foreground size is significantly reduced

The histogram may be dominated by the background and thresholding may become less reliable

44
New cards

What is the purpose of using edges to improve global thresholding

To build a histogram from more informative pixels so global segmentation works better

45
New cards

What is Step 1 of using edges to improve global thresholding

Compute an edge image using either gradient magnitude or the absolute value of the Laplacian

46
New cards

What is Step 2 of using edges to improve global thresholding

Specify a threshold value T

47
New cards

What is Step 3 of using edges to improve global thresholding

Threshold the edge image to produce a binary mask and select pixels from f(x y)

48
New cards

What is Step 4 of using edges to improve global thresholding

Compute a histogram using only the chosen pixels from f(x y)

49
New cards

What is Step 5 of using edges to improve global thresholding

Use that histogram to segment f(x y) globally

50
New cards

What two edge based images can be used in Step 1 of edge improved global thresholding

Gradient magnitude or absolute Laplacian

51
New cards

In the edge improved thresholding method what is the role of the binary image from Step 3

It acts as a mask for selecting pixels from the original image

52
New cards

Why does the edge improved thresholding method compute a histogram from only chosen pixels

Because those pixels can give a more useful histogram for separating classes

53
New cards

What is the main difference between basic global thresholding and Otsu's method

Basic global thresholding iteratively updates T using class means while Otsu's method searches for the threshold that maximizes between class variance

54
New cards

What is the main difference between standard Otsu thresholding and edge improved thresholding

Standard Otsu uses the full image histogram while the edge improved version uses a histogram built from selected pixels

55
New cards

What is the goal of multiple thresholds

To divide the image into more than two classes

56
New cards

In multiple threshold Otsu style segmentation what is optimized

The between class variance across multiple classes

57
New cards

What does the iceberg example illustrate in the lecture

That dual thresholds can segment an image into three regions

58
New cards

How does Lecture 16 define segmentation at a high level

It divides an image into groups of pixels based on shared local properties

59
New cards

What common segmentation mistakes shown in the lecture should you recognize

Oversegmentation and undersegmentation

60
New cards

What kind of professor style question is likely from this lecture about Otsu's method

Questions on assumptions and optimization target and algorithm steps

61
New cards

What kind of professor style question is likely from this lecture about thresholding workflow

Questions on exact step order and what each group or mask represents