Gazebo Sensors

API Reference

9.0.0~pre2
BrownDistortionModel.hh
Go to the documentation of this file.
1/*
2 * Copyright (C) 2022 Open Source Robotics Foundation
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
18#ifndef GZ_SENSORS_BROWNDISTORTIONMODEL_HH_
19#define GZ_SENSORS_BROWNDISTORTIONMODEL_HH_
20
21#include <sdf/sdf.hh>
22
24#include "gz/sensors/Export.hh"
25#include "gz/sensors/config.hh"
26#include "gz/utils/ImplPtr.hh"
27
28namespace gz
29{
30 namespace sensors
31 {
32 // Inline bracket to help doxygen filtering.
33 inline namespace GZ_SENSORS_VERSION_NAMESPACE {
34 //
35 // Forward declarations
36 class BrownDistortionModelPrivate;
37
42 class GZ_SENSORS_VISIBLE BrownDistortionModel : public Distortion
43 {
46
48 public: virtual ~BrownDistortionModel();
49
50 // Documentation inherited.
51 public: virtual void Load(const sdf::Camera &_sdf) override;
52
55 public: double K1() const;
56
59 public: double K2() const;
60
63 public: double K3() const;
64
67 public: double P1() const;
68
71 public: double P2() const;
72
75 public: math::Vector2d Center() const;
76
78 public: virtual void Print(std::ostream &_out) const override;
79
81 GZ_UTILS_IMPL_PTR(dataPtr)
82 };
83 }
84 }
85}
86
87#endif