EEE-6512_Exam3_Lecture17

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

1/68

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 12:01 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

69 Terms

1
New cards

What problem motivates variable thresholding

Non-uniform illumination

2
New cards

What is the basic idea of variable thresholding by image partitioning

Subdivide an image into nonoverlapping rectangles

3
New cards

Why are the rectangles in variable thresholding chosen to be small

So the illumination within each rectangle is approximately uniform

4
New cards

Why can partitioning an image help thresholding under non-uniform illumination

Each subimage may have a more locally uniform histogram and illumination pattern

5
New cards

What is the main weakness of applying one global threshold under non-uniform illumination

One threshold may not separate foreground and background well across the whole image

6
New cards

What local quantities are used in variable thresholding based on local image properties

The local mean mxy and local standard deviation sigma_xy

7
New cards

What is the local threshold formula when the background is nearly constant

Txy = a + b sigma_xy

8
New cards

In local thresholding using Txy when is g(x

y)=1,When f(x,y) is greater than Txy

9
New cards

In local thresholding using Txy when is g(x

y)=0,When f(x,y) is less than or equal to Txy

10
New cards

What does the lecture call the modified thresholding approach based on local parameters

A thresholding rule using a logical predicate Q

11
New cards

When is Q true in the modified local thresholding method

When f(x,y) is greater than a and f(x,y) is greater than b times mxy

12
New cards

What is g(x

y) in the modified local thresholding method when Q is true,1

13
New cards

What is g(x

y) in the modified local thresholding method when Q is false,0

14
New cards

What is the role of a in the modified local thresholding rule

It is a threshold term that f(x,y) must exceed

15
New cards

What is the role of b in the modified local thresholding rule

It scales the local mean mxy in the second condition

16
New cards

What values are shown in the example figure for local thresholding based on local properties

a = 30 and b = 1.5 and mxy = mG

17
New cards

When does variable thresholding using moving averages work well

When the objects are small relative to the image size

18
New cards

What application is variable thresholding using moving averages said to be useful for

Document processing

19
New cards

How is scanning typically carried out in moving-average thresholding

Line by line in a zigzag pattern

20
New cards

Why is zigzag scanning used in moving-average thresholding

To reduce illumination bias

21
New cards

What is mk+1 in moving-average thresholding

The moving average mean intensity at the new point in the scanning sequence

22
New cards

What does n represent in the moving-average formula

The number of points used in computing the average

23
New cards

How are image borders handled in the moving-average formula example

The border of the image is padded with n minus 1 zeros

24
New cards

In moving-average thresholding what is Txy

Txy = b mxy

25
New cards

In moving-average thresholding when is g(x

y)=1,When f(x,y) is greater than Txy

26
New cards

In moving-average thresholding when is g(x

y)=0,When f(x,y) is less than or equal to Txy

27
New cards

What values are shown in the document-processing example for moving-average thresholding

N = 20 and b = 0.5

28
New cards

What is region growing according to the lecture

Each pixel starts as a separate region and adjacent similar regions are successively merged

29
New cards

For grayscale region growing what two statistics are computed for a region

The mean mu and the variance sigma squared

30
New cards

How is the mean mu of a grayscale region defined

It is the average of the intensities of the pixels in the region

31
New cards

How is the variance sigma squared of a grayscale region defined

It is the average squared deviation of pixel intensities from the mean

32
New cards

How is the dissimilarity of a pixel q measured in region growing

By its distance from the mean relative to the standard deviation

33
New cards

What is the dissimilarity formula used for a pixel q in region growing

d(q; I, mu, sigma) = |I(q) - mu| / sigma

34
New cards

What does a larger dissimilarity value imply in region growing

The pixel is less similar to the region

35
New cards

What is the basic segmentation definition used in splitting and merging

The image I is the union of regions R1 through Rn and the regions do not overlap

36
New cards

What does Q(Ri) measure in splitting and merging

The homogeneity of region Ri

37
New cards

What must be true about the regions in the splitting and merging formulation

Every pixel must belong to exactly one region

38
New cards

How do merging algorithms begin

With each pixel as a separate region

39
New cards

When do merging algorithms combine regions

When adjacent regions are similar to each other

40
New cards

How do splitting algorithms begin

With the entire image as a single region

41
New cards

When do splitting algorithms split a region

When the region is found to be nonhomogeneous

42
New cards

What is the conceptual difference between merging and splitting

Merging starts from many small regions and combines them while splitting starts from one large region and divides it

43
New cards

What method of segmentation is introduced after splitting and merging

Clustering

44
New cards

How many clusters are assumed in the clustering formulation

K clusters C1 through CK

45
New cards

What is associated with each cluster in the clustering formulation

A mean m1 through mK

46
New cards

What quantity is minimized in clustering according to the lecture

The least-squares error D

47
New cards

How is the least-squares error D defined in clustering

As the sum over clusters of the squared distances between points in each cluster and that cluster mean

48
New cards

Out of all possible partitions into K clusters which one is chosen

The one that minimizes D

49
New cards

What is the main goal of K-means clustering

Partition data into K clusters by minimizing within-cluster least-squares error

50
New cards

What kind of data does the lecture say K-means forms clusters from

A set of n-dimensional vectors

51
New cards

What is Step 1 of the K-means clustering algorithm

Set the iteration count ic to 1

52
New cards

What is Step 2 of the K-means clustering algorithm

Choose randomly a set of K initial means

53
New cards

What is Step 3 of the K-means clustering algorithm

For each vector compute its distance to each mean and assign it to the cluster with the nearest mean

54
New cards

What is Step 4 of the K-means clustering algorithm

Increment the iteration count and update the means

55
New cards

What is Step 5 of the K-means clustering algorithm

Repeat assignment and update until the cluster memberships no longer change

56
New cards

What stopping condition is given for K-means

Stop when Ck at one iteration equals Ck at the next iteration for all k

57
New cards

What does the lecture say can vary in K-means variants

Initialization of means and stopping criteria and methods for choosing K

58
New cards

What is one challenge K-means variants try to address

Determining the right number of clusters K for a given image

59
New cards

What are the main advantages of K-means given in the lecture

It is simple and fast and converges to a local minimum of the error function

60
New cards

What are the main disadvantages of K-means given in the lecture

You must choose K and it is sensitive to initialization and only finds spherical clusters and is sensitive to outliers

61
New cards

Why is sensitivity to initialization a weakness of K-means

Different starting means can lead to different final solutions

62
New cards

Why is needing to pick K a weakness of K-means

The correct number of clusters may not be known beforehand

63
New cards

What kind of clusters does standard K-means tend to find

Spherical clusters

64
New cards

Why can outliers be a problem for K-means

They can influence the means and distort the clustering result

65
New cards

What higher-order distinction should you know between global and variable thresholding

Global thresholding uses one threshold for the whole image while variable thresholding adapts the threshold locally

66
New cards

What higher-order distinction should you know between local-property thresholding and moving-average thresholding

Local-property thresholding uses local statistics like mean and standard deviation while moving-average thresholding uses a scanning-based moving mean

67
New cards

What higher-order distinction should you know between region growing and splitting

Region growing merges from many small initial regions while splitting divides from one large initial region

68
New cards

What higher-order distinction should you know between region-based segmentation and K-means clustering

Region-based methods rely on spatial homogeneity and adjacency while K-means groups vectors into K clusters by minimizing least-squares error

69
New cards

What summary topics does the lecture emphasize at the end

Global and local and adaptive thresholding and region growing and splitting merging and segmentation by clustering using K-means