Morph Segmentation Flashcards

1
Q

How do you define Morph Segmentation?

A
  • operates on images as a set of points
  • modify in a control way the morphology of an image
  • used in binary images
  • used in image processing for filtering, segmentation, object description
    It has basic and composed operations
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How many basic operations are there?

A

2

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

What are the basic operations that morph segmentation allows?

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

How do you define dilation?

A
  • enlarges the boundaries
  • small holes and gaps are filled
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How do define erosion?

A
  • erode away the boundaries of regions of foreground
  • holes and gaps are increased
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How many composed operations are there?

A

2

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

What are the composed operations that morph segmentation allows?

A
  • opening
  • closing
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What characterizes opening?

A
  • erosion followed by dilation
  • union of all objects that fit in structuring element
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What characterizes closing?

A
  • dilation followed by erosion
  • dual to opening
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Can edge detection be done with morphology? If yes how does it work?

A

Yes
- erosion of objects then subtraction from original

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

How is segmentation done?

A
  • dividing image in regions
  • applied before image analysis
  • group pixels with similar properties
  • no perfect segmentation method
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is edge detection segmentation based in?

A
  • pixel intensity
  • regions
  • edges
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is thresholding?

A
  • oldest segmentation method
  • appropriate when object of interest have homogenous intensity different from background
  • not easy to find the adequate value
  • if value is uknown, analyze the histogram to choose an adequate value
    -For a bimodal histogram, the threshold value corresponds to the valley between the peaks
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Can this approach can produce classification errors depending on the image histogram and intensity of values of the objects?

A

Yes

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

How many and what kind of approaches are there (thresholding)?

A

-There are 2 approaches:
- global
- variable

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

How many variable approaches are there?

A

3
-Local
-Adaptive
- Otsu’s method

17
Q

Give me a example of thresholding

A

OCR -Optical Character Recognition:
Page ->Scanner -> OCR -> ASCII text

18
Q

Can the thresholding be applied to image
sub-regions?

A

Yes

19
Q

What defines the local variable approach?

A

It depends on properties of neighbouring pixels

20
Q

What defines the Adaptive variable approach?

A

It depends on spatial coordinates

21
Q

What defines the Otsu’s method variable approach?

A

It is based on probabilistic analysis obtained
from histogram

22
Q

What is region growing:

A
  • grow a region by aggregation of pixels starting at a seed point
  • all neighbouring pixels that comply the rule are labelled as belonging to the region
23
Q

Is obtaining a “good” seed pixels a problem ?

A

Yes

24
Q

How can seed be obtained?

A

Seed can be obtained using:
– Histograms
– Interactively

25
Q

How can flood filing be done?

A

It can be done using:
-recursive version;
-depth-first search;
-breadth-first search;