w5 Flashcards

1
Q

what is the difference between screening and diagnostics

A

A screening test is given to those who have no symptoms of the condition in question, but tests are performed to find any sign of abnormality associated with a disease.

A diagnostic test is used to find the probability of a suspected condition once initial testing has revealed its possibility. The medical expert concentrates on the region of suspected abnormality, and examines its characteristics to decide if the region exhibits signs related to a particular disease.

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

how is detection of regions of interest performed traditionally, and why is this evaluation not ideal

A

radiological images are interpreted by visual inspection of the images printed slice by slice on film and displayed against a light box.

Not ideal because it is subjective. The third dimension has to be reconstructed mentally by the radiologist by looking at adjacent image slices.

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

what are the different methods of digital deliniation of regions of interest

A

Manual delineation.

Automatic segmentation: bounding-box, edge based, region based, etc.

Semi-automated approaches.

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

what is the disadvantage of using manual delineation

A

inter-(between different people)

and intra-user (between same person) variance

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

what is Segmentation

A

the process that divides an image into its constituent parts, objects, or ROIs.

Segmentation is an essential step before the description, recognition, or classification of an image or its constituents

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

The two major approaches to image segmentation are based on the detection of what two digital characteristics

A

Similarity / region-based segmentation : Homogeneous parts (regions of similar color) are detected based on gray-level thresholding, region growing, and region splitting / merging.

Discontinuity / edge-based segmentation : Abrupt changes in gray level (corresponding to edges) are detected.

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

what is thresholding segmentation (binarization)

A

similarity-based. Image color is thresholded such that features of interest are set to black while other details are rejected, i.e. set to white.

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

what are the different categories of thresholds for thresholding segmentation?

A

Global: when T is a constant applicable over an entire image e.g. there is no light distortion across image.

Variable: when the value of T changes over an image.

Local or regional thresholding: if the value of T at any point (x,y) depends on properties of a neighborhood of (x,y) (e.g., the average intensity of the pixels in the neighborhood).

Dynamic or adaptive thresholding: if T depends on the values of the spatial coordinates (x,y) themselves.

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

what are the steps / algorithm for Basic Global Thresholding

A

Step 1. Select an initial estimate for the global threshold, T.

Step 2. Segment the image using T. This will produce two groups of pixels: G1 = all pixels with intensity values > T and G2 = pixels with values ≤ T.

Step 3. Compute the average (mean) intensity values m1 and m2 for the pixels in regions G1 and G2, respectively.

Step 4. Compute a new threshold: T = (m1 + m2) / 2.

Step 5. Repeat steps 2 - 4 until the difference between values of T in successive iterations is smaller than a predefined parameter ΔT.

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

in what types of images does the Basic Global Thresholding algorithm work best for

A

images where there are reasonably clear valleies between the modes of the histogram.

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

what characteristics affect the quality of the valleys of histograms

A

The separation (distance) between peaks.
The noise content in the image (the modes broaden as noise increases).
The relative sizes of objects and background.
The uniformity of the illumination sources.
The uniformity of the reflectance properties of the image (glare).

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

why would you want to smoothen a medical image

A

to make it more strongly multimodal / improves quality of peaks.

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

if illumination and reflectance cannot be controlled, what are three ways in which you can correct for these distortions?

A

To correct the shading pattern directly e.g. non-uniform (but fixed) illumination can be corrected by multiplying
the image by the inverse of the pattern, which can be obtained by imaging a flat surface of constant intensity.

To “work around” non-uniformities using variable thresholding e.g. using image partitioning.

To correct the global shading pattern e.g. using the top-hat transformation (erosion then dialation).

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

Basic adaptive thresholding via image partitioning is used to compensate for non-uniformities in illumination and/or relfectance.

How is Basic Adaptive Thresholding via Image Partitioning performed, and what type of image is this method good for

A

partition the image (sub-images are approximately uniform) and perform thresholding segmentation on each partition.

good for images when the objects of interest and the background occupy regions of reasonably comparable size. if many segments contain only objects or only backround, then the chances of falsely segmenting those pixels becomes higher.

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

what is Region-growing based segmentation

A

examines pixels in the neighborhood based on a pre-defined similarity criterion. The neighborhood pixels with similar properties are merged to form closed regions for segmentation.

can be extended to merging regions or region splitting.

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

whats the main difference between the products of threshold based segmentation and region-growing based segmentation

A

region-growing methods guarantee that the segmented regions are connected pixels.

On the other hand, thresholding-based segmentation methods may yield regions with disconnected pixels

17
Q

what are the rules for (region growing) based segmentation

A

The union of all of the regions Ri detected spans the entire image, and every pixel must belong to a region.

Ri is a connected region, i = 1,2,…,n.

The regions must be disjoint (no common pixels).

All pixels within a region must have the same intensity.

The intensities of the pixels in different regions are different values.

18
Q

what are the general steps for Region-growing based Segmentation

A

Start with a seed pixel (or a set of seed pixels).

Append to each pixel in the region those of its 4-connected or 8-connected neighbors that have properties (intensities, color, etc.) that are similar to those of the seed.

Stop when the region cannot be grown any further. Sometimes the stopping criterion can be based on the minimum # or % of neighborhood pixels required to satisfy the similarity criterion for inclusion in the growth of the region.