Introduction Flashcards

1
Q

What is upsampling/downsampling and how is it done?

A

Upsampling is to increase the size of the image without changing its content.
Downsampling is the opposite. Its done by analyizing nearby pixels (for every pixel) and using these values to calculate new pixel values.

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

What is it called when an object is being blocked by another object?

A

Occlusion

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

Explain how low and high pass filters work.

A

Low pass filter blocks the highest signal values, or in the case of an image it decreases the disparity between nearby pixels which smooths the image.

High pass filter blocks the lowest signal values, and in the case of an image it sharpens the image. They both work the same, but use different kernels.

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

Mention two areas where Computer Vision can be applied.

A
Safety measures
Health
Security
Autonomous anything (robots, self-driving cars etc.)
Basically anywhere...
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is aperture size, and what happens when you adjust it?

A

Aperture size is the size of the “blockade” that a pinhole camera or similar creates. A bigger pinhole/aperture will let more light in, and as such it determines how much light hits the sensor. Generally, a wider aperture will give you a more shallow depth of field, whereas a smaller aperture will give you a deep depth of field.

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

Mention at least two ways to enhance an image.

A
Remove noise
Increase contrast
Smoothing (using low pass filter)
Sharpening (using high pass filters)
Histogram manipulation
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How does a pinhole camera work?

A

Normally a sensor would get too much light from every direction to get a clear image. The pinhole camera focuses the light into a small area. This also causes the image to be turned upside down. A good example is simply the human pupil.

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

What is a histogram, and how can it be used?

A

A histogram shows the number of all pixel values in an image (ranging from 0-255).

It can be used to:

Measure several things like averages, variance and contrast
Threshold selection
Image enhancement through equalization

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

What is histogram equalization?

A

When you use the histogram to enhance the image. Adjusting contrast by modifying the intensity distribution

Essentially you make the pixel values more linearly distributed

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

What is the general pipeline for image processing?

A

Localization: Where in the image is the object?
Object detection: Roughly separate the objects
Segmentation: Separate an object from background
Classification: Done after segmentation. What is this object?

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