1

I'm doing traffic tracking and i want to calculate the width of a lane. I'v used Canny edge detector to detect the lines forming the lane but don't know how to measure the distance between the lines. Can anybody help?

1 Answer 1

1

You could use Hough transform http://en.wikipedia.org/wiki/Hough_transform to get the parameters of your line. With the parameters, it shouldn't be a problem to calculate the distances.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.