Week3 Flashcards

1
Q

Convolutional Neural Networks

A
  • Van veel data naar weinig data met convolutie

-

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

Facet model of interpolation

A
  • Least squares om coordinaten te schatten

-

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

Correlation

A
  • multiplication of two images

- multiplying an image by a local coefficient schema

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

Difference correlation and convolution

A

Waarbij k en l van -1 tot 1
Bij correlation: F(i+k, j+l)W(k,l)

Bij convolution: F(i-k, j-l)W(k.l)

Conv omschrijven naar corr kan met k’ = -1 en l’ = -1
Dan: F(i+k’, j+l’) W(-k’, -l’)

Een convolutie is een correlatie met een puntgespiegelde coefficienten schema (linksonder komt rechtsboven enz.)

Bijv. [1,0,0] –> [0,0,1]

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

Voordeel convolution

A

Algebraisch beter mee te werken

f(ag) = a(fg)
f(g1 + g2) = fg1 + fg2
f
(gh) = (fg)h
f
g = g*f

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

Translation-invarian linear operators

A

Bijv.

  • smoothing
  • sharpening
  • translation
  • nth order derivatives
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Derivatives at a spatial scale

A

Neem de afgeleide van de blurred image

Gaussian normaalverdeling

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

Gradient

A
  • vector van locale verandering

- de vector wijst naar het lichtste punt van de omgeving

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

Lokaal analyseren

A
- constante waarde
\+
- vlakje van grijswaarde (ene richting ligt andere donker)
\+
- tweede order (parabool etc. )
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Waarom Gaussian derivatives gebruiken?

A

To determine the required local derivatives for the Taylor series in a structural and computationally stabel and serparable manner.

1D is hierbij al voldoende omdat je werkt met de convolutie van x en y as. Oftewel je kan de afgeleide van x en y apart nemen.

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

Hoe krijg je een beeld dat duidelijk een grens aangeeft?

Een grens van kleurovergang / local struct

A

Niet door naar de fx of fy te kijken maar fw gebruiken.

fw = sqrt(fx^2 + fy^2) = || nambla f ||
= grootte van f

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

(Canny) Edge detection

A

De tweede afgeleide in de richting van de gradient moet zo dicht mogelijk bij 0 komen.

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

Gradient Gauge (ijking / standaardizering’)

A

Ipv willekeurig xy stelsel naar een stelsel gericht op de gradient dus x er loodrecht op en y langs de gradient.

x wordt v en y wordt w.

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

Gradient Gauge transformation

A

Rotatie van x en y as.

\ / f = [fx, fy]T = [0, sqrt(fx^2 + fy^2)]T

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