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

« back to all changes in this revision

Viewing changes to Code/BasicFilters/itkExtractOrthogonalSwath2DImageFilter.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: itkExtractOrthogonalSwath2DImageFilter.h,v $
5
5
  Language:  C++
6
 
  Date:      $Date: 2005-07-26 15:06:23 $
7
 
  Version:   $Revision: 1.6 $
 
6
  Date:      $Date: 2008-10-14 19:20:34 $
 
7
  Version:   $Revision: 1.7 $
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.
44
44
public:
45
45
  /** Standard class typedefs. */
46
46
  typedef ExtractOrthogonalSwath2DImageFilter  Self;
47
 
  typedef ImageAndPathToImageFilter<TImage,ParametricPath<2>,TImage>  Superclass;
48
 
  typedef SmartPointer<Self>   Pointer;
49
 
  typedef SmartPointer<const Self>  ConstPointer;
 
47
  typedef ImageAndPathToImageFilter<TImage,ParametricPath<2>,TImage>
 
48
                                               Superclass;
 
49
  typedef SmartPointer<Self>                   Pointer;
 
50
  typedef SmartPointer<const Self>             ConstPointer;
50
51
 
51
52
  /** Method for creation through the object factory. */
52
53
  itkNewMacro(Self);
123
124
    m_Size[1] = 16*2+1; // must be odd
124
125
    m_Origin[0]  = m_Origin[1]  = 0.0;
125
126
    m_Spacing[0] = m_Spacing[1] = 1.0;
126
 
    };
 
127
    }
127
128
  virtual ~ExtractOrthogonalSwath2DImageFilter() {};
128
129
  void PrintSelf(std::ostream& os, Indent indent) const;
129
130
  
153
154
  void operator=(const Self&); //purposely not implemented
154
155
  
155
156
  ImagePixelType m_DefaultPixelValue;
156
 
  SizeType  m_Size;
157
 
  double m_Origin[ImageDimension];
158
 
  double m_Spacing[ImageDimension];
 
157
  SizeType       m_Size;
 
158
  double         m_Origin[ImageDimension];
 
159
  double         m_Spacing[ImageDimension];
159
160
};
160
161
 
161
162
} // end namespace itk