Camera.hh
Go to the documentation of this file.
1 /*
2  * Copyright 2019 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 #ifndef SDF_CAMERA_HH_
18 #define SDF_CAMERA_HH_
19 
20 #include <string>
21 #include <ignition/math/Pose3.hh>
22 #include <ignition/utils/ImplPtr.hh>
23 
24 #include <sdf/Error.hh>
25 #include <sdf/Element.hh>
26 #include <sdf/Noise.hh>
27 #include <sdf/sdf_config.h>
28 
29 namespace sdf
30 {
31  // Inline bracket to help doxygen filtering.
32  inline namespace SDF_VERSION_NAMESPACE {
36  enum class PixelFormatType
37  {
39  L_INT8,
40  L_INT16,
41  RGB_INT8,
42  RGBA_INT8,
43  BGRA_INT8,
44  RGB_INT16,
45  RGB_INT32,
46  BGR_INT8,
47  BGR_INT16,
48  BGR_INT32,
49  R_FLOAT16,
51  R_FLOAT32,
57  };
58 
61  {
63  public: Camera();
64 
68  public: bool operator==(const Camera &_alt) const;
69 
74  public: bool operator!=(const Camera &_alt) const;
75 
82  public: Errors Load(ElementPtr _sdf);
83 
88  public: sdf::ElementPtr Element() const;
89 
92  public: std::string Name() const;
93 
96  public: void SetName(const std::string &_name);
97 
100  public: bool Triggered() const;
101 
104  public: void SetTriggered(bool _triggered);
105 
108  public: std::string TriggerTopic() const;
109 
112  public: void SetTriggerTopic(const std::string &_triggerTopic);
113 
116  public: ignition::math::Angle HorizontalFov() const;
117 
120  public: void SetHorizontalFov(const ignition::math::Angle &_hfov);
121 
124  public: uint32_t ImageWidth() const;
125 
128  public: void SetImageWidth(uint32_t _width);
129 
132  public: uint32_t ImageHeight() const;
133 
136  public: void SetImageHeight(uint32_t _height);
137 
141  public: PixelFormatType PixelFormat() const;
142 
145  public: void SetPixelFormat(PixelFormatType _format);
146 
149  public: std::string PixelFormatStr() const;
150 
153  public: void SetPixelFormatStr(const std::string &_fmt);
154 
157  public: double DepthNearClip() const;
158 
161  public: void SetDepthNearClip(double _near);
162 
165  public: double DepthFarClip() const;
166 
169  public: void SetDepthFarClip(double _far);
170 
173  public: double NearClip() const;
174 
177  public: void SetNearClip(double _near);
178 
181  public: void SetHasDepthCamera(bool _camera);
182 
185  public: bool HasDepthCamera() const;
186 
191  public: void SetHasDepthNearClip(bool _near);
192 
195  public: bool HasDepthNearClip() const;
196 
201  public: void SetHasDepthFarClip(bool _far);
202 
205  public: bool HasDepthFarClip() const;
206 
209  public: double FarClip() const;
210 
213  public: void SetFarClip(double _far);
214 
218  public: void SetHasSegmentationType(bool _type);
219 
222  public: bool HasSegmentationType() const;
223 
226  public: const std::string &SegmentationType() const;
227 
230  public: void SetSegmentationType(const std::string &_type);
231 
235  public: void SetHasBoundingBoxType(bool _type);
236 
239  public: bool HasBoundingBoxType() const;
240 
243  public: const std::string &BoundingBoxType() const;
244 
247  public: void SetBoundingBoxType(const std::string &_type);
248 
251  public: bool SaveFrames() const;
252 
255  public: void SetSaveFrames(bool _save);
256 
259  public: const std::string &SaveFramesPath() const;
260 
263  public: void SetSaveFramesPath(const std::string &_path);
264 
267  public: const Noise &ImageNoise() const;
268 
271  public: void SetImageNoise(const Noise &_noise);
272 
275  public: double DistortionK1() const;
276 
279  public: void SetDistortionK1(double _k1);
280 
283  public: double DistortionK2() const;
284 
287  public: void SetDistortionK2(double _k2);
288 
291  public: double DistortionK3() const;
292 
295  public: void SetDistortionK3(double _k3);
296 
299  public: double DistortionP1() const;
300 
303  public: void SetDistortionP1(double _p1);
304 
307  public: double DistortionP2() const;
308 
311  public: void SetDistortionP2(double _p2);
312 
315  public: const ignition::math::Vector2d &DistortionCenter() const;
316 
319  public: void SetDistortionCenter(const ignition::math::Vector2d &_center);
320 
324  public: const ignition::math::Pose3d &RawPose() const;
325 
329  public: void SetRawPose(const ignition::math::Pose3d &_pose);
330 
335  public: const std::string &PoseRelativeTo() const;
336 
341  public: void SetPoseRelativeTo(const std::string &_frame);
342 
349  public: std::string LensType() const;
350 
354  public: void SetLensType(const std::string &_type);
355 
359  public: bool LensScaleToHfov() const;
360 
364  public: void SetLensScaleToHfov(bool _scale);
365 
368  public: double LensC1() const;
369 
372  public: void SetLensC1(double _c1);
373 
376  public: double LensC2() const;
377 
380  public: void SetLensC2(double _c2);
381 
384  public: double LensC3() const;
385 
388  public: void SetLensC3(double _c3);
389 
392  public: double LensFocalLength() const;
393 
396  public: void SetLensFocalLength(double _f);
397 
401  public: const std::string &LensFunction() const;
402 
406  public: void SetLensFunction(const std::string &_fun);
407 
411  public: ignition::math::Angle LensCutoffAngle() const;
412 
416  public: void SetLensCutoffAngle(const ignition::math::Angle &_angle);
417 
421  public: int LensEnvironmentTextureSize() const;
422 
426  public: void SetLensEnvironmentTextureSize(int _size);
427 
430  public: double LensIntrinsicsFx() const;
431 
434  public: void SetLensIntrinsicsFx(double _fx);
435 
438  public: double LensIntrinsicsFy() const;
439 
442  public: void SetLensIntrinsicsFy(double _fy);
443 
446  public: double LensIntrinsicsCx() const;
447 
450  public: void SetLensIntrinsicsCx(double _cx);
451 
454  public: double LensIntrinsicsCy() const;
455 
458  public: void SetLensIntrinsicsCy(double _cy);
459 
462  public: double LensIntrinsicsSkew() const;
463 
466  public: void SetLensIntrinsicsSkew(double _s);
467 
471  public: static PixelFormatType ConvertPixelFormat(
472  const std::string &_format);
473 
477  public: static std::string ConvertPixelFormat(PixelFormatType _type);
478 
481  public: uint32_t VisibilityMask() const;
482 
485  public: void SetVisibilityMask(uint32_t _mask);
486 
489  public: bool HasLensIntrinsics() const;
490 
496  public: sdf::ElementPtr ToElement() const;
497 
499  IGN_UTILS_IMPL_PTR(dataPtr)
500  };
501  }
502 }
503 
504 #endif
sdf::v12::PixelFormatType::RGB_INT8
@ RGB_INT8
sdf::v12::PixelFormatType::BGRA_INT8
@ BGRA_INT8
Error.hh
sdf::v12::PixelFormatType::L_INT16
@ L_INT16
Noise.hh
sdf
namespace for Simulation Description Format parser
Definition: Actor.hh:34
sdf::v12::PixelFormatType
PixelFormatType
Definition: Camera.hh:36
sdf::v12::Errors
std::vector< Error > Errors
A vector of Error.
Definition: Types.hh:106
sdf::v12::PixelFormatType::RGB_INT16
@ RGB_INT16
sdf::v12::PixelFormatType::R_FLOAT32
@ R_FLOAT32
sdf::v12::PixelFormatType::BGR_INT32
@ BGR_INT32
sdf_config.h
sdf::v12::PixelFormatType::RGB_FLOAT16
@ RGB_FLOAT16
sdf::v12::PixelFormatType::RGB_FLOAT32
@ RGB_FLOAT32
SDFORMAT_VISIBLE
#define SDFORMAT_VISIBLE
Definition: system_util.hh:25
sdf::v12::PixelFormatType::RGBA_INT8
@ RGBA_INT8
sdf::v12::PixelFormatType::BAYER_GBRG8
@ BAYER_GBRG8
sdf::v12::PixelFormatType::BAYER_BGGR8
@ BAYER_BGGR8
sdf::v12::Element
class IGNITION_SDFORMAT_VISIBLE Element
Definition: Element.hh:50
sdf::v12::Camera
Information about a monocular camera sensor.
Definition: Camera.hh:60
sdf::v12::PixelFormatType::R_FLOAT16
@ R_FLOAT16
sdf::v12::PixelFormatType::UNKNOWN_PIXEL_FORMAT
@ UNKNOWN_PIXEL_FORMAT
sdf::v12::PixelFormatType::BGR_INT8
@ BGR_INT8
sdf::v12::PixelFormatType::L_INT8
@ L_INT8
sdf::v12::PixelFormatType::RGB_INT32
@ RGB_INT32
sdf::v12::ElementPtr
std::shared_ptr< Element > ElementPtr
Definition: Element.hh:54
sdf::v12::PixelFormatType::BAYER_GRBG8
@ BAYER_GRBG8
sdf::v12::PixelFormatType::BAYER_RGGB8
@ BAYER_RGGB8
Element.hh
sdf::v12::PixelFormatType::BGR_INT16
@ BGR_INT16
sdf::v12::Noise
The Noise class contains information about a noise model, such as a Gaussian distribution.
Definition: Noise.hh:47