top of page

Video Detection
Once we developed our lane detection algorithm in images, converting this to a video was a simple process.
​
First, we used the vision.VideoFileReader function to read in our video. Then, we used a loop to go frame-by-frame through the video, and run our lane detection on each frame of the video. We saved all of these frames into an array of images, and converted them into a video.
Our video results can be seen below.
bottom of page