Apollo 10.0
自动驾驶开放平台
base_lane_detector.h
浏览该文件的文档.
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
21#include "cyber/common/macros.h"
26
27namespace apollo {
28namespace perception {
29namespace camera {
30
32 std::shared_ptr<base::BaseCameraModel> base_camera_model = nullptr;
33 int gpu_id = 0;
34};
35
37
39 public:
40 BaseLaneDetector() = default;
41
42 virtual ~BaseLaneDetector() = default;
43
44 virtual bool Init(
46
47 // @brief: detect lane from image.
48 // @param [in]: options
49 // @param [in/out]: frame
50 // detected lanes should be filled, required,
51 // 3D information of lane can be filled, optional.
52 virtual bool Detect(const LaneDetectorOptions& options,
53 CameraFrame* frame) = 0;
54
55 virtual std::string Name() const = 0;
56
58}; // class BaseLaneDetector
59
61#define REGISTER_LANE_DETECTOR(name) \
62 PERCEPTION_REGISTER_CLASS(BaseLaneDetector, name)
63
64} // namespace camera
65} // namespace perception
66} // namespace apollo
virtual std::string Name() const =0
virtual bool Init(const LaneDetectorInitOptions &options=LaneDetectorInitOptions())=0
virtual bool Detect(const LaneDetectorOptions &options, CameraFrame *frame)=0
class register implement
Definition arena_queue.h:37
#define PERCEPTION_REGISTER_REGISTERER(base_class)
Definition registerer.h:92
std::shared_ptr< base::BaseCameraModel > base_camera_model