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

« back to all changes in this revision

Viewing changes to Code/BasicFilters/itkBSplineResampleImageFilterBase.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: itkBSplineResampleImageFilterBase.h,v $
5
5
  Language:  C++
6
 
  Date:      $Date: 2003-09-10 14:28:44 $
7
 
  Version:   $Revision: 1.5 $
 
6
  Date:      $Date: 2008-10-09 20:43:43 $
 
7
  Version:   $Revision: 1.6 $
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.
77
77
 
78
78
public:
79
79
  /** Standard class typedefs. */
80
 
  typedef BSplineResampleImageFilterBase       Self;
 
80
  typedef BSplineResampleImageFilterBase                Self;
81
81
  typedef ImageToImageFilter<TInputImage,TOutputImage>  Superclass;
82
 
  typedef SmartPointer<Self>                    Pointer;
83
 
  typedef SmartPointer<const Self>              ConstPointer;
 
82
  typedef SmartPointer<Self>                            Pointer;
 
83
  typedef SmartPointer<const Self>                      ConstPointer;
84
84
 
85
85
  /** Run-time type information (and related methods). */
86
86
  itkTypeMacro(BSplineResampleImageFilterBase, ImageToImageFilter);
157
157
  void PrintSelf(std::ostream& os, Indent indent) const;
158
158
 
159
159
  int                       m_SplineOrder;// User specified spline order 
160
 
  int                       m_gSize;      // downsampling filter size
161
 
  int                       m_hSize;      // upsampling filter size
162
 
  std::vector<double>       m_g;          // downsampling filter coefficients
163
 
  std::vector<double>       m_h;          // upsampling filter coefficients
 
160
  int                       m_GSize;      // downsampling filter size
 
161
  int                       m_HSize;      // upsampling filter size
 
162
  std::vector<double>       m_G;          // downsampling filter coefficients
 
163
  std::vector<double>       m_H;          // upsampling filter coefficients
164
164
 
165
165
private:
166
166