MC Lec4-7 Flashcards
true or false: region-growing approach is a type of thresholding data process
false: region-based segmentation
true or false: the area of delineation is subjective and can vary up to 10% per observer
true
the process that divides an image into its constituent parts, objects, or ROIs is:
a) registration
b) segmentation
c) recognition
d) delinearization
b
region-based segmentation is based on:
a) homogenous parts being detected via grey-level thresholding
b) homogenous parts being detected via region growing
c) homogenous parts being detected via region splitting/merging
d) all of the above
d
edge-based segmentation involves abrupt changes in _____ _____ which correspond to edges
grey level
the simplest segmentation strategy is:
a) region-based segmentation
b) thresholding
c) statistical pixel classification
d) all of the above
b
true or false: when the grey levels of the ROI are known from the image histogram, we image can be thresholded to assign a value of 1 to the ROI and a value of 0 to other details. this is known as __________
binarization
bimodal histogram has the object and background pixel intensity grouped in ___ dominant modes
two
when the threshold selected is a constant applied over the entire image, the process is called:
global thresholding
when the threshold value T changes over an image, this is called:
variable thresholding
the two types of variable thresholding are:
local: the value of T is dependent on the properties of a neighbourhood
adaptive: the value of T depends on teh actual spatial coordinate
list the following steps for basic thresholding in order:
- select an initial estimate for the global threshold (T)
- segment the image using T, producing two groups of pixels G1 and G2 on either side of T
- compute a new threshold value, based off the averages of G1 and G2 intensity values. repeat until the T value is smaller than the predefined deltaT value
- compute the average intensity value of G1 and G2 respectively
1243
true or false: the predetermined deltaT value in global thresholding is used to control the number of iterations in situations where speed is an important issue. in general, a larger deltaT, the more iterations the algorithm will perform
false: larger deltaT = LESS iterations. logically, the difference between the computed T should get smaller and smaller each time
true or false: the average intensity of the image is a good initial choice for threshold (T) in global thresholding
true
list the three thresholding histograms:
unimodal, bimodal, trimodal
under what condition, if any, can we perform unimodal histogram thresholding?
if we know the intensity that the ROI is at. otherwise needs to do some pre-processing
which of these would make thresholding easier and harder?
a) large separation between intensity peaks
b) lots of noise/larger peaks
c) small object on large, non-uniform background
d) uniform illumination of image
e) uniform reflectance properties of image
a) easier
b) harder
c) harder
d) easier
e) easier
what is a pre-processing technique to reduce noise and enhance bimodal histogram shape?
median filter smoothing
which of these is not a way to threshold with a non-uniform background?
a) inversing the pattern to correct illumination
b) work around via partitioning variable thresholding techniques
c) correct the global shading pattern via top-hat transformation
d) all of the above enable thresholding with a non-uniform background
d
adaptive thresholding via image partitioning involves:
breaking up the image into sub-images that are approximately uniform and utilising a different threshold segment for each sub-image
true or false: adaptive thresholding typically fails when the ROI and background occupy different size regions
true. this is because the likelihood of regions containing only object or background is higher
true or false: region-growing based segmentation algorithms examine pixels in the neighbourhood based on a pre-defined similarity critereon
true
true or false: the basic difference between thresholding and region-growing segementation is that the latter guarantees the segmented regions of connected pixels, whereas the former may yield regions with holes and disconnected pixels
true. thresholding is pixel based and region growing joins regions
true or false: with region-growing segmentation, the stopping criterion can be based on the minimum number or percentage of neighbourhood pixels required to satisfy the similarity criterion
true