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

« back to all changes in this revision

Viewing changes to Code/Algorithms/itkBinaryMinMaxCurvatureFlowImageFilter.txx

  • 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: itkBinaryMinMaxCurvatureFlowImageFilter.txx,v $
5
5
  Language:  C++
6
 
  Date:      $Date: 2003-09-10 14:28:28 $
7
 
  Version:   $Revision: 1.7 $
 
6
  Date:      $Date: 2008-10-20 21:28:20 $
 
7
  Version:   $Revision: 1.8 $
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.
23
23
namespace itk
24
24
{
25
25
 
26
 
/*
 
26
/**
27
27
 * Constructor
28
28
 */
29
29
template <class TInputImage, class TOutputImage>
42
42
}
43
43
 
44
44
 
45
 
/*
 
45
/**
46
46
 * Standard PrintSelf method.
47
47
 */
48
48
template <class TInputImage, class TOutputImage>
55
55
}
56
56
 
57
57
 
58
 
/*
 
58
/**
59
59
 * Initialize the state of filter and equation before each iteration.
60
60
 */
61
61
template <class TInputImage, class TOutputImage>
77
77
 
78
78
  f->SetThreshold( m_Threshold );
79
79
 
80
 
  this->Superclass::InitializeIteration();           
81
 
 
 
80
  this->Superclass::InitializeIteration();
82
81
  
83
82
}
84
83