Overview
This was a collaborative project I worked with Donghyuk Park, Yunseong Jeon, and Hyeonggeun Hong.
The project was submitted to Autonomous Driving Capstone Design Contest hosted by Sungkyunkwan University. - 1st prize
This contest was linked with the Autonomous Driving Capstone Design (ICE3051-41) course at Sungkyunkwan University, supervised by Professors Jonghoek Kim, Eunbyung Park, and Il Yong Chun.
Goal
- To create a car-like model, combining a child’s electric car with a Jetson Nano board, that can drive along a track bordered by red traffic cones and stop upon recognizing a stop sign at the end of the road.
Description
- Car-like model design
- A Jetson Nano platform with monocular camera was mounted onto a commercially available child’s car to process data and provide control inputs to the car’s motor.
- Track Following
- Red traffic cones line both sides of the road, defining its boundaries, and the goal is for the car to follow the track without colliding with or veering away from these cones.
- Using deep learning, the steering angle was trained based on specific track conditions. Input data was a 224x224 image array from the camera, and the model used ResNet18.
- To improve training efficiency, preprocessing was applied to the image array before feeding it into the model; the non-road upper portion of the image was cropped, and only the red color of the cones was tracked.
- Object Detection
- At the end of the road, the stop sign is detected, triggering a signal to bring the car’s speed to zero.
- Deep learning was used to train the model for stop sign detection. The input data was a 224x224 image array from the camera, and the model utilized Yolov5s.