00001 /*========================================================================= 00002 00003 Program: Insight Segmentation & Registration Toolkit 00004 Module: $RCSfile: itkVTKPolyDataReader.h,v $ 00005 Language: C++ 00006 Date: $Date: 2008/01/15 19:10:40 $ 00007 Version: $Revision: 1.8 $ 00008 00009 Copyright (c) Insight Software 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 __itkVTKPolyDataReader_h 00018 #define __itkVTKPolyDataReader_h 00019 00020 #include "itkMesh.h" 00021 #include "itkMeshSource.h" 00022 #include "itkTriangleCell.h" 00023 #include "itkMapContainer.h" 00024 00025 namespace itk 00026 { 00027 00035 template <class TOutputMesh> 00036 class VTKPolyDataReader : public MeshSource<TOutputMesh> 00037 { 00038 public: 00040 typedef VTKPolyDataReader Self; 00041 typedef MeshSource<TOutputMesh> Superclass; 00042 typedef SmartPointer<Self> Pointer; 00043 typedef SmartPointer<const Self> ConstPointer; 00044 00046 itkNewMacro(Self); 00047 00049 itkTypeMacro(VTKPolyDataReader, MeshSource); 00050 00052 typedef TOutputMesh OutputMeshType; 00053 typedef typename OutputMeshType::MeshTraits MeshTraits; 00054 typedef typename OutputMeshType::PointType PointType; 00055 typedef typename MeshTraits::PixelType PixelType; 00056 00058 typedef typename OutputMeshType::Pointer OutputMeshPointer; 00059 typedef typename OutputMeshType::CellTraits CellTraits; 00060 typedef typename OutputMeshType::CellIdentifier CellIdentifier; 00061 typedef typename OutputMeshType::CellType CellType; 00062 typedef typename OutputMeshType::CellAutoPointer CellAutoPointer; 00063 typedef typename OutputMeshType::PointIdentifier PointIdentifier; 00064 typedef typename CellTraits::PointIdIterator PointIdIterator; 00065 00066 typedef typename OutputMeshType::PointsContainerPointer 00067 PointsContainerPointer; 00068 00069 typedef typename OutputMeshType::PointsContainer 00070 PointsContainer; 00071 00073 typedef TriangleCell<CellType> TriangleCellType; 00074 00075 typedef typename TriangleCellType::SelfAutoPointer 00076 TriangleCellAutoPointer; 00077 00078 typedef std::pair<unsigned long,unsigned long> IndexPairType; 00079 typedef MapContainer<IndexPairType, unsigned long> PointMapType; 00080 typedef typename PointType::VectorType VectorType; 00081 00087 itkSetStringMacro(FileName); 00088 itkGetStringMacro(FileName); 00090 00091 protected: 00092 VTKPolyDataReader(); 00093 ~VTKPolyDataReader() {} 00094 void PrintSelf(std::ostream& os, Indent indent) const; 00095 00097 void GenerateData(); 00098 00100 std::string m_FileName; 00101 00102 private: 00103 VTKPolyDataReader(const Self&); // purposely not implemented 00104 void operator=(const Self&); // purposely not implemented 00105 }; 00106 00107 } // end namespace itk 00108 00109 #ifndef ITK_MANUAL_INSTANTIATION 00110 #include "itkVTKPolyDataReader.txx" 00111 #endif 00112 00113 #endif //_itkVTKPolyDataReader_h 00114