Lesson 2 Flashcards

1
Q

What is a digital image composed of?

A

A large array of discrete dots called pixels.

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

What is the neighborhood of a pixel?

A

The pixels surrounding a given pixel.

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

What does greater spatial resolution mean?

A

More pixels are used to display images.

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

How can you halve the size of an image?

A

By taking out every other row and every other column.

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

What is the purpose of the preprocessing step in digital image processing?

A

To correct defects and enhance contrast for better feature analysis.

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

What are the three different color models mentioned?

A
  • RGB color model
  • CMYK color model
  • HSV color model
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is a point operation in image processing?

A

Applying a simple function y=f(x) to each gray value in the image.

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

What is the formula for calculating grayscale pixel value in scikit-image?

A

Y = 0.2125R + 0.7154G + 0.0721B.

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

What is the significance of the weights used in grayscale conversion?

A

They better represent human perception of red, green, and blue.

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

What are the effects of poor technical image quality?

A
  • Low contrast
  • Noise
  • Blurring
  • Aliasing
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What does top-1 accuracy refer to?

A

Accuracy by comparing the top prediction with the correct class.

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

What types of noise can degrade an image signal?

A
  • Salt and pepper noise
  • Gaussian noise
  • Speckle noise
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is aliasing in images?

A

Occurs when a signal is sampled at slightly less than the period of the original signal.

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

What does image enhancement aim to achieve?

A

To make the result more suitable for a specific application.

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

What are the two main domains for image enhancement?

A
  • Spatial Domain
  • Frequency Domain
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is histogram equalization?

A

Mapping a roughly equal number of pixels to each intensity level for a flat histogram.

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

What is Otsu’s Method used for?

A

To determine the optimal threshold for separating background and foreground pixels.

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

What is adaptive thresholding?

A

Calculating local thresholds with fixed block size surrounding each pixel.

19
Q

What type of intensity transformation can improve image appearance?

A

Gamma transformations.

20
Q

What is the effect of contrast stretching?

A

Improves the appearance of images for better segmentation and recognition.

21
Q

What is the function of a grayscale image to binary image conversion?

A

A pixel becomes white if its gray level is greater than T, black if less than or equal to T.

22
Q

What is the purpose of smoothing in image processing?

A

To reduce noise and improve image quality.

23
Q

What are the two types of blurs mentioned?

A
  • Motion Blur
  • Out of focus Blur
24
Q

What is the formula for contrast stretching?

A

Using percentiles to rescale intensity within a specified range.

25
Q

What does a histogram indicate in a digital image?

A

The distribution of pixel intensities, showing darkness, brightness, and contrast.

26
Q

What is the main goal of image segmentation?

A

To partition an image into meaningful segments for analysis.

27
Q

What is the main output of the preprocessing step in image processing?

A

Images that are ready for further analysis.

28
Q

What is the significance of image quality on deep neural networks?

A

Poor image quality can lead to misclassification by DNNs.

29
Q

What can cause JPEG distortion in images?

A

Compression artifacts during image saving.

30
Q

What is Adaptive Thresholding used for?

A

Better results when there is a large variation in background intensity

Adaptive Thresholding helps in segmenting images by differentiating foreground from background based on varying light conditions.

31
Q

What is the primary function of Point Operators?

A

They do not know anything about their neighbors

Point Operators operate independently on each pixel without considering surrounding pixels.

32
Q

What are the three steps involved in convolutions?

A
  1. Position the mask over the current pixel
  2. Form all products of filter elements with corresponding neighborhood elements
  3. Add up all the products

These steps are repeated for every pixel in the image.

33
Q

What is the basic difference between convolution and correlation?

A

Convolution rotates the kernel by 180 degrees

This distinction is important for understanding how the two processes affect image filtering.

34
Q

What are the three types of kernel sizes used in smoothing operations?

A
  • 3x3 Kernel
  • 5x5 Kernel
  • 7x7 Kernel

Different kernel sizes affect the degree of smoothing applied to the image.

35
Q

What is the purpose of the averaging mask?

A

Used for smoothing an image by averaging pixel values

Averaging masks help reduce noise and detail in images.

36
Q

How does the Gaussian smoothing filter work?

A

Based on the Gaussian probability distribution

The standard deviation (σ) influences the shape of the Gaussian curve, affecting the smoothing effect.

37
Q

What is the role of the median filter in image processing?

A

Removes noise while preserving edges

Median filters replace each pixel value with the median value of neighboring pixels, effectively reducing noise.

38
Q

What is meant by ‘gradient’ in image processing?

A

The direction of most rapid change in intensity

The gradient helps identify edges and transitions in an image.

39
Q

What is the edge strength defined by?

A

The gradient magnitude

Edge strength indicates how strong an edge is based on changes in pixel intensity.

40
Q

Fill in the blank: The Prewitt Operator is used for ______.

A

Edge detection

Prewitt Operators calculate gradients to highlight edges in images.

41
Q

What is the function of the Laplacian filter in image processing?

A

Used for image sharpening

Laplacian filters enhance edges by emphasizing regions of rapid intensity change.

42
Q

True or False: Spatial Filtering can only be used for smoothing images.

A

False

Spatial Filtering can also be applied for sharpening and edge detection.

43
Q

What does the term ‘convolution’ refer to in the context of image processing?

A

A mathematical operation that combines two functions

In image processing, convolution typically involves applying a filter to an image.

44
Q

What does the term ‘smoothing’ refer to in image processing?

A

The process of reducing noise and detail in an image

Smoothing helps in creating a cleaner image for further analysis.