-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a seed test module for the point_cloud_compose methods +
Add description for the point_cloud_compose methods + refactor code and add compile time checks.
- Loading branch information
Showing
3 changed files
with
178 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
#include <gtest/gtest.h> | ||
#include <ouster/lidar_scan.h> | ||
|
||
// prevent clang-format from altering the location of "ouster_ros/os_ros.h", the | ||
// header file needs to be the first include due to PCL_NO_PRECOMPILE flag | ||
// clang-format off | ||
#include "ouster_ros/os_ros.h" | ||
// clang-format on | ||
#include "ouster_ros/sensor_point_types.h" | ||
#include "ouster_ros/common_point_types.h" | ||
#include "ouster_ros/os_point.h" | ||
#include "../src/point_meta_helpers.h" | ||
#include "../src/point_cloud_compose.h" | ||
|
||
class PointCloudComposeTest : public ::testing::Test { | ||
protected: | ||
void SetUp() override {} | ||
|
||
void TearDown() override {} | ||
}; | ||
|
||
using namespace std; | ||
using namespace ouster::sensor; | ||
using namespace ouster_ros; | ||
|
||
// TODO: generalize the test case! | ||
|
||
TEST_F(PointCloudComposeTest, MapLidarScanFields) { | ||
const auto WIDTH = 5U; | ||
const auto HEIGHT = 3U; | ||
const auto SAMPLES = WIDTH * HEIGHT; | ||
UDPProfileLidar lidar_udp_profile = | ||
UDPProfileLidar::PROFILE_RNG19_RFL8_SIG16_NIR16_DUAL; | ||
|
||
ouster::LidarScan ls(WIDTH, HEIGHT, lidar_udp_profile); | ||
|
||
auto fill_data = [](auto& img, auto base, auto count) { | ||
auto* p = img.data(); | ||
for (auto i = 0U; i < count; ++i) | ||
p[i] = | ||
static_cast<std::remove_reference_t<decltype(p[0])>>(base + i); | ||
}; | ||
|
||
auto range = ls.field<uint32_t>(RANGE); | ||
auto signal = ls.field<uint16_t>(SIGNAL); | ||
auto reflect = ls.field<uint8_t>(REFLECTIVITY); | ||
auto near_ir = ls.field<uint16_t>(NEAR_IR); | ||
|
||
// choose a base value that could ultimately wrap around | ||
fill_data(range, static_cast<uint32_t>(1 + (1ULL << 32) - SAMPLES / 2), | ||
SAMPLES); | ||
fill_data(signal, static_cast<uint16_t>(3 + (1 << 16) - SAMPLES / 2), | ||
SAMPLES); | ||
fill_data(reflect, static_cast<uint8_t>(5 + (1 << 8) - SAMPLES / 2), | ||
SAMPLES); | ||
fill_data(near_ir, static_cast<uint16_t>(7 + (1 << 16) - SAMPLES / 2), | ||
SAMPLES); | ||
|
||
ouster_ros::Cloud<Point_RNG19_RFL8_SIG16_NIR16_DUAL> cloud{WIDTH, HEIGHT}; | ||
|
||
auto ls_tuple = | ||
make_lidar_scan_tuple<0, Profile_RNG19_RFL8_SIG16_NIR16_DUAL.size(), | ||
Profile_RNG19_RFL8_SIG16_NIR16_DUAL>(ls); | ||
|
||
ouster_ros::Point_RNG19_RFL8_SIG16_NIR16_DUAL pt; | ||
|
||
for (auto src_idx = 0U; src_idx < SAMPLES; ++src_idx) { | ||
copy_lidar_scan_fields_to_point<0>(pt, ls_tuple, src_idx); | ||
EXPECT_EQ(point::get<5>(pt), range(0, src_idx)); | ||
EXPECT_EQ(point::get<6>(pt), signal(0, src_idx)); | ||
EXPECT_EQ(point::get<7>(pt), reflect(0, src_idx)); | ||
EXPECT_EQ(point::get<8>(pt), near_ir(0, src_idx)); | ||
} | ||
} |