Apollo  6.0
Open source self driving car software
lidar_obstacle_tracking.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 #pragma once
17 
18 #include <memory>
19 #include <string>
20 
25 
26 namespace apollo {
27 namespace perception {
28 namespace lidar {
29 
31  public:
32  LidarObstacleTracking() = default;
33  virtual ~LidarObstacleTracking() = default;
34 
35  bool Init(const LidarObstacleTrackingInitOptions& options =
37 
39  LidarFrame* frame) override;
40 
41  std::string Name() const override { return "LidarObstacleTracking"; }
42 
43  private:
44  std::shared_ptr<BaseMultiTargetTracker> multi_target_tracker_;
45  std::shared_ptr<BaseClassifier> fusion_classifier_;
46 }; // class LidarObstacleTracking
47 
48 } // namespace lidar
49 } // namespace perception
50 } // namespace apollo
PlanningContext is the runtime context in planning. It is persistent across multiple frames...
Definition: atomic_hash_map.h:25
Definition: base_lidar_obstacle_tracking.h:38
bool Init(const LidarObstacleTrackingInitOptions &options=LidarObstacleTrackingInitOptions()) override
std::string Name() const override
Definition: lidar_obstacle_tracking.h:41
Definition: lidar_obstacle_tracking.h:30
Definition: base_lidar_obstacle_tracking.h:30
Definition: lidar_frame.h:33
Definition: base_lidar_obstacle_tracking.h:34
Definition: lidar_error_code.h:36
LidarProcessResult Process(const LidarObstacleTrackingOptions &options, LidarFrame *frame) override