Convert Figma logo to code with AI

carla-simulator logocarla

Open-source simulator for autonomous driving research.

11,920
3,819
11,920
1,129

Top Related Projects

25,600

An open autonomous driving platform

51,705

openpilot is an operating system for robotics. Currently, it upgrades the driver assistance system on 275+ supported cars.

16,716

Open source simulator for autonomous vehicles built on Unreal Engine / Unity, from Microsoft AI & Research

A ROS/ROS2 Multi-robot Simulator for Autonomous Vehicles

A self-driving car simulator built with Unity

Autoware - the world's leading open-source software project for autonomous driving

Quick Overview

CARLA is an open-source simulator for autonomous driving research. It provides a realistic urban environment with various weather conditions, vehicles, and pedestrians, allowing researchers and developers to test and train autonomous driving algorithms in a safe, controlled virtual environment.

Pros

  • Highly realistic graphics and physics simulation
  • Supports various sensors including cameras, LiDAR, and GPS
  • Extensive Python API for easy integration with machine learning frameworks
  • Active community and regular updates

Cons

  • High system requirements for optimal performance
  • Steep learning curve for beginners
  • Limited variety of urban environments compared to real-world scenarios
  • Can be resource-intensive, especially for large-scale simulations

Code Examples

  1. Connecting to the CARLA server and spawning a vehicle:
import carla

client = carla.Client('localhost', 2000)
world = client.get_world()

blueprint_library = world.get_blueprint_library()
vehicle_bp = blueprint_library.filter('vehicle.tesla.model3')[0]
spawn_point = world.get_map().get_spawn_points()[0]
vehicle = world.spawn_actor(vehicle_bp, spawn_point)
  1. Adding a camera sensor to the vehicle:
camera_bp = blueprint_library.find('sensor.camera.rgb')
camera_bp.set_attribute('image_size_x', '800')
camera_bp.set_attribute('image_size_x', '600')
camera_transform = carla.Transform(carla.Location(x=1.5, z=2.4))
camera = world.spawn_actor(camera_bp, camera_transform, attach_to=vehicle)
  1. Applying control to the vehicle:
control = carla.VehicleControl()
control.throttle = 0.5
control.steer = 0.2
vehicle.apply_control(control)

Getting Started

  1. Install CARLA:

    pip install carla
    
  2. Start the CARLA server:

    ./CarlaUE4.sh
    
  3. Run a Python script to connect and interact with the simulator:

    import carla
    
    client = carla.Client('localhost', 2000)
    world = client.get_world()
    
    # Your simulation code here
    
  4. Explore the CARLA documentation for more advanced features and examples.

Competitor Comparisons

25,600

An open autonomous driving platform

Pros of Apollo

  • Comprehensive autonomous driving platform with real-world deployment focus
  • Extensive hardware integration and support for various sensors
  • Strong community and industry partnerships

Cons of Apollo

  • Steeper learning curve due to complexity
  • Higher system requirements for running simulations
  • Less focus on visual realism compared to CARLA

Code Comparison

Apollo (C++):

void Planning::RunOnce(const LocalView& local_view,
                       ADCTrajectory* const trajectory_pb) {
  // Planning logic implementation
}

CARLA (Python):

def run_step(self, vehicle, sensors_data):
    # Autonomous driving logic implementation
    pass

Key Differences

  • Apollo is a full-stack autonomous driving platform, while CARLA is primarily a simulation environment
  • Apollo focuses on real-world deployment, whereas CARLA emphasizes research and development
  • CARLA offers more realistic graphics and urban environments, while Apollo provides more comprehensive sensor integration

Use Cases

  • Apollo: Developing and testing complete autonomous driving systems for real-world deployment
  • CARLA: Simulating urban driving scenarios for research, algorithm development, and initial testing of autonomous driving components
51,705

openpilot is an operating system for robotics. Currently, it upgrades the driver assistance system on 275+ supported cars.

Pros of openpilot

  • Real-world application: Designed for actual vehicle control and autonomous driving
  • Active community: Large user base contributing to development and testing
  • Hardware compatibility: Supports various car models and aftermarket devices

Cons of openpilot

  • Limited simulation capabilities: Primarily focused on real-world deployment
  • Steeper learning curve: Requires understanding of automotive systems and hardware

Code Comparison

openpilot (Python):

def update(self):
  self.sm.update()
  self.state = State.from_dict(self.sm['controlsState'])
  self.enabled = self.state.enabled
  self.active = self.state.active

CARLA (Python):

def tick(self, world, clock):
    self._notifications.tick(world, clock)
    if not self._show_info:
        return
    t = world.get_snapshot().timestamp

Summary

openpilot is a real-world autonomous driving system with broad hardware support and an active community. CARLA, on the other hand, is a powerful simulation environment for developing and testing autonomous driving algorithms. While openpilot excels in practical application, CARLA offers a more controlled and diverse testing environment for research and development purposes.

16,716

Open source simulator for autonomous vehicles built on Unreal Engine / Unity, from Microsoft AI & Research

Pros of AirSim

  • Supports multiple platforms (Windows, Linux) and environments (indoor, outdoor)
  • Offers physics simulation for drones and ground vehicles
  • Provides APIs for various programming languages (C++, Python, C#, Java)

Cons of AirSim

  • Less realistic urban environments compared to CARLA
  • Smaller community and fewer ready-to-use scenarios
  • Limited built-in sensor types

Code Comparison

AirSim Python API example:

import airsim

client = airsim.MultirotorClient()
client.takeoffAsync().join()
client.moveToPositionAsync(-10, 10, -10, 5).join()

CARLA Python API example:

import carla

client = carla.Client('localhost', 2000)
world = client.get_world()
blueprint = world.get_blueprint_library().find('vehicle.tesla.model3')
spawn_point = world.get_map().get_spawn_points()[0]
vehicle = world.spawn_actor(blueprint, spawn_point)

Both simulators offer intuitive APIs for controlling vehicles and accessing sensor data. AirSim focuses on drone simulation and cross-platform support, while CARLA excels in realistic urban environments and traffic scenarios. The choice between them depends on specific project requirements and the type of autonomous systems being developed.

A ROS/ROS2 Multi-robot Simulator for Autonomous Vehicles

Pros of LGSVL Simulator

  • More flexible and customizable environment creation
  • Better support for ROS (Robot Operating System) integration
  • Easier to set up and use for beginners

Cons of LGSVL Simulator

  • Smaller community and less extensive documentation compared to CARLA
  • Fewer built-in scenarios and less diverse pre-made assets
  • Less frequent updates and maintenance

Code Comparison

LGSVL Simulator (Python API):

import lgsvl

sim = lgsvl.Simulator(address="localhost", port=8181)
ego_vehicle = sim.add_agent("Lincoln2017MKZ (Apollo 5.0)", lgsvl.AgentType.EGO, state)
sim.run(time_limit=10)

CARLA (Python API):

import carla

client = carla.Client('localhost', 2000)
world = client.get_world()
blueprint = world.get_blueprint_library().find('vehicle.lincoln.mkz2017')
vehicle = world.spawn_actor(blueprint, spawn_point)
world.tick()

Both simulators offer Python APIs for vehicle spawning and simulation control. LGSVL's API appears slightly more concise, while CARLA's API provides more granular control over the simulation environment.

A self-driving car simulator built with Unity

Pros of self-driving-car-sim

  • Simpler and more lightweight, making it easier to set up and run
  • Designed specifically for Udacity's Self-Driving Car Nanodegree, providing a focused learning experience
  • Includes a track editor for creating custom environments

Cons of self-driving-car-sim

  • Less realistic graphics and physics compared to CARLA
  • Limited sensor options and environmental conditions
  • Lacks advanced features like pedestrians, traffic, and weather simulation

Code Comparison

CARLA example (Python):

import carla

client = carla.Client('localhost', 2000)
world = client.get_world()
blueprint = world.get_blueprint_library().find('vehicle.tesla.model3')
spawn_point = world.get_map().get_spawn_points()[0]
vehicle = world.spawn_actor(blueprint, spawn_point)

self-driving-car-sim example (Unity/C#):

public class CarController : MonoBehaviour
{
    private float steeringAngle;
    private float acceleration;

    void FixedUpdate()
    {
        ApplySteeringAndAcceleration();
    }
}

The code examples show that CARLA uses a Python API for vehicle spawning and control, while self-driving-car-sim uses Unity's C# scripting for car behavior. CARLA's approach offers more flexibility and realism, while self-driving-car-sim's Unity-based system is more accessible for beginners.

Autoware - the world's leading open-source software project for autonomous driving

Pros of Autoware

  • Real-world focused: Designed for actual autonomous vehicle deployment
  • Comprehensive: Includes planning, perception, and control modules
  • Open-source ecosystem: Large community and extensive ROS integration

Cons of Autoware

  • Steeper learning curve: More complex setup and configuration
  • Hardware requirements: Needs powerful hardware for full functionality
  • Limited simulation capabilities: Primarily focused on real-world applications

Code Comparison

CARLA (Python):

import carla

client = carla.Client('localhost', 2000)
world = client.get_world()
blueprint = world.get_blueprint_library().find('vehicle.tesla.model3')
spawn_point = carla.Transform(carla.Location(x=230, y=195, z=40))
vehicle = world.spawn_actor(blueprint, spawn_point)

Autoware (C++):

#include <autoware_auto_msgs/msg/vehicle_kinematic_state.hpp>
#include <rclcpp/rclcpp.hpp>

rclcpp::Node::SharedPtr node = rclcpp::Node::make_shared("vehicle_node");
auto publisher = node->create_publisher<autoware_auto_msgs::msg::VehicleKinematicState>("/vehicle/state", 10);

Both repositories offer valuable tools for autonomous vehicle development, with CARLA focusing on simulation and Autoware on real-world deployment. CARLA provides an easier entry point for beginners, while Autoware offers a more comprehensive solution for production-ready autonomous systems.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

CARLA Simulator

Documentation

carla.org download documentation forum discord

CARLA is an open-source simulator for autonomous driving research. CARLA has been developed from the ground up to support development, training, and validation of autonomous driving systems. In addition to open-source code and protocols, CARLA provides open digital assets (urban layouts, buildings, vehicles) that were created for this purpose and can be used freely. The simulation platform supports flexible specification of sensor suites and environmental conditions.

CARLA Video

[!NOTE] This is the development branch ue5-dev for the Unreal Engine 5.5 version of CARLA. This branch exists in parallel with the Unreal Engine 4.26 version of CARLA, in the ue4-dev branch. Please be sure that this version of CARLA is suitable for your needs as there are significant differences between the UE 5.5 and UE 4.26 versions of CARLA.

Recommended system

  • Intel i7 gen 9th - 11th / Intel i9 gen 9th - 11th / AMD Ryzen 7 / AMD Ryzen 9
  • +32 Gb RAM memory
  • NVIDIA RTX 3070/3080/3090 / NVIDIA RTX 4090 or better
  • 16 Gb or more VRAM
  • Ubuntu 22.04 or Windows 11

[!NOTE] Ubuntu version 22.04 and Windows version 11 are required, the Unreal Engine 5.5 version of CARLA will not work on Ubuntu 20.04 or Windows 10 or lower.

Documentation

The CARLA documentation is hosted on ReadTheDocs. Please see the following key links:

CARLA Ecosystem

Repositories associated with the CARLA simulation platform:

Like what you see? Star us on GitHub to support the project!

Paper

If you use CARLA, please cite our CoRL’17 paper.

CARLA: An Open Urban Driving Simulator
Alexey Dosovitskiy, German Ros, Felipe Codevilla, Antonio Lopez, Vladlen Koltun; PMLR 78:1-16 [PDF] [talk]

@inproceedings{Dosovitskiy17,
  title = {{CARLA}: {An} Open Urban Driving Simulator},
  author = {Alexey Dosovitskiy and German Ros and Felipe Codevilla and Antonio Lopez and Vladlen Koltun},
  booktitle = {Proceedings of the 1st Annual Conference on Robot Learning},
  pages = {1--16},
  year = {2017}
}

Building CARLA with Unreal Engine 5.5


Clone this repository locally from GitHub, specifying the ue5-dev branch:

git clone -b ue5-dev https://github.com/carla-simulator/carla.git CarlaUE5

In order to build CARLA, you need acces to the CARLA fork of Unreal Engine 5.5. In order to access this repository, you must first link your GitHub account to Epic Games by following this guide. You then also need to use your git credentials to authorise the download of the Unreal Engine 5.5 repository.

Building in Linux:

Run the setup script from a terminal open in the CARLA root directory:

cd CarlaUE5
./CarlaSetup.sh --interactive

The setup script will prompt you for your sudo password, in order to install the prerequisites. It will then prompt you for your GitHub credentials in order to authorise the download of the Unreal Engine repository.

The setup script will install by default Python 3 using apt. If you want to target an existing Python installation, you should use the --python-root=PATH_TO_PYTHON argument with the relevant Python installation path. You can use whereis python3 in your chosen environment and strip the /python3 suffix from the path.

Building in Linux unattended:

If you want to run the setup script unattended, your git credentials need to be stored in an environment variable. Add your github credentials to your .bashrc file:

export GIT_LOCAL_CREDENTIALS=username@github_token

Then run the setup script using the following command:

cd CarlaUE5
sudo -E ./CarlaSetup.sh

This will download and install Unreal Engine 5.5, install the prerequisites and build CARLA. It may take some time to complete and use a significant amount of disk space.

If you prefer to add the git credentials in the terminal, use the following command:

cd CarlaUE5
sudo -E env GIT_LOCAL_CREDENTIALS=github_username@github_token ./CarlaSetup.sh 

Building in Windows:

To build in Windows, run the batch script:

cd CarlaUE5
CarlaSetup.bat

Unattended mode is currently unavailable in Windows, you will need to enter GitHub credentials or administrator privileges when prompted.

Rebuilding CARLA

Once the setup is complete, you can execute subsequent builds with the following commands in a terminal open in the CARLA root directory. In Linux, run these commands in a standard terminal. In Windows, open the x64 Native Tools Command Prompt for Visual Studio 2022.

Configure:

Linux:

cmake -G Ninja -S . -B Build --toolchain=$PWD/CMake/Toolchain.cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_ROS2=ON

Windows:

cmake -G Ninja -S . -B Build --toolchain=$PWD/CMake/Toolchain.cmake -DCMAKE_BUILD_TYPE=Release

[!NOTE] If you intend to target a specific Python installation, you should add both these arguments to the above cmake command: -DPython_ROOT_DIR=PATH and -DPython3_ROOT_DIR=PATH.

Build:

Linux and Windows:

cmake --build Build

Build and install the Python API:

Linux and windows:

cmake --build Build --target carla-python-api-install

Launch the editor:

cmake --build Build --target launch

For more instructions on building CARLA UE5, please consult the build documentation for Linux or Windows.

Contributing

Please take a look at our Contribution guidelines.

Licenses

CARLA licenses

CARLA specific code is distributed under the MIT License.

CARLA specific assets are distributed under the CC-BY License.

CARLA Dependency and Integration licenses

Unreal Engine 5 follows its own license terms.

CARLA uses some dependencies related to 3rd party integrations:

CARLA uses the Autodesk FBX SDK for converting FBX to OBJ in the import process of maps. This step is optional, and the SDK is located here

This software contains Autodesk® FBX® code developed by Autodesk, Inc. Copyright 2020 Autodesk, Inc. All rights, reserved. Such code is provided "as is" and Autodesk, Inc. disclaims any and all warranties, whether express or implied, including without limitation the implied warranties of merchantability, fitness for a particular purpose or non-infringement of third party rights. In no event shall Autodesk, Inc. be liable for any direct, indirect, incidental, special, exemplary, or consequential damages (including, but not limited to, procurement of substitute goods or services; loss of use, data, or profits; or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising in any way out of such code."