-
-
Notifications
You must be signed in to change notification settings - Fork 726
WIP: Tests for "streaming for resample image filter in case of linear transforms" #84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
romangrothausmann
wants to merge
7
commits into
InsightSoftwareConsortium:release-4.13
from
romangrothausmann:test_RSI-SDI
Closed
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
0a0d9a1
TEST: plain copy of itkResampleImageTest.cxx and its cmake
romangrothausmann f768f4d
TEST: employ itkResampleImageTest2s, still the same as itkResampleIma…
romangrothausmann 3204117
TEST: write MHAs (which support streaming) instead of PNGs
romangrothausmann a44c967
TEST: demand streaming and employ where possible
romangrothausmann 5d765b4
TEST: verify streaming for linear case
romangrothausmann 9cd71e9
TEST: itkResampleImageTest7.cxx for comparing output of stream driven…
romangrothausmann 0f962c5
mark resample as modified to enforce re-execution of filter chain
romangrothausmann File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
Modules/Filtering/ImageGrid/test/Baseline/ResampleImageTest2.mha.sha512
This file contains hidden or 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 @@ | ||
| 6dcda44ce36e39fb6a792e26c8cd93830bab8edbe9f33385dc59b24bd6b40c99bbadf9b6ada967b1d1b6624e986f1161960d86db63b2d6b71da58eec0a2b911c |
1 change: 1 addition & 0 deletions
1
Modules/Filtering/ImageGrid/test/Baseline/ResampleImageTest2NearestExtrapolate.mha.sha512
This file contains hidden or 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 @@ | ||
| bbc1a32a82e88334df11c79f54ba4260ea291f8316c882d6360e7546739eb92109a169cc07abe32250a4e12e49a4bb8bad22c45580ccb78c4ee482fa68675e4f |
This file contains hidden or 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
267 changes: 267 additions & 0 deletions
267
Modules/Filtering/ImageGrid/test/itkResampleImageTest2s.cxx
This file contains hidden or 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,267 @@ | ||
| /*========================================================================= | ||
| * | ||
| * Copyright Insight Software Consortium | ||
| * | ||
| * 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.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. | ||
| * | ||
| *=========================================================================*/ | ||
|
|
||
| #include <iostream> | ||
|
|
||
| #include "itkAffineTransform.h" | ||
| #include "itkImageFileReader.h" | ||
| #include "itkImageFileWriter.h" | ||
| #include "itkResampleImageFilter.h" | ||
| #include "itkNearestNeighborExtrapolateImageFunction.h" | ||
| #include "itkPipelineMonitorImageFilter.h" | ||
| #include "itkTestingMacros.h" | ||
|
|
||
| /* Further testing of itkResampleImageFilter | ||
| * Output is compared with baseline image using the cmake itk_add_test | ||
| * '--compare' option. | ||
| */ | ||
|
|
||
| namespace { | ||
|
|
||
| template<typename TCoordRepType, unsigned int NDimensions> | ||
| class NonlinearAffineTransform: | ||
| public itk::AffineTransform<TCoordRepType,NDimensions> | ||
| { | ||
| public: | ||
| /** Standard class typedefs. */ | ||
| typedef NonlinearAffineTransform Self; | ||
| typedef itk::AffineTransform< TCoordRepType, NDimensions > Superclass; | ||
| typedef itk::SmartPointer< Self > Pointer; | ||
| typedef itk::SmartPointer< const Self > ConstPointer; | ||
|
|
||
| /** New macro for creation of through a smart pointer. */ | ||
| itkSimpleNewMacro(Self); | ||
|
|
||
| /** Run-time type information (and related methods). */ | ||
| itkTypeMacro(NonlinearAffineTransform, AffineTransform); | ||
|
|
||
| /** Override this. See test below. */ | ||
| virtual bool IsLinear() const ITK_OVERRIDE { return false; } | ||
| }; | ||
| } | ||
|
|
||
| int itkResampleImageTest2s(int argc, char * argv [] ) | ||
| { | ||
|
|
||
| if( argc < 5 ) | ||
| { | ||
| std::cerr << "Missing arguments ! " << std::endl; | ||
| std::cerr << "Usage : " << std::endl; | ||
| std::cerr << argv[0] << "inputImage referenceImage " | ||
| << "resampledImageLinear resampledImageNonLinear " | ||
| << "resampledImageLinearNearestExtrapolate" | ||
| << "resampledImageNonLinearNearestExtrapolate"; | ||
| std::cerr << std::endl; | ||
| return EXIT_FAILURE; | ||
| } | ||
|
|
||
| const unsigned int NDimensions = 2; | ||
|
|
||
| typedef unsigned char PixelType; | ||
| typedef itk::Image<PixelType, NDimensions> ImageType; | ||
| typedef double CoordRepType; | ||
|
|
||
| typedef itk::AffineTransform<CoordRepType,NDimensions> | ||
| AffineTransformType; | ||
| typedef NonlinearAffineTransform<CoordRepType,NDimensions> | ||
| NonlinearAffineTransformType; | ||
| typedef itk::LinearInterpolateImageFunction<ImageType,CoordRepType> | ||
| InterpolatorType; | ||
| typedef itk::NearestNeighborExtrapolateImageFunction<ImageType,CoordRepType> | ||
| ExtrapolatorType; | ||
|
|
||
| typedef itk::ImageFileReader< ImageType > ReaderType; | ||
| typedef itk::ImageFileWriter< ImageType > WriterType; | ||
|
|
||
| ReaderType::Pointer reader1 = ReaderType::New(); | ||
| ReaderType::Pointer reader2 = ReaderType::New(); | ||
| ReaderType::Pointer reader3 = ReaderType::New(); | ||
| ReaderType::Pointer reader4 = ReaderType::New(); | ||
|
|
||
| WriterType::Pointer writer1 = WriterType::New(); | ||
| WriterType::Pointer writer2 = WriterType::New(); | ||
| WriterType::Pointer writer3 = WriterType::New(); | ||
| WriterType::Pointer writer4 = WriterType::New(); | ||
|
|
||
| reader1->SetFileName( argv[1] ); | ||
| reader2->SetFileName( argv[2] ); | ||
| reader3->SetFileName( argv[3] ); | ||
| reader4->SetFileName( argv[4] ); | ||
|
|
||
| writer1->SetFileName( argv[3] ); | ||
| writer2->SetFileName( argv[4] ); | ||
| writer3->SetFileName( argv[5] ); | ||
| writer4->SetFileName( argv[6] ); | ||
|
|
||
| // Create an affine transformation | ||
| AffineTransformType::Pointer affineTransform = AffineTransformType::New(); | ||
| affineTransform->Scale(2.0); | ||
|
|
||
| // Create a linear interpolation image function | ||
| InterpolatorType::Pointer interpolator = InterpolatorType::New(); | ||
|
|
||
| // Create a nearest neighbor extrapolate image function | ||
| ExtrapolatorType::Pointer extrapolator = ExtrapolatorType::New(); | ||
|
|
||
| // Create and configure a resampling filter | ||
| typedef itk::ResampleImageFilter< ImageType, ImageType > ResampleFilterType; | ||
|
|
||
| ResampleFilterType::Pointer resample = ResampleFilterType::New(); | ||
|
|
||
| typedef itk::PipelineMonitorImageFilter< ImageType > MonitorFilter; | ||
|
|
||
| MonitorFilter::Pointer monitor = MonitorFilter::New(); | ||
|
|
||
| EXERCISE_BASIC_OBJECT_METHODS( resample, ResampleImageFilter, ImageToImageFilter ); | ||
|
|
||
| resample->SetInput( reader1->GetOutput() ); | ||
| TEST_SET_GET_VALUE( reader1->GetOutput(), resample->GetInput() ); | ||
|
|
||
| resample->SetReferenceImage( reader2->GetOutput() ); | ||
| TEST_SET_GET_VALUE( reader2->GetOutput(), resample->GetReferenceImage() ); | ||
|
|
||
| resample->UseReferenceImageOn(); | ||
| TEST_EXPECT_TRUE( resample->GetUseReferenceImage() ); | ||
|
|
||
| resample->SetTransform( affineTransform ); | ||
| TEST_SET_GET_VALUE( affineTransform, resample->GetTransform() ); | ||
|
|
||
| resample->SetInterpolator( interpolator ); | ||
| TEST_SET_GET_VALUE( interpolator, resample->GetInterpolator() ); | ||
|
|
||
| monitor->SetInput( resample->GetOutput() ); | ||
| writer1->SetInput( monitor->GetOutput() ); | ||
|
|
||
| // Check GetReferenceImage | ||
| if( resample->GetReferenceImage() != reader2->GetOutput() ) | ||
| { | ||
| std::cerr << "GetReferenceImage() failed ! " << std::endl; | ||
| return EXIT_FAILURE; | ||
| } | ||
|
|
||
| // Run the resampling filter with the normal, linear, affine transform. | ||
| // This will use ResampleImageFilter::LinearThreadedGenerateData(). | ||
| std::cout << "Test with normal AffineTransform." << std::endl; | ||
| try | ||
| { | ||
| writer1->SetNumberOfStreamDivisions(8); //split into 8 pieces for streaming. | ||
| writer1->Update(); | ||
| } | ||
| catch( itk::ExceptionObject & excp ) | ||
| { | ||
| std::cerr << excp << std::endl; | ||
| return EXIT_FAILURE; | ||
| } | ||
|
|
||
| // this verifies that the pipeline was executed as expected along | ||
| // with correct region propagation and output information | ||
| if (!monitor->VerifyAllInputCanStream(8)) | ||
| { | ||
| std::cout << "Streaming failed to execute as expected!" << std::endl; | ||
| std::cout << monitor; | ||
|
romangrothausmann marked this conversation as resolved.
|
||
| return EXIT_FAILURE; | ||
| } | ||
|
|
||
| // Assign an affine transform that returns | ||
| // false for IsLinear() instead of true, to force | ||
| // the filter to use the NonlinearThreadedGenerateData method | ||
| // instead of LinearThreadedGenerateData. This will test that | ||
| // we get the same results for both methods. | ||
| std::cout << "Test with NonlinearAffineTransform." << std::endl; | ||
| NonlinearAffineTransformType::Pointer nonlinearAffineTransform = | ||
| NonlinearAffineTransformType::New(); | ||
|
|
||
| nonlinearAffineTransform->Scale(2.0); | ||
| resample->SetTransform( nonlinearAffineTransform ); | ||
| writer2->SetInput( resample->GetOutput() ); | ||
| try | ||
| { | ||
| writer2->SetNumberOfStreamDivisions(8); //demand splitting into 8 pieces for streaming, but faked non-linearity will disable streaming | ||
| writer2->Update(); | ||
| } | ||
| catch( itk::ExceptionObject & excp ) | ||
| { | ||
| std::cerr << excp << std::endl; | ||
| return EXIT_FAILURE; | ||
| } | ||
|
romangrothausmann marked this conversation as resolved.
|
||
|
|
||
| // Instead of using the default pixel when sampling outside the input image, | ||
| // we use a nearest neighbor extrapolator. | ||
| resample->SetTransform( affineTransform ); | ||
| resample->SetExtrapolator( extrapolator ); | ||
| writer3->SetInput( resample->GetOutput() ); | ||
| std::cout << "Test with nearest neighbor extrapolator, affine transform." << std::endl; | ||
| try | ||
| { | ||
| writer3->SetNumberOfStreamDivisions(8); //split into 8 pieces for streaming. | ||
| writer3->Update(); | ||
| } | ||
| catch( itk::ExceptionObject & excp ) | ||
| { | ||
| std::cerr << excp << std::endl; | ||
| return EXIT_FAILURE; | ||
| } | ||
|
romangrothausmann marked this conversation as resolved.
|
||
|
|
||
| // Instead of using the default pixel when sampling outside the input image, | ||
| // we use a nearest neighbor extrapolator. | ||
| resample->SetTransform( nonlinearAffineTransform ); | ||
| writer4->SetInput( resample->GetOutput() ); | ||
| std::cout << "Test with nearest neighbor extrapolator, nonlinear transform." << std::endl; | ||
| try | ||
| { | ||
| writer4->SetNumberOfStreamDivisions(8); //demand splitting into 8 pieces for streaming, but faked non-linearity will disable streaming | ||
| writer4->Update(); | ||
| } | ||
| catch( itk::ExceptionObject & excp ) | ||
| { | ||
| std::cerr << excp << std::endl; | ||
| return EXIT_FAILURE; | ||
| } | ||
|
romangrothausmann marked this conversation as resolved.
|
||
|
|
||
| // Check UseReferenceImage methods | ||
| resample->UseReferenceImageOff(); | ||
| if( resample->GetUseReferenceImage() ) | ||
| { | ||
| std::cerr << "GetUseReferenceImage() or UseReferenceImageOff() failed ! "; | ||
| std::cerr << std::endl; | ||
| return EXIT_FAILURE; | ||
| } | ||
|
|
||
| // Check UseReferenceImage methods | ||
| resample->UseReferenceImageOn(); | ||
| if( !resample->GetUseReferenceImage() ) | ||
| { | ||
| std::cerr << "GetUseReferenceImage() or UseReferenceImageOn() failed ! "; | ||
| std::cerr << std::endl; | ||
| return EXIT_FAILURE; | ||
| } | ||
|
|
||
| // Check UseReferenceImage methods | ||
| resample->SetUseReferenceImage( false ); | ||
| if( resample->GetUseReferenceImage() ) | ||
| { | ||
| std::cerr << "GetUseReferenceImage() or SetUseReferenceImage() failed ! "; | ||
| std::cerr << std::endl; | ||
| return EXIT_FAILURE; | ||
| } | ||
|
romangrothausmann marked this conversation as resolved.
|
||
|
|
||
|
|
||
| std::cout << "Test passed." << std::endl; | ||
| return EXIT_SUCCESS; | ||
|
|
||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.