Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itkDefaultImageTraits.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkDefaultImageTraits.h,v $
00005   Language:  C++
00006   Date:      $Date: 2002/09/11 19:57:12 $
00007   Version:   $Revision: 1.7 $
00008 
00009   Copyright (c) 2002 Insight Consortium. All rights reserved.
00010   See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
00011 
00012      This software is distributed WITHOUT ANY WARRANTY; without even 
00013      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00014      PURPOSE.  See the above copyright notices for more information.
00015 
00016 =========================================================================*/
00017 #ifndef __itkDefaultImageTraits_h
00018 #define __itkDefaultImageTraits_h
00019 
00020 #include "itkImageRegion.h"
00021 #include "itkValarrayImageContainer.h"
00022 
00023 namespace itk
00024 {
00025 
00026 
00033 template <typename TPixelType,
00034           unsigned int VImageDimension,
00035           typename TPixelContainer = ValarrayImageContainer<unsigned long, TPixelType> >
00036 class DefaultImageTraits
00037 {
00038 public:
00040   typedef TPixelType PixelType;
00041 
00043   itkStaticConstMacro(ImageDimension, unsigned int, VImageDimension);
00044   
00046   typedef TPixelContainer PixelContainer;
00047 
00049   typedef Index<VImageDimension>  IndexType;
00050 
00052   typedef Offset<VImageDimension>  OffsetType;
00053 
00055   typedef Size<VImageDimension>  SizeType;
00056 
00058   typedef ImageRegion<VImageDimension>  RegionType;
00059 };
00060 
00061 
00062 } // namespace itk
00063 
00064 #endif

Generated at Fri May 21 01:14:37 2004 for ITK by doxygen 1.2.15 written by Dimitri van Heesch, © 1997-2000