ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkImageToImageFilterDetail.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * https://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *=========================================================================*/
18/*=========================================================================
19 *
20 * Portions of this file are subject to the VTK Toolkit Version 3 copyright.
21 *
22 * Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
23 *
24 * For complete copyright, license and disclaimer of warranty information
25 * please refer to the NOTICE file at the top of the ITK source tree.
26 *
27 *=========================================================================*/
28#ifndef itkImageToImageFilterDetail_h
29#define itkImageToImageFilterDetail_h
30
31#include "itkImageRegion.h"
32#include "itkSmartPointer.h"
33
34namespace itk
35{
45{
46
56{};
57
64template <bool>
66{};
67
75template <int>
77{};
78
92template <unsigned int>
94{};
95
102template <bool B1, bool B2>
110
116template <int D1, int D2>
124
135template <unsigned int D1, unsigned int D2>
163
180template <unsigned int D1, unsigned int D2>
181void
183 ImageRegion<D1> & destRegion,
184 const ImageRegion<D2> & srcRegion)
185{
186 destRegion = srcRegion;
187}
188
205template <unsigned int D1, unsigned int D2>
206void
208 ImageRegion<D1> & destRegion,
209 const ImageRegion<D2> & srcRegion)
210{
211 // Source dimension is greater than the destination dimension, copy the
212 // first part of the source into the destination
213
214
215 Index<D1> destIndex;
216 Size<D1> destSize;
217 const Index<D2> & srcIndex = srcRegion.GetIndex();
218 const Size<D2> & srcSize = srcRegion.GetSize();
219
220 // copy what we can
221 for (unsigned int dim = 0; dim < D1; ++dim)
222 {
223 destIndex[dim] = srcIndex[dim];
224 destSize[dim] = srcSize[dim];
225 }
226
227 destRegion.SetIndex(destIndex);
228 destRegion.SetSize(destSize);
229}
230
247template <unsigned int D1, unsigned int D2>
248void
250 ImageRegion<D1> & destRegion,
251 const ImageRegion<D2> & srcRegion)
252{
253 // Source dimension is less than the destination dimension, copy source
254 // into the first part of the destination and set zeros elsewhere.
255 Index<D1> destIndex;
256 Size<D1> destSize;
257 const Index<D2> & srcIndex = srcRegion.GetIndex();
258 const Size<D2> & srcSize = srcRegion.GetSize();
259
260 // copy what we can
261 {
262 unsigned int dim = 0;
263 for (; dim < D2; ++dim)
264 {
265 destIndex[dim] = srcIndex[dim];
266 destSize[dim] = srcSize[dim];
267 }
268 // fill in the rest of the dimensions with zero/one
269 for (; dim < D1; ++dim)
270 {
271 destIndex[dim] = 0;
272 destSize[dim] = 1;
273 }
274 }
275 destRegion.SetIndex(destIndex);
276 destRegion.SetSize(destSize);
277}
278
317template <unsigned int D1, unsigned int D2>
319{
320public:
321 virtual void
322 operator()(ImageRegion<D1> & destRegion, const ImageRegion<D2> & srcRegion) const
323 {
324 using ComparisonType = typename BinaryUnsignedIntDispatch<D1, D2>::ComparisonType;
325 ImageToImageFilterDefaultCopyRegion<D1, D2>(ComparisonType(), destRegion, srcRegion);
326 }
327
328 virtual ~ImageRegionCopier() = default;
329};
330
333template <unsigned int D1, unsigned int D2>
334std::ostream &
335operator<<(std::ostream & os, const ImageRegionCopier<D1, D2> &)
336{
337 os << "ImageRegionCopier: " << typeid(ImageRegionCopier<D1, D2>).name() << std::endl;
338 return os;
339}
340
342template <unsigned int D1, unsigned int D2>
343bool
345{
346 return &c1 != &c2;
347}
348
349
350template <unsigned int D1, unsigned int D2>
351void
353 ImageBase<D1> * destImage,
354 const ImageBase<D2> * srcImage)
355{
356 destImage->CopyInformation(srcImage);
357}
358
359
360template <unsigned int D1, unsigned int D2>
361void
363 ImageBase<D1> * destImage,
364 const ImageBase<D2> * srcImage)
365{
366 using DestinationImageType = ImageBase<D1>;
367 using SourceImageType = ImageBase<D2>;
368
369 // Copy what we can from the image from spacing and origin of the input
370 // This logic needs to be augmented with logic that select which
371 // dimensions to copy
372 const typename SourceImageType::SpacingType & inputSpacing = srcImage->GetSpacing();
373 const typename SourceImageType::PointType & inputOrigin = srcImage->GetOrigin();
374 const typename SourceImageType::DirectionType & inputDirection = srcImage->GetDirection();
375
376 typename DestinationImageType::SpacingType destSpacing;
377 typename DestinationImageType::PointType destOrigin;
378 typename DestinationImageType::DirectionType destDirection;
379
380 // copy the input to the output and fill the rest of the
381 // output with zeros.
382 unsigned int i = 0;
383 for (; i < SourceImageType::ImageDimension; ++i)
384 {
385 destSpacing[i] = inputSpacing[i];
386 destOrigin[i] = inputOrigin[i];
387 for (unsigned int j = 0; j < DestinationImageType::ImageDimension; ++j)
388 {
389 if (j < SourceImageType::ImageDimension)
390 {
391 destDirection[j][i] = inputDirection[j][i];
392 }
393 else
394 {
395 destDirection[j][i] = 0.0;
396 }
397 }
398 }
399 for (; i < DestinationImageType::ImageDimension; ++i)
400 {
401 destSpacing[i] = 1.0;
402 destOrigin[i] = 0.0;
403 for (unsigned int j = 0; j < DestinationImageType::ImageDimension; ++j)
404 {
405 if (j == i)
406 {
407 destDirection[j][i] = 1.0;
408 }
409 else
410 {
411 destDirection[j][i] = 0.0;
412 }
413 }
414 }
415
416 // set the spacing and origin
417 destImage->SetSpacing(destSpacing);
418 destImage->SetOrigin(destOrigin);
419 destImage->SetDirection(destDirection);
420 // propagate vector length info
422}
423
424
436template <unsigned int D1, unsigned int D2>
438{
439public:
440 virtual void
441 operator()(ImageBase<D1> * destImage, const ImageBase<D2> * srcImage) const
442 {
443 using ComparisonType = typename BinaryUnsignedIntDispatch<D1, D2>::ComparisonType;
444 ImageToImageFilterDefaultCopyInformation<D1, D2>(ComparisonType(), destImage, srcImage);
445 }
446
447 virtual ~ImageInformationCopier() = default;
448};
449
450
451} // end of namespace ImageToImageFilterDetail
452} // end namespace itk
453
454#endif
Base class for templated image classes.
virtual const SpacingType & GetSpacing() const
virtual void SetDirection(const DirectionType &direction)
virtual const DirectionType & GetDirection() const
virtual const PointType & GetOrigin() const
virtual void SetSpacing(const SpacingType &spacing)
virtual void SetNumberOfComponentsPerPixel(unsigned int)
virtual void SetOrigin(PointType _arg)
virtual unsigned int GetNumberOfComponentsPerPixel() const
void CopyInformation(const DataObject *data) override
An image region represents a structured region of data.
void SetSize(const SizeType &size)
const IndexType & GetIndex() const
void SetIndex(const IndexType &index)
const SizeType & GetSize() const
A Function object used to copy image meta-data of an image.
virtual void operator()(ImageBase< D1 > *destImage, const ImageBase< D2 > *srcImage) const
A Function object used to dispatching to a routine to copy a region (start index and size).
virtual void operator()(ImageRegion< D1 > &destRegion, const ImageRegion< D2 > &srcRegion) const
void ImageToImageFilterDefaultCopyInformation(const typename BinaryUnsignedIntDispatch< D1, D2 >::FirstEqualsSecondType &, ImageBase< D1 > *destImage, const ImageBase< D2 > *srcImage)
void ImageToImageFilterDefaultCopyRegion(const typename BinaryUnsignedIntDispatch< D1, D2 >::FirstEqualsSecondType &, ImageRegion< D1 > &destRegion, const ImageRegion< D2 > &srcRegion)
bool operator!=(const ImageRegionCopier< D1, D2 > &c1, const ImageRegionCopier< D1, D2 > &c2)
std::ostream & operator<<(std::ostream &os, const ImageRegionCopier< D1, D2 > &)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Templated class to produce a unique type for a pairing of booleans.
Templated class to produce a unique type for a pairing of integers.
Templated class to produce a unique type for a pairing of unsigned integers (usually two dimensions).
Templated class to produce a unique type "true" and "false".
Base class for a class used to dispatch to dimension specific implementations.
Templated class to produce a unique type for each integer.
Templated class to produce a unique type for each unsigned integer (usually a dimension).
Represent a n-dimensional index in a n-dimensional image.
Definition itkIndex.h:69
Represent a n-dimensional size (bounds) of a n-dimensional image.
Definition itkSize.h:70