Low level images processing Flashcards
Low Level Image Processing:
- What are the different operations in images:
- Addition (Arithmetic)
- Substraction (Arithmetic)
- Multilication (Arithmetic)
- Division (Arithmetic)
- AND, OR, NOT, … (Logical)
- Substraction (Arithmetic)
What are 4-Neighbours or 8-Neighbours?
It is a operation to make use of spatial relationships between pixels and calculate distance
What is a characteristic of the Euclidean distance?
-It is more accurate and more expensive to calculate, because of the sqrt
What does Intensity level slicing means?
It means highlighting a specific range of intensities in an image
Is Threshold a specific case of Intensity level slicing?
Yes
What kind of threshold are there?
- Binary
- Binary Inverted
- Truncate (thresh if src(x,y) > thresh else src(x,y))
- To Zero (src(x,y) if src(x,y) > thresh else 0)
- To Zero Inverted (0 if src(x,y) > thresh else src(x,y))
- How can be Histograms defined?
- dims: number of parameters
- bins: number of subdivisions in each dim
- range: limits for the values
What two operations can be made from histograms?
- determination and analysis of histogram
- image improvement based on the histogram
How are Dark subject histograms? with highs very close to the start (inverse for Light subject)
Its highs are very close to the start (inverse for Light subject)
How is overexposure histograms?
It has loss of details in bright areas (inverse for underexposure)
What defines Contrast Stretching?
- stretching the bins will create better contrast in the image
What is Histogram Equalization?
- extension of contrast stretching
- reshape the image based on function T(z) to make its histogram flat and wide
- T(z) normally is cumulative function
How is Image Smoothing or blurring done?
- neighbourhood averaging
- used to remove noise or a pre-processing for edge detection
- weighted array is moved over the original image while computing the pixel as a weighted average
How many filters are there?
4
What are the types of filters?
- Average Filter;
- Linear Filter;
- Median filter;
- Weighted Median filter