Image Post Processing and Segmentation Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

What are VOXELS?

A

A 3D volume used in a similar manner as a pixel

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

What is the HOUNSFIELD SCALE?

A

Used to express the attenuation coefficient (density) of different tissues
Measured in Hounsfield Units (HU)

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

What are HISTOGRAMS USED FOR?

A
  • Similar to EQ for sound, they can amplify/remove/dampen certain frequencies to clean up an image or amplify certain sections
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is MORPHOLOGY?

A

Refers to the study of the form and structure of organisms

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

What is meant by CONNECTIVITY?
What is 6-CONNECTIVITY and how does it compare to 26-CONNECTIVITY?

A

How many voxels are effected around the target voxel, used to smooth effects and remove hard lines

6-connectivity means that only the central square of each face of a cube is affected while 26-connectivity means all voxels surrounding the point of interest is affected.

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

What is a STRUCTURING ELEMENT?

A

A group of pixels of a given size, centred around a central pixel

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

What is the UNION OPERATION?

A

A logic ‘or’ - either element + their overlap

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

What is the INTERSECTION OPERATION?

A

A logic ‘and’ - only the area of overlap

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

What is the DIFFERENCE OPERATION?

A

A monodirectional subtraction

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

What is the COMPLEMENT OPERATION?

A

A logic ‘not’ - everything but the object

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

What is a TRANSLATION?

A

The relocation of a given set to another location inside an image

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

What are the STEPS TO DILATION (4)?

A

An operation that expands a set
1) The structuring element superimposes itself on a given pixel
2) It examines whether all of the pixels under the element have a value of 1
3) If no, sets all to 1
4) The structuring element repeats this for every element in the set

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

What is meant by a MASK?

A

Used to protect/isolate an area so it isn’t affected by further modifications

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

What are the STEPS TO EROSION?

A

An operation that diminishes a set
1) The structuring element superimposes itself onto a given pixel outside the dataset
2) Examines whether any of the pixels of the set are adjacent
3) if so, sets them to 0
4) The structuring element repeats this process for every element outside the set

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

What is THRESHOLDING and WHEN IS IT USED?

A

A process of isolating a defined range of values
Used to convert from grayscale to binary, creating masks and discarding unwanted information.
Using a threshold value, T to differentiate between what is part of the image and what is background

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

What is meant by OPENING an image?

A

An erosion followed by a dilation

17
Q

Why carry out an OPENING?

A
  • Suppresses small connections
  • Removes small artefacts
  • Smooths edges
18
Q

What is meant by CLOSING an image?

A

A dilation followed by an erosion

19
Q

Why carry out a CLOSING?

A
  • Fills holes within a mask
  • Rejoins erroneously separated structures
20
Q

What is REGION GROWING?

A
  • A way of creating a mask
  • Used in 3D imaging
  • Similarity based, if adjacent voxels have similar parameters they will be added to the same region
21
Q

What is meant by SEGMENTAION?

A

Partitioning an image into multiple regions (segments)
can be edge-based or region-based