bleh Flashcards

1
Q

(T/F)Increasing the number of samples within a fixed range results in higher resolution.

A

True

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

A grayscale image has three different color channels for every pixel.

A

False

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

The morphological opening of an image is simply a dilation followed by an erosion.

A

False

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

Watershed algorithm is used to smoothing the edges in the image.

A

False

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

Canny edge detection uses alignment of the edges when detecting the edges.

A

False

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

Dilation operation in morphological filters can be used removing small noisy pixels from the input image.

A

True

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

In deep learning pipeline, hand-crafted features are used for classification.

A

False

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

If we build a neural network with no activation function, we get a linear classifier.

A

True

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

From the following list of image enhancement techniques covered in class, select the techniques to reduce noise in the original image.

A
  • Median Filtering
  • Weighted Average
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

From the following list of image enhancement techniques covered in class, select the techniques to sharpen the edges in the original image.

A
  • Laplacian
  • Sobel Filter
  • Unsharp Masking
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

From the following list of image enhancement techniques covered in class, select the techniques to improve the contrast in the original image.

A
  • Contrast Stretching
  • Histogram Equalization
  • Power Law
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q
  1. In an input image, each pixel is shown with 8 bits. In order to find the type of the noise, a test pattern is cropped from a flat region in the input images and its histogram is shown. The histogram of the test pattern is shown below. What kind of noise can be estimated from this histogram?
A

Salt and Pepper

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

For ImageNet classification challenge, several convolutional neural networks are designed over the years to achieve better performance. Please sort the following networks from the shallowest to the deepest (from less number of layer to more number of layers).
VGG
AlexNet
ResNet

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

In our class, we covered four different machine vision tasks using Convolutional Neural Networks.
Which task detects all objects in the image and identifies the pixels that belong to each object?

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

Which components of a Convolutional Neural Network is used to reduce the dimensions of the feature maps? Thus, it reduces the number of parameters to learn and the amount of computation performed in the network.

A

Pooling

17
Q

When we visualize the first layer of a deep network, what will we see in the output of these layers?

A

Low Level features such as edges and corners

18
Q

Fill In the blank in following sentence: Generative Adversarial Networks (GANs) jointly train generator and ___________ with a minimax game.

A

Discriminator

19
Q

Select the answers in order to fill in the blanks in the following sentence:
During the backward pass, each node in the graph receives ____________ gradients and multiplies them by ____________ gradients to compute ____________ gradients.

A

Upstream, local, downstream

20
Q

Select the answers in order to fill in the blanks in the following sentence:
In the stereo cameras, we search over disparity to find the correspondence in two stereo images. The disparity of the close objects in the stereo images ___________.

A

Is larger than far objects

21
Q

Which of the following best describes optical flow in computer vison?

A

An algorithm for estimating the motion of objects in a visual scene

22
Q

Which challenge is commonly encountered when estimating optical flow in dynamic scenes?

A

Illumination changes

23
Q

What is the primary purpose of camera calibration in computer vision?

A

Correcting lens distortions

24
Q

Which parameter is NOT typically estimated during camera calibrations?

A

Image Brightness

25
Q

In Convolutional Neural Networks, some times we use “Transfer Learning”. What is Transfer Learning? In what situations, we use it? What advantages does transfer learning offer in CNNs?

A

Transfer learning is the process of using an existing model and retraining it to be used for a new purpose. Situations in which we use it are when there is a lack of training data,