You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 6, 2025. It is now read-only.
Contours or Edges: If you have a binary mask, use techniques like contour detection (e.g., OpenCV’s cv2.findContours) to extract the edge points that form the lane boundaries.
Curve Fitting: Alternatively, if you have pixel clusters, fit a polynomial or spline to smooth out the lane line and then sample evenly spaced points along the fitted curve.
Outcome: You end up with two sets of ordered 2D boundary points—one for the left lane and one for the right lane.