Skip to content

Latest commit

 

History

History
159 lines (101 loc) · 6.88 KB

README.md

File metadata and controls

159 lines (101 loc) · 6.88 KB

ADAS: Advanced Driving Assistance System

Description

ADAS includes technologies that assist drivers with the safe operation of a vehicle. It uses automated technology, such as sensors and cameras, to detect nearby obstacles or driver errors, and respond accordingly.This project aims to develop the Autonomy with three main layers: Controls, Route Planning & Mapping, and Perception. Thus this system is designed to provide autonomous driving capabilities for vehicles. Screenshot 2024-04-07 174343 In this project, we implemented a controller in Python and used it to drive a car autonomously around a track in Carla Simulator. The output of the controller will be the vehicle throttle, brake and steering angle commands. The throttle and brake come from the Longitudinal speed control and the steering comes from the Lateral Control.

System Architecture

ADAS can enable various levels of autonomous driving. Level 0 – NO Driving Automation. [Cruise Control] Level 1 – Driver Assist. [Adaptive Cruise Control] Level 2 – Partial Driving Automation [Lane Following] The ADAS system follows a modular architecture, with each layer communicating through well-defined interfaces. The high-level architecture is depicted in the following diagram:

1 . Controls Layer

The Controls layer is responsible for the linear and lateral movement of the vehicle.

Cruise Control and Adaptive Cruise Control

We have implemented a cruise control and adaptive cruise control system using a PID (Proportional-Integral-Derivative) controller for linear control. The PID controller adjusts the vehicle's speed based on the desired speed and the distance to the vehicle in front.

# PID Controller for Linear Control
kp = 0.5  # Proportional gain
ki = 0.1  # Integral gain
kd = 0.2  # Derivative gain

def pid_control(target_speed, current_speed, dt):
    error = target_speed - current_speed
    integral += error * dt
    derivative = (error - previous_error) / dt
    control_output = kp * error + ki * integral + kd * derivative
    previous_error = error
    return control_output

Results for Cruise Control

  • Setting the car to maintain a constant speed without any human efforts.
  • Uses the PID controller for acceleration calculation.
Error v/s Time Velocity v/s Time
image image

Results for Adaptive Cruise Control

Varies the speed to maintain a safe following distance and stay within speed limits using the PID controller

Error v/s Time Velocity v/s Time
image image

Lateral Control and Lane Following

For lateral control and lane following, we have implemented a pure pursuit controller. This algorithm calculates the steering angle required to follow a desired path or trajectory.

# Pure Pursuit Controller for Lateral Control
def pure_pursuit_control(vehicle_state, waypoints):
    look_ahead_distance = 10.0  # Distance to look ahead on the path
    closest_point, nearest_distance = get_closest_point_on_path(vehicle_state.position, waypoints)
    look_ahead_point = get_look_ahead_point(closest_point, waypoints, look_ahead_distance)
    steering_angle = get_steering_angle(vehicle_state, look_ahead_point)
    return steering_angle

These controllers have been tested and validated using the Carla simulation environment.

Results for Pure Pursuite

  • Tracks and Traces the path from selected waypoints.
  • Selects a point from a tunable look-ahead distance and calculates an appropriate steer angle.
  • Look-ahead distance depends on the car velocity.

image

Implementation on Carla

Carla Simulator

image

CARLA is an open-source autonomous driving simulator. It was built from scratch to serve as a modular and flexible API to address a range of tasks involved in the problem of autonomous driving, providing a realistic urban environment and high-fidelity physics simulation. We have utilized the Carla Simulator for testing and validation of our ADAS system.

For Installation procedure and detailed operations:

https://hackmd.io/@Shreyas321/B1p-Ha48a/edit

Launching Carla

  1. In the terminal, go to the Carla_Simulator folder.
  2. Deactivate the Conda environment: conda deactivate
  3. Run the shell file: ./CarlaUE4.sh
  4. The default Carla window will pop up on the screen.

Simulation

  1. Python APIs are used to perform simulations on Carla.
  2. The Carla_Simulator/pythonAPI/examples folder contains example API scripts for better understanding of Carla.
  3. To run an API script, open this folder in the terminal, deactivate the Conda environment, and run the python name.py command to execute the required API.

PythonAPI

These are the files used to manipulate Carla and perform simulations on it.

cruise controller output

WhatsApp.Video.2024-03-28.at.8.09.46.PM.mp4

Adaptive cruise controller output

WhatsApp.Video.2024-04-07.at.11.39.12.PM.mp4

Pure Pursuit output

WhatsApp.Video.2024-04-07.at.11.26.14.PM.mp4

Path Planning

Overview:

Path planning is a fundamental problem in robotics and autonomous systems, involving the determination of a route or path from a start point to a destination while avoiding obstacles and minimizing cost. It is widely used in various applications including robotics, autonomous vehicles, logistics, and gaming.

  • The objective is to:
  1. Ensure the robot or vehicle can navigate safely from the start to the goal.
  2. Avoid obstacles and dynamic changes in the environment.
  3. Ensure the vehicle avoids collisions with static and dynamic obstacles.
  4. Optimize the route for the shortest travel time or distance.
  5. Adhere to traffic laws and regulations.
  6. Provide smooth and comfortable routes for passengers.

Implementation:

  1. Environment Representation: The road network is represented as a graph, where nodes denote intersections and edges represent road segments.
  2. Collision Detection: Algorithms ensure the planned path avoids collisions using techniques like bounding boxes or voxel grids.
  3. Cost Function: Factors in travel time, distance, fuel efficiency, and comfort to determine the optimal path.

Result

Implementing Dijkstra's search algorithm on a road network in Berkeley, California using osmnx and networkx library https://osmnx.readthedocs.io/en/stable/ https://networkx.github.io/documentation/stable/

dijkstra