Find Lines in a cloud of points
问题 I have an array of Points. I KNOW that these points represent many lines in my page. How can I find them? Do I need to find the spacing between clouds of points? Thanks Jonathan 回答1: Maybe the Hough Transform is what you are looking for? Or a linear regression? [EDIT] As it turns out the problem is to identify lines inside a list of 2d coordinates I would proceed this way. A linear regression can only be used for making the best linear adjustment for a set of points, not to detect many lines.