So what is hough lines or the transform , Hough Line Transform is a transform used to detect straight lines. consider a image where u need to find the lines straight lines ,could be horizontal , vertical , diagonal lines in the image u can do that via the hough transform before that there is something called Cartesian coordinate system: Parameters: ( m , b ) . Polar coordinate system: Parameters: ( r , θ ) ( r , θ ) if the line equation is y = m * x +b in the cartesian x, y in the polar it is x = r cos(𝛳) y = r sin(𝛳) . we will see about this in detail from the diagram u can see the inclined line and 𝛳 are related as x = r cos(𝛳) , the adjacent side of 𝛳 y = r sin(𝛳), the opposite side of 𝛳 ' r ' the distance from the origin the reference point to the line which hits the line at 90 degrees ok so by Pythagoras r = sqrt ( x ^2 + y^2) substitute for x and y r = sqrt (r^2 *x^2 cos^2 𝛳 + r...
talks about machine learning ,IOT and web apps