scansegment_parser_output.cpp
Go to the documentation of this file.
1 /*
2  * @brief class ScanSegmentParserOutput is the output container for unpacked and converted msgpack and compact data for multiScan136 and picoScan.
3  * In case of multiScan136, ScanSegmentParserOutput has 16 groups (layers), each group has 3 echos, each echo has a list of LidarPoint data in catesian coordinates
4  * (x, y, z in meter and intensity). In case of picoScan, ScanSegmentParserOutput has 1 layer.
5  *
6  * Usage example for msgpack data:
7  *
8  * std::ifstream msgpack_istream("polarscan_testdata_000.msg", std::ios::binary);
9  * sick_scansegment_xd::ScanSegmentParserOutput scansegment_output;
10  * sick_scansegment_xd::MsgPackParser::Parse(msgpack_istream, scansegment_output);
11  *
12  * sick_scansegment_xd::MsgPackParser::WriteCSV({ scansegment_output }, "polarscan_testdata_000.csv")
13  *
14  * for (int groupIdx = 0; groupIdx < scansegment_output.scandata.size(); groupIdx++)
15  * {
16  * for (int echoIdx = 0; echoIdx < scansegment_output.scandata[groupIdx].size(); echoIdx++)
17  * {
18  * std::vector<sick_scansegment_xd::ScanSegmentParserOutput::LidarPoint>& scanline = scansegment_output.scandata[groupIdx][echoIdx];
19  * std::cout << (groupIdx + 1) << ". group, " << (echoIdx + 1) << ". echo: ";
20  * for (int pointIdx = 0; pointIdx < scanline.size(); pointIdx++)
21  * {
22  * sick_scansegment_xd::ScanSegmentParserOutput::PointXYZI& point = scanline[pointIdx];
23  * std::cout << (pointIdx > 0 ? "," : "") << "(" << point.x << "," << point.y << "," << point.z << "," << point.i << ")";
24  * }
25  * std::cout << std::endl;
26  * }
27  * }
28  *
29  * Copyright (C) 2020 Ing.-Buero Dr. Michael Lehning, Hildesheim
30  * Copyright (C) 2020 SICK AG, Waldkirch
31  *
32  * Licensed under the Apache License, Version 2.0 (the "License");
33  * you may not use this file except in compliance with the License.
34  * You may obtain a copy of the License at
35  *
36  * http://www.apache.org/licenses/LICENSE-2.0
37  *
38  * Unless required by applicable law or agreed to in writing, software
39  * distributed under the License is distributed on an "AS IS" BASIS,
40  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
41  * See the License for the specific language governing permissions and
42  * limitations under the License.
43  *
44  * All rights reserved.
45  *
46  * Redistribution and use in source and binary forms, with or without
47  * modification, are permitted provided that the following conditions are met:
48  *
49  * * Redistributions of source code must retain the above copyright
50  * notice, this list of conditions and the following disclaimer.
51  * * Redistributions in binary form must reproduce the above copyright
52  * notice, this list of conditions and the following disclaimer in the
53  * documentation and/or other materials provided with the distribution.
54  * * Neither the name of SICK AG nor the names of its
55  * contributors may be used to endorse or promote products derived from
56  * this software without specific prior written permission
57  * * Neither the name of Ing.-Buero Dr. Michael Lehning nor the names of its
58  * contributors may be used to endorse or promote products derived from
59  * this software without specific prior written permission
60  *
61  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
62  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
63  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
64  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
65  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
66  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
67  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
68  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
69  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
70  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
71  * POSSIBILITY OF SUCH DAMAGE.
72  *
73  * Authors:
74  * Michael Lehning <michael.lehning@lehning.de>
75  *
76  * Copyright 2020 SICK AG
77  * Copyright 2020 Ing.-Buero Dr. Michael Lehning
78  *
79  */
83 
84 /*
85 * @brief Default constructor of class ScanSegmentParserOutput.
86 * ScanSegmentParserOutput is the container for unpacked and converted msgpack and compact data for multiScan136 and picoScan.
87 * In case of multiScan136, ScanSegmentParserOutput has 16 groups (layers), each group has 3 echos, each echo has a list of LidarPoint data in catesian coordinates
88 * (x, y, z in meter and intensity). In case of picoScan, ScanSegmentParserOutput has 1 layer.
89 */
90 sick_scansegment_xd::ScanSegmentParserOutput::ScanSegmentParserOutput() : timestamp(""), timestamp_sec(0), timestamp_nsec(0), segmentIndex(0), telegramCnt(0)
91 {
92 }
93 
94 /*
95  * @brief return a formatted timestamp "<sec>.<millisec>".
96  * @param[in] sec second part of timestamp
97  * @param[in] nsec nanosecond part of timestamp
98  * @return "<sec>.<millisec>"
99  */
100 std::string sick_scansegment_xd::Timestamp(uint32_t sec, uint32_t nsec)
101 {
102  std::stringstream timestamp;
103  timestamp << sec << "." << std::setfill('0') << std::setw(6) << (nsec / 1000);
104  return timestamp.str();
105 }
106 
107 /*
108  * @brief return a timestamp of the current time (i.e. std::chrono::system_clock::now() formatted by "YYYY-MM-DD hh-mm-ss.msec").
109  */
110 std::string sick_scansegment_xd::Timestamp(const std::chrono::system_clock::time_point& now)
111 {
112  std::time_t cur_time = std::chrono::system_clock::to_time_t(now);
113  std::chrono::milliseconds milliseonds = std::chrono::duration_cast<std::chrono::milliseconds>(now.time_since_epoch()) % 1000;
114  struct tm local_time;
115  localtime_s(&local_time, &cur_time);
116  std::stringstream time_stream;
117  time_stream << std::put_time(&local_time, "%F %T") << "." << std::setfill('0') << std::setw(3) << milliseonds.count();
118  return time_stream.str();
119 }
120 
common.h
sick_scansegment_xd::Timestamp
std::string Timestamp(uint32_t sec, uint32_t nsec)
Definition: scansegment_parser_output.cpp:100
sick_scansegment_xd::ScanSegmentParserOutput::ScanSegmentParserOutput
ScanSegmentParserOutput()
Definition: scansegment_parser_output.cpp:90
scansegment_parser_output.h
sick_ros_wrapper.h
ROS::now
ROS::Time now(void)
Definition: ros_wrapper.cpp:116
nsec
uint32_t nsec(const rosTime &time)
Definition: sick_ros_wrapper.h:175
imu_delay_tester.timestamp
timestamp
Definition: imu_delay_tester.py:142
sec
uint32_t sec(const rosTime &time)
Definition: sick_ros_wrapper.h:174
localtime_s
#define localtime_s(a, b)
Definition: include/sick_scansegment_xd/common.h:85


sick_scan_xd
Author(s): Michael Lehning , Jochen Sprickerhof , Martin Günther
autogenerated on Fri Oct 25 2024 02:47:10