-
Notifications
You must be signed in to change notification settings - Fork 1
/
welcome.cpp
263 lines (218 loc) · 7.97 KB
/
welcome.cpp
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
//
// Copyright (c) 2023,2024 SICK AG, Waldkirch
//
// SPDX-License-Identifier: Unlicense
#include <cinttypes>
#include <cstdint>
#include <cstdio>
#include <memory>
#include <string>
#include <iostream>
#include <sstream>
#include <chrono>
#include <thread>
#include <CoLaParameterWriter.h>
#include <FrameGrabber.h>
#include <PointCloudPlyWriter.h>
#include <PointXYZ.h>
#include <VisionaryControl.h>
#include <VisionaryType.h>
#include "exitcodes.h"
#include "framewrite.h"
static ExitCode runWelcomeDemo(visionary::VisionaryType visionaryType, const std::string& ipAddress)
{
using namespace visionary;
VisionaryControl visionaryControl(visionaryType);
if (!visionaryControl.open(ipAddress))
{
std::fprintf(stderr, "Failed to open control connection to device.\n");
return ExitCode::eControlCommunicationError;
}
// Stop image acquisition
if (!visionaryControl.stopAcquisition())
{
std::fprintf(stderr, "Failed to stop acquisition.\n");
return ExitCode::eControlCommunicationError;
}
// Wait for the device configuration
std::this_thread::sleep_for(std::chrono::milliseconds(100));
// create a frame grabber suitable for the Visionary type used in visionaryControl
auto pFrameGrabber = visionaryControl.createFrameGrabber();
// the data handler pointer will later contain the frame data
auto pDataHandler = visionaryControl.createDataHandler();
// acquire a single snapshot
if (!visionaryControl.stepAcquisition())
{
std::fprintf(stderr, "Failed to trigger a snapshot\n");
return ExitCode::eControlCommunicationError;
}
// the snapshot has possibly already arrived, so parameter onlyNewer is false
if (!pFrameGrabber->genGetNextFrame(pDataHandler))
{
std::fprintf(stderr, "Frame timeout for snapshot\n");
return ExitCode::eFrameTimeout;
}
else
{
std::printf("Frame received in snapshot mode, frame #%" PRIu32 "\n", pDataHandler->getFrameNum());
// write the frame to disk
writeFrame(visionaryType, *pDataHandler, "");
// Convert data to a point cloud
std::vector<PointXYZ> pointCloud;
pDataHandler->generatePointCloud(pointCloud);
pDataHandler->transformPointCloud(pointCloud);
// Write point cloud to PLY
const std::string framePrefix = std::to_string(pDataHandler->getFrameNum());
std::string plyFilePath = framePrefix + "-pointcloud.ply";
const char* cPlyFilePath = plyFilePath.c_str();
std::printf("Writing frame to %s\n", cPlyFilePath);
if (visionaryType == VisionaryType::eVisionaryS)
PointCloudPlyWriter::WriteFormatPLY(cPlyFilePath, pointCloud, pDataHandler->getRGBAMap(), true);
else
PointCloudPlyWriter::WriteFormatPLY(cPlyFilePath, pointCloud, pDataHandler->getIntensityMap(), true);
std::printf("Finished writing frame to %s\n", cPlyFilePath);
}
// Stop image acquisition
if (!visionaryControl.stopAcquisition())
{
std::fprintf(stderr, "Failed to stop acquisition.\n");
return ExitCode::eControlCommunicationError;
}
// login to change frontend parameters
if (!visionaryControl.login(IAuthentication::UserLevel::AUTHORIZED_CLIENT, "CLIENT"))
{
std::printf("Failed to log into the device.\n");
return ExitCode::eAuthenticationError;
}
// change frontend parameters
if (visionaryType.toString() == "Visionary-S")
{
// set_integrationTime
CoLaCommand setIntegrationTimeUsCommand =
CoLaParameterWriter(CoLaCommandType::WRITE_VARIABLE, "integrationTimeUs").parameterUDInt(3000).build();
auto setIntegrationTimeUsResponse = visionaryControl.sendCommand(setIntegrationTimeUsCommand);
std::cout << "Set integration time to 3000 μs." << std::endl;
}
else if (visionaryType.toString() == "Visionary-T_Mini")
{
// Set FramePeriodUS
CoLaCommand setFramePeriodUsCommand =
CoLaParameterWriter(CoLaCommandType::WRITE_VARIABLE, "framePeriodUs").parameterUDInt(60000).build();
auto setFramePeriodUsResponse = visionaryControl.sendCommand(setFramePeriodUsCommand);
std::cout << "Set frame period to 60000 μs." << std::endl;
}
if (!visionaryControl.logout())
{
std::printf("Failed to logout\n");
return ExitCode::eAuthenticationError;
}
// Wait for the device configuration
std::this_thread::sleep_for(std::chrono::milliseconds(100));
// acquire a single snapshot
if (!visionaryControl.stepAcquisition())
{
std::fprintf(stderr, "Failed to trigger a snapshot\n");
return ExitCode::eControlCommunicationError;
}
// the snapshot has possibly already arrived, so parameter onlyNewer is false
if (!pFrameGrabber->genGetNextFrame(pDataHandler))
{
std::fprintf(stderr, "Frame timeout for snapshot\n");
return ExitCode::eFrameTimeout;
}
else
{
std::printf("Frame received in snapshot mode, frame #%" PRIu32 "\n", pDataHandler->getFrameNum());
// write the frame to disk
writeFrame(visionaryType, *pDataHandler, "");
// Convert data to a point cloud
std::vector<PointXYZ> pointCloud;
pDataHandler->generatePointCloud(pointCloud);
pDataHandler->transformPointCloud(pointCloud);
// Write point cloud to PLY
const std::string framePrefix = std::to_string(pDataHandler->getFrameNum());
std::string plyFilePath = framePrefix + "-pointcloud.ply";
const char* cPlyFilePath = plyFilePath.c_str();
std::printf("Writing frame to %s\n", cPlyFilePath);
if (visionaryType == VisionaryType::eVisionaryS)
PointCloudPlyWriter::WriteFormatPLY(cPlyFilePath, pointCloud, pDataHandler->getRGBAMap(), true);
else
PointCloudPlyWriter::WriteFormatPLY(cPlyFilePath, pointCloud, pDataHandler->getIntensityMap(), true);
std::printf("Finished writing frame to %s\n", cPlyFilePath);
}
// Stop image acquisition
if (!visionaryControl.stopAcquisition())
{
std::fprintf(stderr, "Failed to stop acquisition.\n");
return ExitCode::eControlCommunicationError;
}
// delete the frame grabber
pFrameGrabber.reset();
visionaryControl.close();
std::printf("Logout and close.\n");
return ExitCode::eOk;
}
int main(int argc, char* argv[])
{
std::string deviceIpAddr{"192.168.1.10"};
std::string filePrefix{""};
visionary::VisionaryType visionaryType(visionary::VisionaryType::eVisionaryTMini);
bool showHelpAndExit = false;
ExitCode exitCode = ExitCode::eOk;
for (int i = 1; i < argc; ++i)
{
std::istringstream argstream(argv[i]);
if (argstream.get() != '-')
{
showHelpAndExit = true;
exitCode = ExitCode::eParamError;
break;
}
switch (argstream.get())
{
case 'h':
showHelpAndExit = true;
break;
case 'i':
argstream >> deviceIpAddr;
break;
case 'd':
{
std::string visionaryTypeName;
argstream >> visionaryTypeName;
try
{
visionaryType = visionary::VisionaryType::fromString(visionaryTypeName);
}
catch (const std::invalid_argument& e)
{
// NOLINTNEXTLINE(performance-avoid-endl)
std::cerr << e.what() << ": '" << visionaryTypeName << "'" << std::endl;
showHelpAndExit = true;
exitCode = ExitCode::eParamError;
}
break;
}
default:
showHelpAndExit = true;
break;
}
}
if (showHelpAndExit)
{
std::cout << "\nUsage: " << argv[0] << " [option]*\n";
std::cout << "where option is one of\n";
std::cout << "-h show this help and exit\n";
std::cout << "-i<IP> connect to the device with IP address <IP>; default is " << deviceIpAddr << '\n';
std::cout << "-d<device type> visionary product type; default is '" << visionaryType.toString() << "'\n";
std::cout << "\nVisionary product types:\n";
for (const auto& name : visionary::VisionaryType::getNames())
{
std::cout << " " << name << '\n';
}
return static_cast<int>(exitCode);
}
exitCode = runWelcomeDemo(visionaryType, deviceIpAddr);
std::cout << "exit code " << static_cast<int>(exitCode) << '\n';
return static_cast<int>(exitCode);
}