Apollo 10.0
自动驾驶开放平台
piecewise_jerk_speed_optimizer.h
浏览该文件的文档.
1/******************************************************************************
2 * Copyright 2019 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 <memory>
24#include <string>
25#include <utility>
26#include <vector>
27#include "modules/planning/tasks/piecewise_jerk_speed/proto/piecewise_jerk_speed.pb.h"
30
31namespace apollo {
32namespace planning {
33
35 public:
36 bool Init(const std::string& config_dir, const std::string& name,
37 const std::shared_ptr<DependencyInjector>& injector) override;
38
39 virtual ~PiecewiseJerkSpeedOptimizer() = default;
40
41 private:
42 common::Status Process(const PathData& path_data,
43 const common::TrajectoryPoint& init_point,
44 SpeedData* const speed_data) override;
45 void AdjustInitStatus(
46 const std::vector<std::pair<double, double>> s_dot_bound, double delta_t,
47 std::array<double, 3>& init_s);
49};
50
53
54} // namespace planning
55} // namespace apollo
A general class to denote the return status of an API call.
Definition status.h:43
bool Init(const std::string &config_dir, const std::string &name, const std::shared_ptr< DependencyInjector > &injector) override
Planning module main class.
#define CYBER_PLUGIN_MANAGER_REGISTER_PLUGIN(name, base)
class register implement
Definition arena_queue.h:37