00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef __itkTriangleMeshToBinaryImageFilter_h
00018 #define __itkTriangleMeshToBinaryImageFilter_h
00019
00020 #include "itkImageSource.h"
00021
00022 #include <itkMesh.h>
00023 #include <itkLineCell.h>
00024 #include <itkPolygonCell.h>
00025 #include <itkVertexCell.h>
00026 #include <itkMapContainer.h>
00027 #include <itkVectorContainer.h>
00028 #include <itkVector.h>
00029 #include <itkPoint.h>
00030 #include <itkArray.h>
00031 #include "itkAutomaticTopologyMeshSource.h"
00032 #include "itkPointSet.h"
00033
00034 #include <vector>
00035
00036 namespace itk
00037 {
00038 class Point1D
00039 {
00040 public:
00041 double m_X;
00042 int m_Sign;
00043
00044 Point1D(){};
00045 Point1D(const double p, const int s)
00046 {
00047 m_X = p;
00048 m_Sign = s;
00049 }
00050 Point1D(const Point1D &point)
00051 {
00052 m_X = point.m_X;
00053 m_Sign = point.m_Sign;
00054 }
00055 double getX() const
00056 {
00057 return m_X;
00058 }
00059 int getSign() const
00060 {
00061 return m_Sign;
00062 }
00063
00064 };
00065
00072 template <class TInputMesh, class TOutputImage>
00073 class ITK_EXPORT TriangleMeshToBinaryImageFilter : public ImageSource<TOutputImage>
00074 {
00075 public:
00077 typedef TriangleMeshToBinaryImageFilter Self;
00078 typedef ImageSource<TOutputImage> Superclass;
00079 typedef SmartPointer<Self> Pointer;
00080 typedef SmartPointer<const Self> ConstPointer;
00081
00082 typedef typename TOutputImage::IndexType IndexType;
00083 typedef typename TOutputImage::SizeType SizeType;
00084 typedef TOutputImage OutputImageType;
00085 typedef typename OutputImageType::Pointer OutputImagePointer;
00086 typedef typename OutputImageType::ValueType ValueType;
00087 typedef typename OutputImageType::SpacingType SpacingType;
00088
00090 itkNewMacro(Self);
00091
00093 itkTypeMacro(TriangleMeshToBinaryImageFilter,ImageSource);
00094
00096 typedef typename Superclass::OutputImageRegionType OutputImageRegionType;
00097
00099 typedef TInputMesh InputMeshType;
00100 typedef typename InputMeshType::Pointer InputMeshPointer;
00101 typedef typename InputMeshType::PointType InputPointType;
00102 typedef typename InputMeshType::PixelType InputPixelType;
00103 typedef typename InputMeshType::MeshTraits::CellTraits InputCellTraitsType;
00104 typedef typename InputMeshType::CellType CellType;
00105 typedef typename InputMeshType::CellsContainerPointer CellsContainerPointer;
00106 typedef typename InputMeshType::CellsContainerIterator CellsContainerIterator;
00107
00108 typedef typename InputMeshType::PointsContainer InputPointsContainer;
00109 typedef typename InputPointsContainer::Pointer InputPointsContainerPointer;
00110 typedef typename InputPointsContainer::Iterator InputPointsContainerIterator;
00111
00112 typedef itk::PointSet < double , 3 > PointSetType;
00113 typedef typename PointSetType::PointsContainer PointsContainer;
00114
00115
00116 typedef itk::Point < double, 3> PointType;
00117 typedef itk::Point < double, 2> Point2DType;
00118
00119 typedef itk::Array<double> DoubleArrayType;
00120
00121 typedef std::vector< Point1D > Point1DVector;
00122 typedef std::vector< std::vector< Point1D> > Point1DArray;
00123
00124 typedef std::vector< Point2DType > Point2DVector;
00125 typedef std::vector< std::vector< Point2DType > > Point2DArray;
00126
00127 typedef std::vector< PointType > PointVector;
00128 typedef std::vector< std::vector< PointType > > PointArray;
00129
00130 typedef std::vector< int > StencilIndexVector;
00135 itkSetMacro(Spacing, SpacingType);
00136 virtual void SetSpacing( const double spacing[3] );
00137 virtual void SetSpacing( const float spacing[3] );
00138 itkGetConstReferenceMacro(Spacing, SpacingType);
00140
00146 itkSetMacro(InsideValue, ValueType);
00147 itkGetMacro(InsideValue, ValueType);
00149
00155 itkSetMacro(OutsideValue, ValueType);
00156 itkGetMacro(OutsideValue, ValueType);
00158
00163 itkSetMacro(Origin, PointType);
00164 virtual void SetOrigin( const double origin[3] );
00165 virtual void SetOrigin( const float origin[3] );
00166 itkGetConstReferenceMacro(Origin, PointType);
00168
00170 itkSetMacro(Index,IndexType);
00171 itkGetMacro(Index,IndexType);
00173
00175 itkSetMacro(Size,SizeType);
00176 itkGetMacro(Size,SizeType);
00178
00180 void SetInput(InputMeshType *input);
00181
00183 InputMeshType * GetInput(void);
00184 InputMeshType * GetInput(unsigned int idx);
00186
00187
00188 itkSetMacro(Tolerance, double);
00189 itkGetMacro(Tolerance, double);
00190
00191 protected:
00192 TriangleMeshToBinaryImageFilter();
00193 ~TriangleMeshToBinaryImageFilter();
00194
00195 virtual void GenerateOutputInformation(){};
00196 virtual void GenerateData();
00197
00198 virtual void RasterizeTriangles();
00199 static int PolygonToImageRaster( PointVector coords, Point1DArray & zymatrix, int extent[6]);
00200
00201
00202 IndexType m_Index;
00203 SizeType m_Size;
00204 SpacingType m_Spacing;
00205 PointType m_Origin;
00206 double m_Tolerance;
00207 ValueType m_InsideValue;
00208 ValueType m_OutsideValue;
00209
00210 StencilIndexVector m_StencilIndex;
00211
00212 virtual void PrintSelf(std::ostream& os, Indent indent) const;
00213
00214 private:
00215 TriangleMeshToBinaryImageFilter(const Self&);
00216 void operator=(const Self&);
00217
00218 static bool ComparePoints2D(Point2DType a, Point2DType b);
00219 static bool ComparePoints1D(Point1D a, Point1D b);
00220 };
00221
00222 }
00223
00224 #ifndef ITK_MANUAL_INSTANTIATION
00225 #include "itkTriangleMeshToBinaryImageFilter.txx"
00226 #endif
00227
00228 #endif
00229