Share this

In a left turn scenario without guide lines, how does autonomous driving plan its trajectory?

2026-04-06 04:48:59 · · #1

What techniques are required for a left turn without guide lines?

First, a core issue must be clarified: in scenarios without guide lines, trajectory planning is no longer simply "following the center of the lane." Lane boundaries, road geometry, and even the intentions of road users may be unclear. The system must make choices amidst uncertainty, determining which path is "legal and reasonable," when to yield priority, when to aggressively cut into gaps, and how to ensure passenger comfort while satisfying dynamic constraints. Achieving these goals requires the coordinated efforts of four levels: reliable environmental perception, accurate behavior prediction, robust behavioral decision-making (behavioral-level planning), and trajectory generation and control that satisfies dynamic and safety constraints (trajectory/motion level).

At the perception layer, autonomous driving first needs to achieve high-precision detection and tracking of environmental elements. Cameras are responsible for recognizing traffic signs, curbs, sidewalks, and vehicle shapes; radar provides velocity vectors at long range and in adverse weather conditions; and lidar (if equipped) can distinguish between static obstacles and dynamic targets in a 3D point cloud. However, in "no guide lines" scenarios, lane boundaries cannot serve as reliable references. In this case, the system will use road edges (shoulders, porches, sidewalk edges) and the directions of other road users as alternative references. In this scenario, high-precision positioning (GNSS+IMU+visual/laser positioning) is crucial. However, high-precision positioning can drift in urban canyons or tunnels. Therefore, sensor fusion must provide a stable reference frame to ensure that subsequent predictions and trajectory planning have a reliable trajectory baseline.

The goal of the prediction layer is to estimate the possible trajectory distribution of other road users in the next few seconds. At intersections without guide lines, the behavior of other vehicles is more diverse; some will slow down to yield, some will seize small gaps to cross, and others may speed up to cut in. Predictive models typically output multimodal future trajectory distributions, with each trajectory carrying a probability weight. Common techniques include physical models based on trajectory history, learning models with social forces or interaction terms, and hybrid models combining map and intent understanding. It must be emphasized that the uncertainty of prediction is one of the core inputs to trajectory planning. The decision layer will not only use the "most likely" trajectory to assess collision risk, but will also robustly handle multiple possibilities, ensuring a safety boundary in the probability space.

The behavioral decision-making layer (or strategy layer) primarily addresses the "what should I do?" question, determining whether to wait, lean forward, or turn immediately. In left turns without guide lines, the decision-making process is often more important than path details. The decision-maker needs to consider legal rules (e.g., right-of-way), local driving culture (e.g., the presence of overtaking), real-time traffic density, oncoming vehicle speed and acceleration trends, and the vehicle's own performance limitations to determine whether to accept a certain time interval (gap). Many systems employ a hybrid approach based on rules and probability. In scenarios with clear rules, rule-based decisions are made first (e.g., "yield to oncoming traffic"). When rules are ambiguous or scenarios are complex, cost/benefit-based optimization or game theory models are introduced to select the optimal strategy. A more advanced approach uses a probabilistic safety boundary—selecting the action that avoids a collision with a given confidence level under any prediction.

At the trajectory generation layer, the system needs to transform behavioral decisions into specific time-parameterized paths (x(t), y(t), θ(t)), ensuring that the trajectory satisfies vehicle dynamics and passenger comfort constraints while avoiding predicted dynamic obstacles. Common methods can be divided into two main categories: sampling generation and optimization solution. Sampling generation methods generate a large number of candidate trajectories (e.g., sampling curves with different curvatures and speeds) within a reference region given by the behavioral layer. Collision detection, dynamic feasibility verification, and cost evaluation are performed on each candidate trajectory, ultimately selecting the optimal solution. Optimization methods treat trajectory generation as a constrained optimization problem, minimizing one or more cost terms (e.g., trajectory deviation, acceleration/jerk penalty, safety distance violation, etc.), and obtaining continuous trajectories through a numerical solver. Optimization methods are generally smoother and have fewer parameters, but are more sensitive to initial values ​​and solution time; sampling methods are more global, but computationally intensive and require effective candidate selection strategies.

What factors need to be considered when making a left turn without guide lines?

In left turns without guide lines, the reference coordinate system of the trajectory is crucial. Many systems use the Frenet coordinate system to optimize the lateral trajectory on an existing reference path. However, when a reference path does not exist, a "temporary reference line" must first be constructed. This reference line is typically generated based on road geometry (the line connecting the middle of the two roads or a curve fit) and the desired turning arc (e.g., a circular arc or a clothoid curve). When generating the reference line, the turning radius and the vehicle's minimum turning circle must be considered, while also allowing safety space for pedestrians, bicycles, and other vehicles. Subsequently, the speed curve and lateral offset are optimized in the Frenet coordinates of this reference line, and finally mapped back to the global coordinate system.

For automobiles, safety is the primary constraint, often reflected in trajectory optimization through hard constraints or high penalty terms. Hard constraints directly prohibit trajectories from entering the collision set, while high penalty terms strongly punish situations where the distance to other objects is too small in the objective function. In practical deployments, a common strategy is to first statically filter out obviously dangerous candidate trajectories using a conservative "safety envelope," and then perform finer-grained optimization in the remaining space. The size of the safety envelope should match the prediction uncertainty; when the prediction is highly uncertain, the safety envelope is enlarged, thus making the decision more conservative.

The choice of time scale is also crucial. While lane-keeping or high-speed constant-speed driving trajectories can be planned with longer time windows (e.g., 5-10 seconds), short-term, high-frequency trajectory updates are more important for scenarios with high immediacy and frequent interactions, such as left turns at intersections. A typical approach is to use a hierarchical temporal sequence: the behavior layer determines the strategy (wait or enter) for the next few seconds, while the trajectory layer generates a high-resolution trajectory for the controller to follow within a shorter time window (13 seconds). Simultaneously, the system continuously corrects the predictions online, and the trajectory can be interrupted or replanned during execution to handle unexpected changes.

In practical decision-making for left turns without guide lines, a common and intuitive metric is the "acceptable gap" or "time gap." This metric measures whether the time interval between the oncoming or lateral vehicle and our vehicle is sufficient to safely complete the left turn. In engineering, the acceptable gap is typically converted into speed and acceleration boundaries: if the oncoming vehicle takes t seconds to reach the intersection, and our vehicle takes τ seconds to complete the left turn, the system determines that the time gap is acceptable if t - τ > safety margin. The safety margin is not constant; it is affected by road conditions, visibility, the vehicle's acceleration capability, prediction of the oncoming vehicle's acceleration behavior, and legal requirements. In congested and low-speed situations, the allowed time difference is smaller; in situations with high-speed oncoming traffic or poor visibility, the system significantly increases the safety margin.

Human-vehicle interaction and nonverbal communication are particularly important for human drivers when making left turns without guide lines. Since autonomous vehicles lack human eye contact, gestures, or nods, they need to communicate their intentions to surrounding road users through other means. The most basic method is standardized signals; activating the turn signal is the most direct expression of intent. If necessary, the vehicle can make a slight forward creep to indicate its intention to enter, while ensuring the ability to stop urgently at any time. Some research and applications have introduced external traffic lights or visual screens to convey "I yield" or "I am turning" messages to pedestrians and drivers, but these are still experimental methods with limited adoption and legal acceptance. Therefore, a conservative and clear signal strategy combined with timely gestures (such as a stable and predictable deceleration curve) is currently the most practical form of "communication."

When discussing model and algorithm details, the limitations of dynamics and tire models cannot be ignored. For passenger vehicles, commonly used kinematic bicycle models and more sophisticated dynamic models can be used to ensure trajectory feasibility. During trajectory generation, the maximum lateral acceleration, maximum longitudinal acceleration, and maximum steering angular velocity are constrained to prevent trajectories that the vehicle cannot follow. Passenger comfort is also translated into constraints or costs; abrupt changes in acceleration, jerk, and lateral acceleration are penalized to ensure smooth cornering.

In situations of high uncertainty or unpredictable adversary behavior, probabilistic and robust control methods become particularly important. Frameworks based on Partially Observable Markov Decision Processes (POMDPs) can provide optimal strategies under conditions of incomplete observation and behavioral uncertainty, but their computational complexity is typically high. In practice, systems often employ approximation methods or use them only at critical moments. Another engineering approach is to use risk-based optimization, which defines a risk function that measures the probability of a collision or near-collision during trajectory execution and controls the risk within an acceptable threshold during optimization. This way, decision-making considers not only expected costs but also tail risks (low-probability but high-cost events).

Data-driven approaches are rapidly evolving, particularly models designed to learn "human-acceptable behavior." By learning from vast amounts of traffic scenario data, autonomous driving systems can learn scenario-specific implicit rules (e.g., drivers in a particular city are more likely to yield in specific situations), thereby generating more "social" trajectories. However, the interpretability and verifiability of these models remain challenges. In safety-critical scenarios, pure learning methods typically need to be combined with rule/physical models to maintain predictability and controllability under extreme conditions.

Simulation and validation are the last line of defense to ensure the viability of the strategy. In the laboratory, the system is exposed to thousands of unguided left-turn scenarios in a large-scale simulation environment, testing its performance under various weather conditions, visibility, road geometry, and vehicle strategies. The simulation needs to cover rare but dangerous corner cases, such as a motorcycle suddenly darting out from the roadside or an oncoming vehicle braking suddenly. Real-world road testing needs to be gradual, progressing from closed areas to low-traffic sections and then to complex urban intersections, progressively reducing the need for safety driver intervention. This gradual validation is not only a technical requirement but also a necessity for compliance and ethics.

In engineering practice, many details affect the final performance of autonomous vehicles in left-turn scenarios without guide lines. The installation position and viewing angle of sensors determine the visible range of the intersection, and the synchronization and timestamps of cameras and LiDAR are crucial for multi-sensor fusion. The decision frequency must match the controller frequency; too low a frequency will cause lag in highly dynamic scenarios, while too high a frequency will cause computational resource bottlenecks. The system also needs to be designed with fallback strategies for extreme situations. For example, when sensor data is unreliable or a sensor suddenly fails, it should immediately enter a conservative mode—such as stopping at a safe location or slowly exiting the intersection while issuing a hazard signal.

Final words

In summary, unprotected left turns without guide lines are not a problem that can be solved by a single algorithm, but rather a system-level challenge. Achieving both safety and efficiency requires end-to-end collaborative design from perception to control. Perception provides a reliable world model, prediction reveals a multimodal future, decision-making finds a balance between rules and risks, and trajectory generation seeks the optimal solution between dynamics, comfort, and safety. Coupled with sound engineering implementation, comprehensive simulation verification, and cautious road testing, autonomous vehicles can then perform left turns in this seemingly simple yet highly variable scenario, much like a cautious and considerate human driver.

Read next

Benefit Analysis and Countermeasures for Implementing Green Lighting Projects

1. Introduction Green lighting is a descriptive term for lighting systems that are highly efficient, energy-saving, and ...

Articles 2026-02-22
CATDOLL Maruko 88CM TPE Doll

CATDOLL Maruko 88CM TPE Doll

Articles
2026-02-22
CATDOLL 135CM Sasha

CATDOLL 135CM Sasha

Articles
2026-02-22
CATDOLL 131CM Amber Silicone Doll

CATDOLL 131CM Amber Silicone Doll

Articles
2026-02-22