DGtal 1.3.0
Loading...
Searching...
No Matches
Functions
testITKReader.cpp File Reference
#include <iostream>
#include "DGtal/base/Common.h"
#include "ConfigTest.h"
#include "DGtalCatch.h"
#include "DGtal/helpers/StdDefs.h"
#include "DGtal/images/ImageContainerBySTLVector.h"
#include "DGtal/io/readers/ITKReader.h"

Go to the source code of this file.

Functions

template<typename PixelType >
void testSpatialInformation (const std::string &filename)
 
 TEST_CASE ("Testing ITKReader")
 

Detailed Description

This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

Author
Bertrand Kerautret (kerau.nosp@m.tre@.nosp@m.loria.nosp@m..fr ) LORIA (CNRS, UMR 7503), University of Lorraine, France
Date
2017/04/02

Functions for testing class ITKReader.

This file is part of the DGtal library.

Definition in file testITKReader.cpp.

Function Documentation

◆ TEST_CASE()

TEST_CASE ( "Testing ITKReader"  )

Definition at line 82 of file testITKReader.cpp.

83{
84 // Default image selector = STLVector
88
89 SECTION(
90 "Testing feature io/readers of ITKReader with 16 bits (uint16) images" )
91 {
93 testPath + "samples/lobsterCroped16b.mhd" );
94 REQUIRE( ( im( Z3i::Point( 35, 29, 3 ) ) == 60400 ) );
95 }
96
97 SECTION(
98 "Testing feature io/readers of ITKReader with rescaled 16 bits (uint16) "
99 "images" )
100 {
102 RescalFCT resc = RescalFCT( 0, 65535, 0, 255 );
103 Image3DUC im = ITKReader<Image3DUC>::importITK(
104 testPath + "samples/lobsterCroped16b.mhd", resc );
105 REQUIRE( ( im( Z3i::Point( 35, 29, 3 ) ) == resc( 60400 ) ) );
106 }
107 SECTION(
108 "Testing behavior of ITKReader on non existent image file" )
109 {
110 bool caughtException = false;
111 const std::string filename = testPath + "samples/null.mhd"; //non existent file
112 try
113 {
114 Image3DUC im = ITKReader<Image3DUC>::importITK(filename);
115 }
116 catch(exception &)
117 {
118 caughtException = true;
119 trace.info() <<"Exception was correctly caught" << std::endl;
120 }
121 REQUIRE( caughtException == true);
122 }
123
124 SECTION(
125 "Checking spatial information when loading through DGtal" )
126 {
127 testSpatialInformation<int16_t>(testPath + "samples/lobsterCroped16b.mhd" );
128 testSpatialInformation<int16_t>(testPath + "samples/lobsterCropedB16b.mhd" );
129 }
130
131 SECTION(
132 "Checking import with/without shifted domain")
133
134 {
135 Image3Dd imShifted = ITKReader<Image3Dd>::importITK(testPath + "samples/lobsterCroped2.nii.gz",
137
138 Image3Dd imNonShifted = ITKReader<Image3Dd>::importITK(testPath + "samples/lobsterCroped2.nii.gz", false );
139
140 REQUIRE( ( imShifted( Z3i::Point( 144, 100, 21 ) ) == 113 ) );
141 REQUIRE( ( imNonShifted( Z3i::Point( 94, 50, 11 ) ) == 113 ) );
142 Z3i::Point pTarget (95,76,7);
143 auto i = 101*pTarget[1]+pTarget[0]+pTarget[2]*101*101;
144 trace.info() << "value:" << *(imNonShifted.range().begin()+i);
145 REQUIRE( ( *(imNonShifted.range().begin()+i) == *(imShifted.range().begin()+i ) ));
146 REQUIRE( ( *(imNonShifted.range().begin()+i) == 68 ));
147 }
148
149
150}
std::ostream & info()
Trace trace
Definition: Common.h:154
static Image importITK(const std::string &filename, const TFunctor &aFunctor=TFunctor(), bool shiftDomainUsingOrigin=true)
Aim: Define a simple functor using the static cast operator.
Aim: Functor allowing to rescale a value. Values of the initial scale [initMin,initMax] are rescaled ...
SECTION("Testing constant forward iterators")
REQUIRE(domain.isInside(aPoint))

References DGtal::ITKReader< TImage >::importITK(), DGtal::Trace::info(), REQUIRE(), SECTION(), and DGtal::trace.

◆ testSpatialInformation()

template<typename PixelType >
void testSpatialInformation ( const std::string &  filename)

Check that an image loaded via DGtal ITKReader keeps the same spatial information than an image loaded via itk::ImageFileReader.

Definition at line 54 of file testITKReader.cpp.

55{
56 typedef DGtal::ImageContainerByITKImage < DGtal::Z3i::Domain, PixelType > DGtalImage;
57
58 DGtalImage img = DGtal::ITKReader<DGtalImage>::importITK(filename);
59
60 typename DGtalImage::ITKImagePointer dgtal_itk = img.getITKImagePointer();
61
62
63 typedef itk::Image<PixelType, 3> ItkImage;
64 typedef itk::ImageFileReader<ItkImage> ReaderType;
65 typename ReaderType::Pointer reader = ReaderType::New();
66 reader->SetFileName(filename);
67
68 reader->Update();
69
70 typename ItkImage::Pointer itk = reader->GetOutput();
71
72 INFO( "Checking spacing" )
73 REQUIRE( dgtal_itk->GetSpacing() == itk->GetSpacing() );
74 INFO( "Checking origin" )
75 REQUIRE( dgtal_itk->GetOrigin() == itk->GetOrigin() );
76 INFO( "Checking direction" )
77 REQUIRE( dgtal_itk->GetDirection() == itk->GetDirection() );
78}

References DGtal::ITKReader< TImage >::importITK(), and REQUIRE().