aron_conversions.cpp
Go to the documentation of this file.
1 #include "aron_conversions.h"
2 
5 
6 #include <armarx/navigation/memory/aron/LaserScannerFeatures.aron.generated.h>
7 
8 #include "types.h"
9 
11 {
12 
13 
14  /************ toAron ************/
15 
16  // auto toAron(const LaserScan& laserScan, aron::LaserScan& aronLaserScan)
17  // {
18  // aronLaserScan.scan = toAron(laserScan);
19  // }
20 
21 
22  // LaserScannerFeatures
23 
24  void
26  {
27  dto.center = bo.center;
28  dto.radius = bo.radius;
29  }
30 
31  void
33  {
34  dto.globalPose = bo.pose.matrix();
35  dto.radii = bo.radii;
36  }
37 
38  void
39  toAron(arondto::LaserScannerFeature& dto, const LaserScannerFeature& bo)
40  {
41  toAron(dto.circle, bo.circle);
42  dto.convexHull = bo.convexHull;
43  toAron(dto.ellipsoid, bo.ellipsoid);
44  dto.points = bo.points;
45  }
46 
47  void
48  toAron(arondto::LaserScannerFeatures& dto, const LaserScannerFeatures& bo)
49  {
50  aron::toAron(dto.frame, bo.frame);
51  aron::toAron(dto.frameGlobalPose, bo.frameGlobalPose);
52  aron::toAron(dto.features, bo.features);
53  }
54 
55  void
57  {
58  bo.center = dto.center;
59  bo.radius = dto.radius;
60  }
61 
62  void
64  {
65  bo.pose = dto.globalPose;
66  bo.radii = dto.radii;
67  }
68 
69  void
70  fromAron(const arondto::LaserScannerFeature& dto, LaserScannerFeature& bo)
71  {
72  bo.convexHull = dto.convexHull;
73  fromAron(dto.circle, bo.circle);
74  fromAron(dto.ellipsoid, bo.ellipsoid);
75 
76  // bo.chain = dto.chain;
77  bo.points = dto.points;
78  }
79 
80  void
81  fromAron(const arondto::LaserScannerFeatures& dto, LaserScannerFeatures& bo)
82  {
83  aron::fromAron(dto.frame, bo.frame);
84  aron::fromAron(dto.frameGlobalPose, bo.frameGlobalPose);
85  aron::fromAron(dto.features, bo.features);
86  }
87 
88 } // namespace armarx::navigation::memory
armarx::navigation::memory::LaserScannerFeatures
Definition: types.h:61
armarx::navigation::components::laser_scanner_feature_extraction::Ellipsoid
memory::Ellipsoid Ellipsoid
Definition: EnclosingEllipsoid.h:44
armarx::navigation::memory::fromAron
void fromAron(const arondto::Circle &dto, Circle &bo)
Definition: aron_conversions.cpp:56
armarx::navigation::memory
Definition: ComponentInterface.ice:37
armarx::navigation::components::laser_scanner_feature_extraction::Circle
memory::Circle Circle
Definition: FeatureExtractor.h:40
aron_conversions.h
armarx::navigation::memory::Ellipsoid
Definition: types.h:33
armarx::navigation::memory::Circle
Definition: types.h:40
types.h
armarx::navigation::memory::toAron
void toAron(arondto::Circle &dto, const Circle &bo)
Definition: aron_conversions.cpp:25
armarx::aron::toAron
void toAron(T &dto, const T &bo)
Framework for converting ARON DTOs (Data Transfer Objects) to C++ BOs (Business Objects) and back.
Definition: aron_conversions.h:77
eigen.h
armarx::navigation::memory::LaserScannerFeature
Definition: types.h:46
armarx::aron::fromAron
void fromAron(const T &dto, T &bo)
Definition: aron_conversions.h:84
armarx::aron::bo
const std::optional< BoT > & bo
Definition: aron_conversions.h:174