Chapter 12: Flashcards

1
Q

What is the purpose of a Hough transform?

A

Made to detect image lines.

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

What is a normal parameterization of a line?

A

Instead of a line being defined by slope and interecpt, it can be defined by each point having a distance and angle from the origo:

xcos(Ø)+ysin(Ø) = rho

Rho is distance.

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

What is the maximum distance from origo to pixel?

A

R = 0.5 * sqrt(W^2 + H^2)

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

What is the hough space?

A

A line can be represented just by an angle and a distance. The Hough space is a two dimensional coordinate system with these two as parameters.

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

What is a hough transform?

A

For every point in a picture, every line with different Ø and rho is generated. The corrseponding sinusoidial lines are genrated. Interesects are points that share a common line.

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

What is Djikstras algorhytm?

A

Based on dynamic programming. An algorhytm that finds the path with the least cost in an image.

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