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

« back to all changes in this revision

Viewing changes to Code/BasicFilters/itkEigenAnalysis2DImageFilter.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: itkEigenAnalysis2DImageFilter.h,v $
5
5
  Language:  C++
6
 
  Date:      $Date: 2007-10-27 19:51:42 $
7
 
  Version:   $Revision: 1.16 $
 
6
  Date:      $Date: 2008-10-14 19:20:33 $
 
7
  Version:   $Revision: 1.17 $
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.
45
45
{
46
46
public:
47
47
  /** Standard class typedefs. */
48
 
  typedef EigenAnalysis2DImageFilter  Self;
 
48
  typedef EigenAnalysis2DImageFilter                       Self;
49
49
  typedef ImageToImageFilter<TInputImage,TEigenValueImage> Superclass;
50
 
  typedef SmartPointer<Self>                   Pointer;
51
 
  typedef SmartPointer<const Self>        ConstPointer;
 
50
  typedef SmartPointer<Self>                               Pointer;
 
51
  typedef SmartPointer<const Self>                         ConstPointer;
52
52
  
53
53
  /** Run-time type information (and related methods).   */
54
54
  itkTypeMacro( EigenAnalysis2DImageFilter, ImageToImageFilter );
58
58
 
59
59
  /** Typedef for the vector type representing the eigen vectors */
60
60
  typedef typename TEigenVectorImage::PixelType     EigenVectorType;
61
 
  typedef typename EigenVectorType::ValueType   VectorComponentType;
 
61
  typedef typename EigenVectorType::ValueType       VectorComponentType;
62
62
 
63
63
  /** Superclass typedefs. */
64
64
  typedef typename Superclass::OutputImageRegionType OutputImageRegionType;
65
65
 
66
66
  /** Some convenient typedefs. */
67
 
  typedef TEigenValueImage EigenValueImageType;
 
67
  typedef TEigenValueImage                          EigenValueImageType;
68
68
  typedef typename EigenValueImageType::Pointer     EigenValueImagePointer;
69
69
  typedef typename EigenValueImageType::RegionType  EigenValueImageRegionType; 
70
70
  typedef typename EigenValueImageType::PixelType   EigenValueImagePixelType; 
130
130
#endif
131
131
 
132
132
#endif
133
 
 
134
 
 
135
 
 
136