laserscan.h
Go to the documentation of this file.
1 // Copyright (c) 2020-2021 Pilz GmbH & Co. KG
2 //
3 // This program is free software: you can redistribute it and/or modify
4 // it under the terms of the GNU Lesser General Public License as published by
5 // the Free Software Foundation, either version 3 of the License, or
6 // (at your option) any later version.
7 //
8 // This program is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 // GNU Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public License
14 // along with this program. If not, see <https://www.gnu.org/licenses/>.
15 
16 #ifndef PSEN_SCAN_V2_STANDALONE_LASERSCAN_H
17 #define PSEN_SCAN_V2_STANDALONE_LASERSCAN_H
18 
19 #include <cstdint>
20 #include <ostream>
21 #include <vector>
22 
26 
28 {
47 class LaserScan
48 {
49 public:
50  using MeasurementData = std::vector<double>;
51  using IntensityData = std::vector<double>;
52  using IOData = std::vector<IOState>;
53 
54 public:
55  LaserScan(const util::TenthOfDegree& resolution,
56  const util::TenthOfDegree& min_scan_angle,
57  const util::TenthOfDegree& max_scan_angle,
58  const uint32_t scan_counter,
59  const uint8_t active_zoneset,
60  const int64_t timestamp,
61  const configuration::ScannerId scanner_id);
62 
63 public:
65  [[deprecated("use const util::TenthOfDegree& scanResolution() const instead")]] const util::TenthOfDegree&
66  getScanResolution() const;
67  const util::TenthOfDegree& scanResolution() const;
68 
70  [[deprecated("use const util::TenthOfDegree& minScanAngle() const instead")]] const util::TenthOfDegree&
71  getMinScanAngle() const;
72  const util::TenthOfDegree& minScanAngle() const;
73 
75  [[deprecated("use const util::TenthOfDegree& maxScanAngle() const instead")]] const util::TenthOfDegree&
76  getMaxScanAngle() const;
77  const util::TenthOfDegree& maxScanAngle() const;
78 
80  [[deprecated("use uint32_t scanCounter() const instead")]] uint32_t getScanCounter() const;
81  uint32_t scanCounter() const;
82 
84  [[deprecated("use uint8_t activeZoneset() const instead")]] uint8_t getActiveZoneset() const;
85  uint8_t activeZoneset() const;
86 
88  [[deprecated("use int64_t timestamp() const instead")]] int64_t getTimestamp() const;
89  int64_t timestamp() const;
90 
92  [[deprecated("use const MeasurementData& measurements() const instead")]] const MeasurementData&
93  getMeasurements() const;
94  const MeasurementData& measurements() const;
95 
97  [[deprecated("use MeasurementData& measurements() instead")]] MeasurementData& getMeasurements();
99 
101  [[deprecated("use void measurements(const MeasurementData& measurements) instead")]] void
104 
106  [[deprecated("use const IntensityData& intensities() const instead")]] const IntensityData& getIntensities() const;
107  const IntensityData& intensities() const;
108 
110 
112  [[deprecated("use void intensities(const IntensityData& intensities)) instead")]] void
115 
117  [[deprecated("use const IOData& ioStates() const instead")]] const IOData& getIOStates() const;
118  const IOData& ioStates() const;
119 
121  [[deprecated("use void ioStates(const IOData& io_states) instead")]] void setIOStates(const IOData& io_states);
122  void ioStates(const IOData& io_states);
123 
124 private:
138  const uint32_t scan_counter_;
140  const uint8_t active_zoneset_;
142  const int64_t timestamp_;
145 };
146 
147 std::ostream& operator<<(std::ostream& os, const LaserScan& scan);
148 
149 } // namespace psen_scan_v2_standalone
150 
151 #endif // PSEN_SCAN_V2_STANDALONE_LASERSCAN_H
psen_scan_v2_standalone::configuration::ScannerId
ScannerId
Definition: scanner_ids.h:27
psen_scan_v2_standalone::LaserScan::maxScanAngle
const util::TenthOfDegree & maxScanAngle() const
Definition: laserscan.cpp:131
psen_scan_v2_standalone::LaserScan::timestamp_
const int64_t timestamp_
Time of the first ray in this scan round (or fragment if fragmented_scans is enabled).
Definition: laserscan.h:142
psen_scan_v2_standalone::LaserScan::min_scan_angle_
const util::TenthOfDegree min_scan_angle_
Lowest angle the scanner is scanning.
Definition: laserscan.h:134
psen_scan_v2_standalone::LaserScan::resolution_
const util::TenthOfDegree resolution_
Distance of angle between the measurements.
Definition: laserscan.h:132
psen_scan_v2_standalone::LaserScan::scannerId
configuration::ScannerId scannerId() const
Definition: laserscan.cpp:136
psen_scan_v2_standalone::LaserScan::max_scan_angle_
const util::TenthOfDegree max_scan_angle_
Highest angle the scanner is scanning.
Definition: laserscan.h:136
psen_scan_v2_standalone::LaserScan::setIOStates
void setIOStates(const IOData &io_states)
Definition: laserscan.cpp:182
psen_scan_v2_standalone::LaserScan::scanner_id_
configuration::ScannerId scanner_id_
distinction between master and subscribers
Definition: laserscan.h:144
psen_scan_v2_standalone::LaserScan::scanCounter
uint32_t scanCounter() const
Definition: laserscan.cpp:146
psen_scan_v2_standalone::LaserScan::LaserScan
LaserScan(const util::TenthOfDegree &resolution, const util::TenthOfDegree &min_scan_angle, const util::TenthOfDegree &max_scan_angle, const uint32_t scan_counter, const uint8_t active_zoneset, const int64_t timestamp, const configuration::ScannerId scanner_id)
Definition: laserscan.cpp:33
psen_scan_v2_standalone::LaserScan::MeasurementData
std::vector< double > MeasurementData
Definition: laserscan.h:50
psen_scan_v2_standalone::LaserScan::getTimestamp
int64_t getTimestamp() const
Definition: laserscan.cpp:95
psen_scan_v2_standalone::LaserScan::ioStates
const IOData & ioStates() const
Definition: laserscan.cpp:198
psen_scan_v2_standalone::LaserScan::getMeasurements
const MeasurementData & getMeasurements() const
Definition: laserscan.cpp:85
psen_scan_v2_standalone::LaserScan::getMinScanAngle
const util::TenthOfDegree & getMinScanAngle() const
Definition: laserscan.cpp:75
psen_scan_v2_standalone::LaserScan::scan_counter_
const uint32_t scan_counter_
Number of the scan round this data belongs to.
Definition: laserscan.h:138
psen_scan_v2_standalone::LaserScan::IOData
std::vector< IOState > IOData
Definition: laserscan.h:52
tenth_of_degree.h
psen_scan_v2_standalone::LaserScan::setIntensities
void setIntensities(const IntensityData &intensities)
Definition: laserscan.cpp:120
psen_scan_v2_standalone::LaserScan::active_zoneset_
const uint8_t active_zoneset_
The currently active zoneset of the scanner.
Definition: laserscan.h:140
psen_scan_v2_standalone::LaserScan::getScanCounter
uint32_t getScanCounter() const
Definition: laserscan.cpp:90
psen_scan_v2_standalone::LaserScan::intensities_
IntensityData intensities_
Stores the received normalized signal intensities.
Definition: laserscan.h:128
psen_scan_v2_standalone::LaserScan::scanResolution
const util::TenthOfDegree & scanResolution() const
Definition: laserscan.cpp:64
psen_scan_v2_standalone::LaserScan::measurements_
MeasurementData measurements_
Measurement data of the laserscan (in Millimeters).
Definition: laserscan.h:126
psen_scan_v2_standalone::LaserScan::getActiveZoneset
uint8_t getActiveZoneset() const
Definition: laserscan.cpp:100
psen_scan_v2_standalone::LaserScan::setMeasurements
void setMeasurements(const MeasurementData &measurements)
Definition: laserscan.cpp:105
io_state.h
psen_scan_v2_standalone::LaserScan::intensities
const IntensityData & intensities() const
Definition: laserscan.cpp:171
scanner_ids.h
psen_scan_v2_standalone::LaserScan::io_states_
IOData io_states_
States of the I/O pins.
Definition: laserscan.h:130
psen_scan_v2_standalone::LaserScan::timestamp
int64_t timestamp() const
Definition: laserscan.cpp:156
psen_scan_v2_standalone::LaserScan
This class represents a single laser scan in the <tf_prefix> target frame.
Definition: laserscan.h:47
psen_scan_v2_standalone
Root namespace in which the software components to communicate with the scanner (firmware-version: 2)...
Definition: udp_client.h:41
psen_scan_v2_standalone::LaserScan::getScanResolution
const util::TenthOfDegree & getScanResolution() const
Definition: laserscan.cpp:70
psen_scan_v2_standalone::LaserScan::getMaxScanAngle
const util::TenthOfDegree & getMaxScanAngle() const
Definition: laserscan.cpp:80
psen_scan_v2_standalone::LaserScan::measurements
const MeasurementData & measurements() const
Definition: laserscan.cpp:141
psen_scan_v2_standalone::LaserScan::getIntensities
const IntensityData & getIntensities() const
Definition: laserscan.cpp:115
psen_scan_v2_standalone::LaserScan::activeZoneset
uint8_t activeZoneset() const
Definition: laserscan.cpp:151
psen_scan_v2_standalone::operator<<
std::ostream & operator<<(std::ostream &os, const PinState &pin_state)
Definition: io_state.cpp:59
psen_scan_v2_standalone::util::TenthOfDegree
Helper class representing angles in tenth of degree.
Definition: tenth_of_degree.h:34
psen_scan_v2_standalone::LaserScan::IntensityData
std::vector< double > IntensityData
Definition: laserscan.h:51
psen_scan_v2_standalone::LaserScan::minScanAngle
const util::TenthOfDegree & minScanAngle() const
Definition: laserscan.cpp:126
psen_scan_v2_standalone::LaserScan::getIOStates
const IOData & getIOStates() const
Definition: laserscan.cpp:187


psen_scan_v2
Author(s): Pilz GmbH + Co. KG
autogenerated on Sat Jun 22 2024 02:46:11