File: itkMissingExplicitIntantiations.cxx

package info (click to toggle)
insighttoolkit 3.20.1%2Bgit20120521-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 80,652 kB
  • sloc: cpp: 458,133; ansic: 196,223; fortran: 28,000; python: 3,839; tcl: 1,811; sh: 1,184; java: 583; makefile: 430; csh: 220; perl: 193; xml: 20
file content (82 lines) | stat: -rw-r--r-- 4,346 bytes parent folder | download | duplicates (2)
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
/*=========================================================================

  Program:   Insight Segmentation & Registration Toolkit
  Module:    itkMissingExplicitIntantiations.cxx
  Language:  C++
  Date:      $Date$
  Version:   $Revision$

  Copyright (c) Insight Software Consortium. All rights reserved.
  See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.

     This software is distributed WITHOUT ANY WARRANTY; without even 
     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
     PURPOSE.  See the above copyright notices for more information.

=========================================================================*/
#include "itkPointSet.h"
#include "itkNeighborhoodAlgorithm.h"
#include "itkPath.h"
#include "itkSymmetricEigenAnalysis.h"
#include "itkImageMomentsCalculator.h"
#include "itkVersorRigid3DTransform.h"
#include "itkCenteredTransformInitializer.h"
#include "itkBoundingBox.h"
#include "itkUnaryFunctorImageFilter.h"
#include "itkCastImageFilter.h"

typedef itk::Matrix<float,3,3> MatrixF33;

typedef itk::Point<double,2> PointD2;
typedef itk::Point<double,3> PointD3;
typedef itk::Point<double,4> PointD4;
typedef itk::Point<float,3> PointF3;

typedef itk::Vector<float,2> VectorF2;
typedef itk::Vector<float,3> VectorF3;

typedef itk::Image<int,2> ImageI2;
typedef itk::Image<short,2> ImageS2;
typedef itk::Image<double,2> ImageD2;
typedef itk::Image<double,6> ImageD6;
typedef itk::Image<float,2> ImageF2;
typedef itk::Image<float,3> ImageF3;
typedef itk::Image<float,4> ImageF4;
typedef itk::Image<unsigned char,3> ImageUC3;
typedef itk::Image<VectorF2,2> ImageVF22;
typedef itk::Image<VectorF3,2> ImageVF32;

typedef itk::DefaultStaticMeshTraits<double, 2, 2, double, double, double> DefaultStaticMeshTraits22DDD;
typedef itk::DefaultStaticMeshTraits<double, 3, 3, double, double, double> DefaultStaticMeshTraits33DDD;
typedef itk::DefaultStaticMeshTraits<double, 4, 4, double, double, double> DefaultStaticMeshTraits44DDD;

typedef itk::ContinuousIndex<double,2> ContinuousIndexD2;
typedef itk::VectorContainer<unsigned long, PointF3> VectorContainerULPF3;

typedef itk::FixedArray<float,3> FixedArrayF3;
typedef itk::FixedArray<unsigned char,4> FixedArrayUC4;
typedef itk::VersorRigid3DTransform<double> VersorRigid3DTransformD;
typedef itk::Functor::Cast<float, double> FunctorCastFD;

template class ITKCommon_EXPORT itk::CenteredTransformInitializer<VersorRigid3DTransformD,ImageUC3,ImageUC3>;
template class ITKCommon_EXPORT itk::ImageMomentsCalculator<ImageUC3>;
template class ITKCommon_EXPORT itk::Neighborhood<VectorF3*>;
template class ITKCommon_EXPORT itk::Neighborhood<VectorF2*>;
template class ITKCommon_EXPORT itk::Neighborhood<FixedArrayUC4*,3>;
template struct ITKCommon_EXPORT itk::NeighborhoodAlgorithm::ImageBoundaryFacesCalculator<ImageI2>;
template struct ITKCommon_EXPORT itk::NeighborhoodAlgorithm::ImageBoundaryFacesCalculator<ImageS2>;
template struct ITKCommon_EXPORT itk::NeighborhoodAlgorithm::ImageBoundaryFacesCalculator<ImageD6>;
template struct ITKCommon_EXPORT itk::NeighborhoodAlgorithm::ImageBoundaryFacesCalculator<ImageF2>;
template struct ITKCommon_EXPORT itk::NeighborhoodAlgorithm::ImageBoundaryFacesCalculator<ImageF3>;
template struct ITKCommon_EXPORT itk::NeighborhoodAlgorithm::ImageBoundaryFacesCalculator<ImageF4>;
template struct ITKCommon_EXPORT itk::NeighborhoodAlgorithm::ImageBoundaryFacesCalculator<ImageVF22>;
template struct ITKCommon_EXPORT itk::NeighborhoodAlgorithm::ImageBoundaryFacesCalculator<ImageVF32>;
template class ITKCommon_EXPORT itk::Path<double,ContinuousIndexD2,2>;
template class ITKCommon_EXPORT itk::PointLocator<unsigned long, 3, float, VectorContainerULPF3>;
template class ITKCommon_EXPORT itk::PointSet<PointD2,2,DefaultStaticMeshTraits22DDD>;
template class ITKCommon_EXPORT itk::PointSet<PointD3,3,DefaultStaticMeshTraits33DDD>;
template class ITKCommon_EXPORT itk::PointSet<PointD4,4,DefaultStaticMeshTraits44DDD>;
template class ITKCommon_EXPORT itk::SymmetricEigenAnalysis<MatrixF33,FixedArrayF3,MatrixF33>;
template class ITKCommon_EXPORT itk::UnaryFunctorImageFilter<ImageF2,ImageD2,FunctorCastFD>;
template class ITKCommon_EXPORT itk::VectorContainer<unsigned int,ContinuousIndexD2>;
template class ITKCommon_EXPORT itk::BoundingBox<unsigned long,3,float,VectorContainerULPF3>;