Lecture 2 Flashcards

1
Q

Histogram

A

Defines the frequency of pixels with certain intensity

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

Histogram probability

A

Sum over L-1(H(i))=N

H(i)/N=P(i)

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

Point operation

A

Output pixels depends on the corresponding input pixel

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

Contrast stretching

A

Smaller intensity range of input and map over entire input.

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

Intensity inversion

A

All light parts become dark, all dark become light

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

Histogram equaliziation

A

Compute intensity histogram of the image, compute probability function from histogram. Compute cumulative probability function. Apply mapping function. Spread out most frequent intensities. Histogram bins more equal.
Formulas on slide

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

Neighborhood operations

A

Each pixel depends on a neighborhood of pixels

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

Linear shift invariance

A

Linearity when multiplying and adding input by scalars gives output multiplied by same scalars and added in same way. Shift in input yields shift output

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

Impulse response

A

Reaction of any system in response to external change

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

LSI operation

A

Fully characterized by impulse response. Formula on slides

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

Border solutions

A
  • Zero padding: Extend with 0 border
  • Clamping: give extra border pixels same value as the ones they have been placed hrizontally
  • Repeating: Repeat the image and put next to each other
  • Mirroring: mirror pixels at border
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Uniform filtering kernel

A

Take average of all neighbors including own value

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

Prewitt

A

Symmetry along x or y, equivalent to first derivative.
1 0 -1
1 0 -1
1 0 -1

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

Sobel

A

Symmetry along x or y. Equal to second derivative
1 0 -1
2 0 -2
1 0 -1

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

Frequency/fourier domain

A

Deal with the rate at which the pixel values are changing in spatial domain. low frequencies away, high frequencies amplified so sharp contrast

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

Gaussian

A

Formula on slide
It is seperable and circularly sysmmetric. It has optimal space-frequency localization. Infinitly smooth and scales naturally

17
Q

seperability

A

Kernels can be seperated in their x and y such that they are easier computable

18
Q

Gradient vector

A
dinv I(x,y)=[Ix(x,y),Iy(x,y)]^T
Points in direction of steepest intensity increase. Orthogonal to lines of equal intensity.
19
Q

Gaussian regulation

A

Add information to improve the accuracyy of the image by edge detection

20
Q

Median vs Gaussian

A

Median for many small sources of noise. Gaussian for large source of noise.

21
Q

Enhancing image

A
  • Reduce noise by combining images

- Deconvoltion: undo the convolution process as much as possible to see underlying image

22
Q

Deconvolution

A
  • inverse image filtering via Fourier domain
  • Regularized linear least-square fitting approach
  • Improved solutions using iterative deconvolution algorithms -> best