I am developing some computer vision algorithms for vehicle applications. I am in front of a problem and some help would be appreciated.
Let say we have a calibrated camera attached to a vehicle which captures a frame of the road forward the vehicle: Initial frame
We apply a first filter to keep only the road markers and return a binary image: Filtered image
Once the road lane are separated, we can approximate the lanes with linear expressions and detect the vanishing point: Objective
But what I am looking for to recover is the equation of the normal n into the image without any prior knowledge of the rotation matrix and the translation vector. Nevertheless, I assume L1, L2 and L3 lie on the same plane.
In the 3D space the problem is quite simple. In the 2D image plane, since the camera projective transformation does not keep the angle properties more complex. I am not able to find a way to figure out the equation of the normal.
Do you have any idea about how I could compute the normal?
Thanks, Pm