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
|
/*=========================================================================
*
* Copyright NumFOCUS
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0.txt
*
* 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.
*
*=========================================================================*/
// First include the header file to be tested:
#include "itkImage.h"
#include <gtest/gtest.h>
namespace
{
template <typename T>
void
Expect_equal(const T & object1, const T & object2)
{
// Test that equal objects can be used as arguments to GoogleTest EXPECT_EQ.
EXPECT_EQ(object1, object2);
EXPECT_EQ(object2, object1);
// Test symmetry, as well as consistency between equal and unequal.
EXPECT_TRUE(object1 == object2);
EXPECT_TRUE(object2 == object1);
EXPECT_FALSE(object1 != object2);
EXPECT_FALSE(object2 != object1);
}
template <typename T>
void
Expect_unequal(const T & object1, const T & object2)
{
// Test that unequal objects can be used as arguments to GoogleTest EXPECT_NE.
EXPECT_NE(object1, object2);
EXPECT_NE(object2, object1);
// Test symmetry, as well as consistency between equal and unequal.
EXPECT_TRUE(object1 != object2);
EXPECT_TRUE(object2 != object1);
EXPECT_FALSE(object1 == object2);
EXPECT_FALSE(object2 == object1);
}
template <typename T>
void
Expect_equal_to_itself(const T & object)
{
Expect_equal(object, object);
}
template <typename T>
void
Expect_new_objects_equal()
{
Expect_equal(*T::New(), *T::New());
}
template <typename T>
void
Expect_new_object_equal_to_itself()
{
Expect_equal_to_itself(*T::New());
}
template <typename TImage>
void
Expect_allocated_initialized_image_equal_to_itself()
{
using SizeType = typename TImage::SizeType;
const auto image = TImage::New();
image->SetRegions(SizeType::Filled(2));
image->AllocateInitialized();
Expect_equal_to_itself(*image);
}
template <typename TImage>
void
Expect_unequal_when_sizes_differ()
{
using SizeType = typename TImage::SizeType;
const auto image1 = TImage::New();
image1->SetRegions(SizeType::Filled(2));
image1->AllocateInitialized();
const auto image2 = TImage::New();
image2->SetRegions(SizeType::Filled(3));
image2->AllocateInitialized();
Expect_unequal(*image1, *image2);
}
template <typename TImage>
void
Expect_unequal_when_pixel_values_differ()
{
using SizeType = typename TImage::SizeType;
const auto imageSize = SizeType::Filled(2);
const auto image1 = TImage::New();
image1->SetRegions(imageSize);
image1->Allocate();
image1->FillBuffer(1);
const auto image2 = TImage::New();
image2->SetRegions(imageSize);
image2->Allocate();
image2->FillBuffer(2);
Expect_unequal(*image1, *image2);
}
// An example of a type that does not support `x == y`, for instances `x`, `y`.
// (Neither does it support `x != y`).
struct NonEqualityComparableType
{
int data;
};
} // namespace
// Test template instantiations for int, and for a non-EqualityComparable
// pixel type.
template class itk::Image<int>;
template class itk::Image<NonEqualityComparableType>;
// Tests that for any ImageType, objects constructed by ImageType::New()
// compare equal, using operator==(const Image &, const Image &).
TEST(Image, NewObjectsEqual)
{
Expect_new_objects_equal<itk::Image<int>>();
Expect_new_objects_equal<itk::Image<double, 3>>();
}
// Tests that an image compares equal to itself,
// using operator==(const Image &, const Image &).
TEST(Image, EqualToItself)
{
// Tests an object when it is newly created:
Expect_new_object_equal_to_itself<itk::Image<int>>();
Expect_new_object_equal_to_itself<itk::Image<double, 3>>();
// Tests an object that is allocated and initialized.
Expect_allocated_initialized_image_equal_to_itself<itk::Image<int>>();
Expect_allocated_initialized_image_equal_to_itself<itk::Image<double, 3>>();
}
// Tests that two image compare unequal when their sizes differ,
// using operator!=(const Image &, const Image &).
TEST(Image, UnequalWhenSizesDiffer)
{
Expect_unequal_when_sizes_differ<itk::Image<int>>();
Expect_unequal_when_sizes_differ<itk::Image<double, 3>>();
}
// Tests that two image compare unequal when their pixel values differ,
// using operator!=(const Image &, const Image &).
TEST(Image, UnequalWhenPixelValuesDiffer)
{
Expect_unequal_when_pixel_values_differ<itk::Image<int>>();
Expect_unequal_when_pixel_values_differ<itk::Image<double, 3>>();
}
// Tests `FillBuffer` for pixels of type `NonEqualityComparableType`. Aims to
// suppress Linux (Ubuntu 7.5.0-3ubuntu1~18.04) GCC GNU 7.5.0 warning:
// 'FillBuffer(const TPixel&)' defined but not used [-Wunused-function]
TEST(Image, FillBufferOfNonEqualityComparableType)
{
const auto ImageDimagion = 2U;
const auto image = itk::Image<NonEqualityComparableType, ImageDimagion>::New();
image->SetRegions(itk::Size<ImageDimagion>::Filled(1));
image->Allocate();
for (const auto i : { 0, 1 })
{
image->FillBuffer({ i });
EXPECT_EQ(image->GetPixel({}).data, i);
}
}
template <typename ImageType>
typename ImageType::Pointer
generate_image(typename ImageType::SizeType size)
{
const auto image = ImageType::New();
image->SetRegions(size);
image->Allocate();
return image;
}
TEST(Image, IsXImageGeometry)
{
using ImageType = itk::Image<uint8_t, 2>;
const auto image1 = generate_image<ImageType>({ 2, 2 });
const double tol = 1e-8;
auto image2 = generate_image<ImageType>({ 2, 2 });
EXPECT_TRUE(image1->IsCongruentImageGeometry(image2.GetPointer(), tol, tol));
EXPECT_TRUE(image2->IsCongruentImageGeometry(image1.GetPointer(), tol, tol));
EXPECT_TRUE(image1->IsSameImageGeometryAs(image2.GetPointer()));
EXPECT_TRUE(image2->IsSameImageGeometryAs(image1.GetPointer()));
image2 = generate_image<ImageType>({ 2, 3 });
EXPECT_TRUE(image1->IsCongruentImageGeometry(image2.GetPointer(), tol, tol));
EXPECT_TRUE(image2->IsCongruentImageGeometry(image1.GetPointer(), tol, tol));
EXPECT_FALSE(image1->IsSameImageGeometryAs(image2.GetPointer()));
EXPECT_FALSE(image2->IsSameImageGeometryAs(image1.GetPointer()));
image2 = generate_image<ImageType>({ 2, 2 });
image2->SetSpacing(ImageType::SpacingType({ 1.0 + tol, 1.0 }));
EXPECT_TRUE(image1->IsCongruentImageGeometry(image2.GetPointer(), tol, tol));
EXPECT_TRUE(image2->IsCongruentImageGeometry(image1.GetPointer(), tol, tol));
EXPECT_FALSE(image1->IsCongruentImageGeometry(image2.GetPointer(), tol * 0.5, tol));
EXPECT_FALSE(image2->IsCongruentImageGeometry(image1.GetPointer(), tol * 0.5, tol));
EXPECT_TRUE(image1->IsSameImageGeometryAs(image2.GetPointer()));
}
|