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

« back to all changes in this revision

Viewing changes to Code/BasicFilters/itkGrayscaleErodeImageFilter.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: itkGrayscaleErodeImageFilter.h,v $
5
5
  Language:  C++
6
 
  Date:      $Date: 2006-03-28 19:59:04 $
7
 
  Version:   $Revision: 1.19 $
 
6
  Date:      $Date: 2008-10-16 16:45:08 $
 
7
  Version:   $Revision: 1.21 $
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.
17
17
#ifndef __itkGrayscaleErodeImageFilter_h
18
18
#define __itkGrayscaleErodeImageFilter_h
19
19
 
 
20
// First make sure that the configuration is available.
 
21
// This line can be removed once the optimized versions
 
22
// gets integrated into the main directories.
 
23
#include "itkConfigure.h"
 
24
 
 
25
#ifdef ITK_USE_CONSOLIDATED_MORPHOLOGY
 
26
#include "itkOptGrayscaleErodeImageFilter.h"
 
27
#else
 
28
 
 
29
 
20
30
#include "itkMorphologyImageFilter.h"
21
31
 
22
32
namespace itk {
66
76
  typedef typename Superclass::KernelIteratorType  KernelIteratorType;
67
77
 
68
78
  /** Neighborhood iterator type. */
69
 
  typedef typename Superclass::NeighborhoodIteratorType NeighborhoodIteratorType ;
 
79
  typedef typename Superclass::NeighborhoodIteratorType NeighborhoodIteratorType;
70
80
 
71
81
  /** Kernel typedef. */
72
82
  typedef typename Superclass::KernelType KernelType;
119
129
  // NumericTraits<PixelType>::max()
120
130
  DefaultBoundaryConditionType m_ErodeBoundaryCondition;
121
131
 
122
 
} ; // end of class
 
132
}; // end of class
123
133
 
124
134
} // end namespace itk
125
135
  
129
139
 
130
140
#endif
131
141
 
132
 
 
 
142
#endif