Apollo  6.0
Open source self driving car software
validation_checker.h
Go to the documentation of this file.
1 /******************************************************************************
2  * Copyright 2018 The Apollo Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *****************************************************************************/
16 
21 #pragma once
22 
23 #include <vector>
24 
25 #include "modules/prediction/proto/lane_graph.pb.h"
26 
27 namespace apollo {
28 namespace prediction {
29 
31  public:
39  const LaneSequence& lane_sequence, const double speed);
40 
46  static bool ValidCentripetalAcceleration(
47  const std::vector<common::TrajectoryPoint>& discretized_trajectory);
48 
54  static bool ValidTrajectoryPoint(
55  const common::TrajectoryPoint& trajectory_point);
56 
57  private:
58  ValidationChecker() = delete;
59 };
60 
61 } // namespace prediction
62 } // namespace apollo
PlanningContext is the runtime context in planning. It is persistent across multiple frames...
Definition: atomic_hash_map.h:25
static double ProbabilityByCentripetalAcceleration(const LaneSequence &lane_sequence, const double speed)
Compute the probability by centripetal acceleration.
static bool ValidCentripetalAcceleration(const std::vector< common::TrajectoryPoint > &discretized_trajectory)
Check the validity of trajectory&#39;s centripetal acceleration.
static bool ValidTrajectoryPoint(const common::TrajectoryPoint &trajectory_point)
Check if a trajectory point is valid.
Definition: validation_checker.h:30