I want to understand the Hough Transformation for school. I know that we can not represent vertical lines which are parallel to the Y-axis (with the y = m*x+b). But we can do this with the polar coordinates r and theta with (y= - cos(theta)/sin(theta) * x + r/sin(theta)).
But lets say I have a line which goes trough this two points. P1(0,0) and P2(0, 100). So this is a line which is exactly like the Y-Axis. How can this be represented by the polar coordinates r and theta? since r is 0 so theta is also 0. I don't understand how this line can be represented in the hough space... :/
Can someone explain this to me?