-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathsensors.cc
111 lines (95 loc) · 3.63 KB
/
sensors.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/*
* Copyright (C) 2021 Open Source Robotics Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#include "sensors.hh"
#include "pxr/usd/usdGeom/camera.h"
#include "pxr/usd/usdGeom/gprim.h"
#include "sdf/Camera.hh"
#include "sdf/Lidar.hh"
#include "utils.hh"
namespace usd
{
std::shared_ptr<sdf::Sensor> ParseSensors(
const pxr::UsdPrim &_prim,
USDData &_usdData,
const std::string &_linkName)
{
std::shared_ptr<sdf::Sensor> sensor;
sensor = std::make_shared<sdf::Sensor>();
ignition::math::Pose3d pose;
ignition::math::Vector3d scale(1, 1, 1);
GetTransform(_prim, _usdData, pose, scale, _linkName);
sensor->SetRawPose(pose);
if(_prim.IsA<pxr::UsdGeomCamera>())
{
sensor->SetType(sdf::SensorType::CAMERA);
sdf::Camera camera;
auto variantCamera = pxr::UsdGeomCamera(_prim);
float horizontalAperture = 20.955;
float focalLength;
pxr::GfVec2f clippingRange;
// variantCamera.GetHorizontalApertureAttr().Get(&horizontalAperture);
variantCamera.GetFocalLengthAttr().Get(&focalLength);
variantCamera.GetClippingRangeAttr().Get(&clippingRange);
sensor->SetName(_prim.GetPath().GetName());
camera.SetName(_prim.GetPath().GetName());
camera.SetHorizontalFov(horizontalAperture);
camera.SetLensFocalLength(focalLength);
camera.SetRawPose(pose);
camera.SetNearClip(clippingRange[0]);
camera.SetFarClip(clippingRange[1]);
camera.SetImageWidth(640);
camera.SetImageHeight(480);
camera.SetPixelFormat(sdf::PixelFormatType::RGB_INT8);
sensor->SetCameraSensor(camera);
}
else if (std::string(_prim.GetPrimTypeInfo().GetTypeName().GetText()) == "Lidar")
{
sensor->SetType(sdf::SensorType::LIDAR);
sdf::Lidar lidar;
sensor->SetName(_prim.GetPath().GetName());
float hFOV;
float hResolution;
float vFOV;
float vResolution;
_prim.GetAttribute(pxr::TfToken("horizontalFov")).Get(&hFOV);
_prim.GetAttribute(pxr::TfToken("horizontalResolution")).Get(&hResolution);
_prim.GetAttribute(pxr::TfToken("verticalFov")).Get(&vFOV);
_prim.GetAttribute(pxr::TfToken("verticalResolution")).Get(&vResolution);
hResolution *= 3.1416/180;
vResolution *= 3.1416/180;
hFOV *= 3.1416/180;
vFOV *= 3.1416/180;
lidar.SetHorizontalScanMinAngle(ignition::math::Angle(-hFOV / 2));
lidar.SetHorizontalScanMaxAngle(ignition::math::Angle(hFOV / 2));
lidar.SetHorizontalScanResolution(1);
lidar.SetHorizontalScanSamples(hFOV / hResolution);
lidar.SetVerticalScanMinAngle(ignition::math::Angle(-vFOV / 2));
lidar.SetVerticalScanMaxAngle(ignition::math::Angle(vFOV / 2));
lidar.SetVerticalScanResolution(1);
lidar.SetVerticalScanSamples(vFOV / vResolution);
float minRange;
float maxRange;
_prim.GetAttribute(pxr::TfToken("minRange")).Get(&minRange);
_prim.GetAttribute(pxr::TfToken("maxRange")).Get(&maxRange);
lidar.SetRangeMin(minRange);
lidar.SetRangeMax(maxRange);
lidar.SetRangeResolution(0.1);
sensor->SetLidarSensor(lidar);
}
return sensor;
}
}