Segmentation and Clustering p3 - Lecture 9 - Week 4 Flashcards

1
Q

What is mean-shift segmentation?

A

An advanced and versatile technique for clustering-based segmentation

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is a mode in a histogram?

A

Mode = local maximum of the density of a given distribution

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is iterative mode search?

A
  1. Initialise random seed, and window W
  2. Calculate centre of gravity (the “mean”) of W
    • Sum of x in W (x * Hist(x))
  3. Shift the search window to the “mean”
  4. Repeat step 2 until convergence
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is a cluster in Mean-Shift clustering?

A

All data points in the attraction basin of a mode

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is an attraction basin in mean-shift clustering?

A

The region for which all trajectories leads to the same mode

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How does mean-shift achieve clustering/segmentation?

A

Find features (colour, gradients, texture, etc…)
Initialise windows at individual pixel locations
Perform mean shift for each window until convergence
Merge windows that end up nea the same “peak” or mode

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Mean-Shift pros and cons

A

Pros
- General, application-independent tool
- Model-free, does not assume any prior shape (spherical, elliptical, etc…) on data clusters
- Just a single parameter (window size h)
- Finds variable number of modes
- Robust to outliers

Cons
- Output depends on window size
- Window size (bandwidth) selection is not trivial
- Computationally (relatively) expensive (~2s per image)
- Does not scale well with dimension of feature space

How well did you know this?
1
Not at all
2
3
4
5
Perfectly