112 lines
3.1 KiB
C++
112 lines
3.1 KiB
C++
|
/*
|
||
|
* Copyright (C) 2012 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 <boost/filesystem.hpp>
|
||
|
#include <gtest/gtest.h>
|
||
|
|
||
|
#include "gazebo/common/ImageHeightmap.hh"
|
||
|
#include "test_config.h"
|
||
|
#include "test/util.hh"
|
||
|
|
||
|
#define ELEVATION_TOL 1e-8
|
||
|
|
||
|
using namespace gazebo;
|
||
|
|
||
|
class ImageHeightmapTest : public gazebo::testing::AutoLogFixture { };
|
||
|
|
||
|
class DemTest : public gazebo::testing::AutoLogFixture { };
|
||
|
|
||
|
/////////////////////////////////////////////////
|
||
|
TEST_F(DemTest, MisingFile)
|
||
|
{
|
||
|
common::ImageHeightmap img;
|
||
|
EXPECT_EQ(-1, img.Load("/file/shouldn/never/exist.png"));
|
||
|
}
|
||
|
|
||
|
/////////////////////////////////////////////////
|
||
|
TEST_F(DemTest, NotImage)
|
||
|
{
|
||
|
common::ImageHeightmap img;
|
||
|
boost::filesystem::path path = TEST_PATH;
|
||
|
|
||
|
path /= "data/dem_portrait.tif";
|
||
|
EXPECT_EQ(-1, img.Load(path.string()));
|
||
|
}
|
||
|
|
||
|
/////////////////////////////////////////////////
|
||
|
TEST_F(ImageHeightmapTest, BasicAPI)
|
||
|
{
|
||
|
common::ImageHeightmap img;
|
||
|
std::string path;
|
||
|
|
||
|
path = "file://media/materials/textures/heightmap_bowl.png";
|
||
|
EXPECT_EQ(0, img.Load(path));
|
||
|
|
||
|
// Check the heights and widths
|
||
|
EXPECT_EQ(129, static_cast<int>(img.GetHeight()));
|
||
|
EXPECT_EQ(129, static_cast<int>(img.GetWidth()));
|
||
|
EXPECT_NEAR(0.99607843, img.GetMaxElevation(), ELEVATION_TOL);
|
||
|
}
|
||
|
|
||
|
/////////////////////////////////////////////////
|
||
|
TEST_F(ImageHeightmapTest, FillHeightmap)
|
||
|
{
|
||
|
common::ImageHeightmap img;
|
||
|
std::string path;
|
||
|
|
||
|
path = "file://media/materials/textures/heightmap_bowl.png";
|
||
|
EXPECT_EQ(0, img.Load(path));
|
||
|
|
||
|
// Use FillHeightMap() to retrieve a vector<float> after some transformations
|
||
|
int subsampling;
|
||
|
unsigned vertSize;
|
||
|
ignition::math::Vector3d size;
|
||
|
ignition::math::Vector3d scale;
|
||
|
bool flipY;
|
||
|
std::vector<float> elevations;
|
||
|
|
||
|
subsampling = 2;
|
||
|
vertSize = (img.GetWidth() * subsampling) - 1;
|
||
|
size.X(129);
|
||
|
size.Y(129);
|
||
|
size.Z(10);
|
||
|
scale.X(size.X() / vertSize);
|
||
|
scale.Y(size.Y() / vertSize);
|
||
|
if (ignition::math::equal(img.GetMaxElevation(), 0.0f))
|
||
|
scale.Z(fabs(size.Z()));
|
||
|
else
|
||
|
scale.Z(fabs(size.Z()) / img.GetMaxElevation());
|
||
|
flipY = false;
|
||
|
|
||
|
img.FillHeightMap(subsampling, vertSize, size, scale, flipY, elevations);
|
||
|
|
||
|
// Check the size of the returned vector
|
||
|
EXPECT_EQ(vertSize * vertSize, elevations.size());
|
||
|
|
||
|
// Check the elevation of some control points
|
||
|
EXPECT_NEAR(0.0, elevations.at(0), ELEVATION_TOL);
|
||
|
EXPECT_NEAR(10.0, elevations.at(elevations.size() - 1), ELEVATION_TOL);
|
||
|
EXPECT_NEAR(5.0, elevations.at(elevations.size() / 2), ELEVATION_TOL);
|
||
|
}
|
||
|
|
||
|
/////////////////////////////////////////////////
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
|
::testing::InitGoogleTest(&argc, argv);
|
||
|
return RUN_ALL_TESTS();
|
||
|
}
|