Apollo  6.0
Open source self driving car software
ground_service_detector.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 
17 #pragma once
18 
19 #include <string>
20 
24 
25 namespace apollo {
26 namespace perception {
27 namespace lidar {
28 
30  public:
31  GroundServiceDetector() = default;
32  ~GroundServiceDetector() = default;
33 
34  bool Init(const GroundDetectorInitOptions& options =
35  GroundDetectorInitOptions()) override;
36 
37  bool Detect(const GroundDetectorOptions& options, LidarFrame* frame) override;
38 
39  std::string Name() const override { return "GroundServiceDetector"; }
40 
41  private:
42  GroundServicePtr ground_service_ = nullptr;
43  GroundServiceContent ground_service_content_;
44  double ground_threshold_ = 0.25;
45 };
46 
47 } // namespace lidar
48 } // namespace perception
49 } // namespace apollo
std::shared_ptr< GroundService > GroundServicePtr
Definition: ground_service.h:104
PlanningContext is the runtime context in planning. It is persistent across multiple frames...
Definition: atomic_hash_map.h:25
Definition: base_ground_detector.h:28
Definition: base_ground_detector.h:30
Definition: base_ground_detector.h:32
bool Init(const GroundDetectorInitOptions &options=GroundDetectorInitOptions()) override
Definition: ground_service_detector.h:29
Definition: lidar_frame.h:33
bool Detect(const GroundDetectorOptions &options, LidarFrame *frame) override
std::string Name() const override
Definition: ground_service_detector.h:39