qp_spline_path_optimizer.h 1.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/******************************************************************************
 * Copyright 2017 The Apollo Authors. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *****************************************************************************/

/**
 * @file qp_path_optimizer.h
 **/

21 22
#ifndef MODULES_PLANNING_OPTIMIZER_QP_SPLINE_PATH_QP_SPLINE_PATH_OPTIMIZER_H_
#define MODULES_PLANNING_OPTIMIZER_QP_SPLINE_PATH_QP_SPLINE_PATH_OPTIMIZER_H_
23

A
Aaron Xiao 已提交
24 25
#include <string>

D
Dong Li 已提交
26
#include "modules/planning/optimizer/path_optimizer.h"
27

D
Dong Li 已提交
28
#include "modules/planning/optimizer/qp_spline_path/qp_spline_path_generator.h"
29 30 31 32

namespace apollo {
namespace planning {

Z
Zhang Liangliang 已提交
33
class QpSplinePathOptimizer : public PathOptimizer {
34
 public:
Z
Zhang Liangliang 已提交
35
  explicit QpSplinePathOptimizer(const std::string& name);
A
Aaron Xiao 已提交
36
  bool Init() override;
37

38
 private:
39
  apollo::common::Status Process(const SpeedData& speed_data,
40 41 42 43
                                 const ReferenceLine& reference_line,
                                 const common::TrajectoryPoint& init_point,
                                 DecisionData* const decision_data,
                                 PathData* const path_data) override;
44 45

 private:
Z
Zhang Liangliang 已提交
46
  QpSplinePathGenerator _path_generator;
47 48 49 50 51
};

}  // namespace planning
}  // namespace apollo

52
#endif  // MODULES_PLANNING_OPTIMIZER_QP_SPLINE_PATH_QP_PATH_OPTIMIZER_H_