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 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
|
/*=========================================================================
*
* Copyright UMC Utrecht and contributors
*
* 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.
*
*=========================================================================*/
#ifndef itkTransformToSpatialJacobianSource_hxx
#define itkTransformToSpatialJacobianSource_hxx
#include "itkTransformToSpatialJacobianSource.h"
#include "itkProgressReporter.h"
#include "itkImageRegionIteratorWithIndex.h"
#include <vnl/vnl_copy.h>
#include <algorithm> // For max.
namespace itk
{
/**
* Constructor
*/
template <class TOutputImage, class TTransformPrecisionType>
TransformToSpatialJacobianSource<TOutputImage, TTransformPrecisionType>::TransformToSpatialJacobianSource()
{
// Check if the output pixel type is valid
// TODO: should maybe be done at compile time, using concept checking.
const unsigned int pixrow = PixelType::RowDimensions;
const unsigned int pixcol = PixelType::ColumnDimensions;
const unsigned int spatrow = SpatialJacobianType::RowDimensions;
const unsigned int spatcol = SpatialJacobianType::ColumnDimensions;
if ((pixrow != spatrow) || (pixcol != spatcol))
{
itkExceptionMacro("The specified output image type is not allowed for this filter");
}
// Use the classic (ITK4) threading model, to ensure ThreadedGenerateData is being called.
this->itk::ImageSource<TOutputImage>::DynamicMultiThreadingOff();
} // end Constructor
/**
* Print out a description of self
*
* \todo Add details about this class
*/
template <class TOutputImage, class TTransformPrecisionType>
void
TransformToSpatialJacobianSource<TOutputImage, TTransformPrecisionType>::PrintSelf(std::ostream & os,
Indent indent) const
{
Superclass::PrintSelf(os, indent);
os << indent << "OutputRegion: " << this->m_OutputRegion << std::endl;
os << indent << "OutputSpacing: " << this->m_OutputSpacing << std::endl;
os << indent << "OutputOrigin: " << this->m_OutputOrigin << std::endl;
os << indent << "OutputDirection: " << this->m_OutputDirection << std::endl;
os << indent << "Transform: " << this->m_Transform.GetPointer() << std::endl;
} // end PrintSelf()
/**
* Set the output image size.
*/
template <class TOutputImage, class TTransformPrecisionType>
void
TransformToSpatialJacobianSource<TOutputImage, TTransformPrecisionType>::SetOutputSize(const SizeType & size)
{
this->m_OutputRegion.SetSize(size);
}
/**
* Get the output image size.
*/
template <class TOutputImage, class TTransformPrecisionType>
auto
TransformToSpatialJacobianSource<TOutputImage, TTransformPrecisionType>::GetOutputSize() -> const SizeType &
{
return this->m_OutputRegion.GetSize();
}
/**
* Set the output image index.
*/
template <class TOutputImage, class TTransformPrecisionType>
void
TransformToSpatialJacobianSource<TOutputImage, TTransformPrecisionType>::SetOutputIndex(const IndexType & index)
{
this->m_OutputRegion.SetIndex(index);
}
/**
* Get the output image index.
*/
template <class TOutputImage, class TTransformPrecisionType>
auto
TransformToSpatialJacobianSource<TOutputImage, TTransformPrecisionType>::GetOutputIndex() -> const IndexType &
{
return this->m_OutputRegion.GetIndex();
}
/**
* Set the output image spacing.
*/
template <class TOutputImage, class TTransformPrecisionType>
void
TransformToSpatialJacobianSource<TOutputImage, TTransformPrecisionType>::SetOutputSpacing(const double * spacing)
{
SpacingType s(spacing);
this->SetOutputSpacing(s);
} // end SetOutputSpacing()
/**
* Set the output image origin.
*/
template <class TOutputImage, class TTransformPrecisionType>
void
TransformToSpatialJacobianSource<TOutputImage, TTransformPrecisionType>::SetOutputOrigin(const double * origin)
{
OriginType p(origin);
this->SetOutputOrigin(p);
}
/** Helper method to set the output parameters based on this image */
template <class TOutputImage, class TTransformPrecisionType>
void
TransformToSpatialJacobianSource<TOutputImage, TTransformPrecisionType>::SetOutputParametersFromImage(
const ImageBaseType * image)
{
if (!image)
{
itkExceptionMacro("Cannot use a null image reference");
}
this->SetOutputOrigin(image->GetOrigin());
this->SetOutputSpacing(image->GetSpacing());
this->SetOutputDirection(image->GetDirection());
this->SetOutputRegion(image->GetLargestPossibleRegion());
} // end SetOutputParametersFromImage()
/**
* Set up state of filter before multi-threading.
* InterpolatorType::SetInputImage is not thread-safe and hence
* has to be set up before ThreadedGenerateData
*/
template <class TOutputImage, class TTransformPrecisionType>
void
TransformToSpatialJacobianSource<TOutputImage, TTransformPrecisionType>::BeforeThreadedGenerateData()
{
if (!this->m_Transform)
{
itkExceptionMacro("Transform not set");
}
// Check whether we can use a fast path for resampling. Fast path
// can be used if the transformation is linear. Transform respond
// to the IsLinear() call.
if (this->m_Transform->IsLinear())
{
this->LinearGenerateData();
}
} // end BeforeThreadedGenerateData()
/**
* ThreadedGenerateData
*/
template <class TOutputImage, class TTransformPrecisionType>
void
TransformToSpatialJacobianSource<TOutputImage, TTransformPrecisionType>::ThreadedGenerateData(
const OutputImageRegionType & outputRegionForThread,
ThreadIdType threadId)
{
// In case of linear transforms, the computation has already been
// completed in the BeforeThreadedGenerateData
if (this->m_Transform->IsLinear())
{
return;
}
// Otherwise, we use the normal method where the transform is called
// for computing the transformation of every point.
this->NonlinearThreadedGenerateData(outputRegionForThread, threadId);
} // end ThreadedGenerateData()
template <class TOutputImage, class TTransformPrecisionType>
void
TransformToSpatialJacobianSource<TOutputImage, TTransformPrecisionType>::NonlinearThreadedGenerateData(
const OutputImageRegionType & outputRegionForThread,
ThreadIdType threadId)
{
// Get the output pointer
OutputImagePointer outputPtr = this->GetOutput();
// Create an iterator that will walk the output region for this thread.
using OutputIteratorType = ImageRegionIteratorWithIndex<TOutputImage>;
OutputIteratorType it(outputPtr, outputRegionForThread);
it.GoToBegin();
// pixel coordinates
PointType point;
// Support for progress methods/callbacks
ProgressReporter progress(this, threadId, outputRegionForThread.GetNumberOfPixels());
SpatialJacobianType sj;
PixelType sjOut;
const unsigned int nrElements = sj.GetVnlMatrix().size();
// Walk the output region
while (!it.IsAtEnd())
{
// Determine the coordinates of the current voxel
outputPtr->TransformIndexToPhysicalPoint(it.GetIndex(), point);
this->m_Transform->GetSpatialJacobian(point, sj);
// cast spatial jacobian to output pixel type
vnl_copy(sj.GetVnlMatrix().begin(), sjOut.GetVnlMatrix().begin(), nrElements);
// Set it
it.Set(sjOut);
// Update progress and iterator
progress.CompletedPixel();
++it;
}
} // end NonlinearThreadedGenerateData()
template <class TOutputImage, class TTransformPrecisionType>
void
TransformToSpatialJacobianSource<TOutputImage, TTransformPrecisionType>::LinearGenerateData()
{
// Use an unthreaded implementation here, since the FillBuffer method
// is used.
// Get the output pointer
OutputImagePointer outputPtr = this->GetOutput();
// For linear transformation the spatial derivative is a constant,
// i.e. it is independent of the spatial position.
IndexType index;
index.Fill(1);
PointType point;
outputPtr->TransformIndexToPhysicalPoint(index, point);
SpatialJacobianType sj;
PixelType sjOut;
const unsigned int nrElements = sj.GetVnlMatrix().size();
this->m_Transform->GetSpatialJacobian(point, sj);
// cast spatial jacobian to output pixel type
vnl_copy(sj.GetVnlMatrix().begin(), sjOut.GetVnlMatrix().begin(), nrElements);
outputPtr->FillBuffer(sjOut);
} // end LinearThreadedGenerateData()
/**
* Inform pipeline of required output region
*/
template <class TOutputImage, class TTransformPrecisionType>
void
TransformToSpatialJacobianSource<TOutputImage, TTransformPrecisionType>::GenerateOutputInformation()
{
// call the superclass' implementation of this method
Superclass::GenerateOutputInformation();
// get pointer to the output
OutputImagePointer outputPtr = this->GetOutput();
if (!outputPtr)
{
return;
}
outputPtr->SetLargestPossibleRegion(m_OutputRegion);
outputPtr->SetSpacing(m_OutputSpacing);
outputPtr->SetOrigin(m_OutputOrigin);
outputPtr->SetDirection(m_OutputDirection);
outputPtr->Allocate();
} // end GenerateOutputInformation()
/**
* Verify if any of the components has been modified.
*/
template <class TOutputImage, class TTransformPrecisionType>
ModifiedTimeType
TransformToSpatialJacobianSource<TOutputImage, TTransformPrecisionType>::GetMTime() const
{
ModifiedTimeType latestTime = Object::GetMTime();
if (this->m_Transform)
{
latestTime = std::max(latestTime, this->m_Transform->GetMTime());
}
return latestTime;
} // end GetMTime()
} // end namespace itk
#endif // end #ifndef _itkTransformToSpatialJacobianSource_hxx
|