We have been learning about methods like Sobel and Roberts' convolution matrices to detect edges within images, extending to the Canny method to clear them up. But now, we are learning about 'Line' detection, as opposed to 'Edge' detection - with methods like Hough Transform.
Problem is - I've no idea how to even conceptualize the difference between a 'Line' and an 'Edge'. Can someone explain this difference to me without the use of complex mathematical equations etc?
Methods like Sobel and Roberts help you to detect edges in the image. Methods like Hough Transform help to identify if these edges are actually geometrical shapes such as lines, circles and ellipses.