[Insight-users] ResamplingFilter problem
alex Dowson
alexdowson at hotmail.com
Tue Oct 2 06:39:25 EDT 2012
Hi
Try calling the resample->Update() before the resample->GetOutput()
-----Original Message-----
From: Alessandro
Sent: Tuesday, October 02, 2012 4:07 PM
To: Insight User
Subject: [Insight-users] ResamplingFilter problem
Hello,
I tried to Resample a 3d Slice Volume using a reference image. I wrote the
following function (inside a class) to perform the task:
ImageVolumeType::Pointer VolumeRetriever::applyResamplingFromImage
(ImageVolumeType::Pointer img, ImageVolumeType::Pointer ref) {
typedef itk::IdentityTransform<double, 3> TransformType;
typedef itk::ResampleImageFilter<ImageVolumeType, ImageVolumeType>
ResampleImageFilterType;
ResampleImageFilterType::Pointer resample =
ResampleImageFilterType::New();
resample->SetInput(img);
resample->UseReferenceImageOn();
resample->SetReferenceImage(ref);
resample->UpdateLargestPossibleRegion();
return resample->GetOutput();
}
where ImageVolumeType is typedef itk::Image< InputPixelType, 3 >
ImageVolumeType;
Problem is: when I run it the return is a NULL pointer...
What am I missing?
Thanks,
Ale
_____________________________________
Powered by www.kitware.com
Visit other Kitware open-source projects at
http://www.kitware.com/opensource/opensource.html
Kitware offers ITK Training Courses, for more information visit:
http://www.kitware.com/products/protraining.php
Please keep messages on-topic and check the ITK FAQ at:
http://www.itk.org/Wiki/ITK_FAQ
Follow this link to subscribe/unsubscribe:
http://www.itk.org/mailman/listinfo/insight-users
More information about the Insight-users
mailing list