~ubuntu-branches/ubuntu/precise/insighttoolkit/precise

« back to all changes in this revision

Viewing changes to Code/BasicFilters/itkWarpMeshFilter.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve M. Robbins
  • Date: 2008-12-19 20:16:49 UTC
  • mfrom: (1.2.1 upstream) (4.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20081219201649-drt97guwl2ryt0cn

* New upstream version.
  - patches/nifti-versioning.patch: Remove.  Applied upstream.
  - control:
  - rules: Update version numbers, package names.

* control: Build-depend on uuid-dev (gdcm uses it).

* copyright: Update download URL.

* rules: Adhere to parallel=N in DEB_BUILD_OPTIONS by setting MAKEFLAGS.

* compat: Set to 7.
* control: Update build-dep on debhelper to version >= 7.

* CMakeCache.txt.debian: Set CMAKE_BUILD_TYPE to "RELEASE" so that we
  build with -O3 (not -O2), necessary to optimize the templated code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
  Program:   Insight Segmentation & Registration Toolkit
4
4
  Module:    $RCSfile: itkWarpMeshFilter.h,v $
5
5
  Language:  C++
6
 
  Date:      $Date: 2004-11-08 22:59:27 $
7
 
  Version:   $Revision: 1.1 $
 
6
  Date:      $Date: 2008-10-07 17:31:02 $
 
7
  Version:   $Revision: 1.2 $
8
8
 
9
9
  Copyright (c) Insight Software Consortium. All rights reserved.
10
10
  See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
43
43
{
44
44
public:
45
45
  /** Standard class typedefs. */
46
 
  typedef WarpMeshFilter  Self;
 
46
  typedef WarpMeshFilter                           Self;
47
47
  typedef MeshToMeshFilter<TInputMesh,TOutputMesh> Superclass;
48
 
  typedef SmartPointer<Self>  Pointer;
49
 
  typedef SmartPointer<const Self>  ConstPointer;
 
48
  typedef SmartPointer<Self>                       Pointer;
 
49
  typedef SmartPointer<const Self>                 ConstPointer;
50
50
  
51
 
  typedef TInputMesh InputMeshType;
52
 
  typedef TOutputMesh OutputMeshType;
53
 
  typedef typename InputMeshType::Pointer InputMeshPointer;
 
51
  typedef TInputMesh                       InputMeshType;
 
52
  typedef typename InputMeshType::Pointer  InputMeshPointer;
 
53
 
 
54
  typedef TOutputMesh                      OutputMeshType;
54
55
  typedef typename OutputMeshType::Pointer OutputMeshPointer;
55
56
  
56
57
  /** Type for representing coordinates. */
57
58
  typedef typename TInputMesh::CoordRepType  CoordRepType;
58
59
 
59
60
  /** Deformation field typedef support. */
60
 
  typedef TDeformationField    DeformationFieldType;
 
61
  typedef TDeformationField                            DeformationFieldType;
61
62
  typedef typename DeformationFieldType::ConstPointer  DeformationFieldPointer;
62
 
  typedef typename DeformationFieldType::PixelType DisplacementType;
 
63
  typedef typename DeformationFieldType::PixelType     DisplacementType;
63
64
 
64
65
  /** Method for creation through the object factory. */
65
66
  itkNewMacro(Self);