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

« back to all changes in this revision

Viewing changes to Code/BasicFilters/itkImageToVectorImageFilter.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: itkImageToVectorImageFilter.h,v $
5
5
  Language:  C++
6
 
  Date:      $Date: 2006-12-09 05:06:19 $
7
 
  Version:   $Revision: 1.1 $
 
6
  Date:      $Date: 2008-10-16 16:45:10 $
 
7
  Version:   $Revision: 1.3 $
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.
14
14
     PURPOSE.  See the above copyright notices for more information.
15
15
 
16
16
=========================================================================*/
17
 
#ifndef __itkImageToVectorImageFilter_h_
18
 
#define __itkImageToVectorImageFilter_h_
 
17
#ifndef __itkImageToVectorImageFilter_h
 
18
#define __itkImageToVectorImageFilter_h
19
19
 
20
20
#include "itkImageToImageFilter.h"
21
21
#include "itkVectorContainer.h"
22
22
#include "itkVectorImage.h"
23
23
 
24
 
namespace itk{
 
24
namespace itk {
25
25
/** \class ImageToVectorImageFilter 
26
26
 * \brief This class takes as input 'n' itk::Image's and composes them into
27
27
 * a single itk::VectorImage. 
52
52
  typedef SmartPointer<Self>                        Pointer;
53
53
  typedef SmartPointer<const Self>                  ConstPointer;
54
54
  itkNewMacro(Self);  
55
 
  itkTypeMacro(Self, ImageToImageFilter);
 
55
  itkTypeMacro(ImageToVectorImageFilter, ImageToImageFilter);
56
56
 
57
57
  itkStaticConstMacro(Dimension, unsigned int, TInputImage::ImageDimension);
58
58
 
90
90
#endif
91
91
 
92
92
#endif
93