00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __itkBoundingBox_h
00021 #define __itkBoundingBox_h
00022
00023 #include "itkObject.h"
00024 #include "itkPoint.h"
00025 #include "itkNumericTraits.h"
00026 #include "itkVectorContainer.h"
00027 #include "itkFixedArray.h"
00028
00029
00030 namespace itk
00031 {
00032
00061 template <
00062 typename TPointIdentifier = unsigned long,
00063 int VPointDimension = 3,
00064 typename TCoordRep = float,
00065 typename TPointsContainer =
00066 VectorContainer< TPointIdentifier,Point<TCoordRep, VPointDimension> >
00067 >
00068 class ITK_EXPORT BoundingBox : public Object
00069 {
00070 public:
00072 typedef BoundingBox Self;
00073 typedef Object Superclass;
00074 typedef SmartPointer<Self> Pointer;
00075 typedef SmartPointer<const Self> ConstPointer;
00076
00078 itkNewMacro(Self);
00079
00081 typedef TPointIdentifier PointIdentifier;
00082 typedef TCoordRep CoordRepType;
00083 typedef TPointsContainer PointsContainer;
00084 typedef typename PointsContainer::Pointer PointsContainerPointer;
00085 typedef typename PointsContainer::ConstPointer PointsContainerConstPointer;
00086 typedef Point< CoordRepType, VPointDimension > PointType;
00087 typedef FixedArray< CoordRepType, VPointDimension*2 > BoundsArrayType;
00088
00090 itkStaticConstMacro(PointDimension, unsigned int, VPointDimension);
00091
00093 typedef typename
00094 PointsContainer::ConstIterator PointsContainerConstIterator;
00095 typedef typename
00096 PointsContainer::Iterator PointsContainerIterator;
00097
00101 void SetPoints(const PointsContainer *);
00102 const PointsContainer * GetPoints(void) const;
00103
00105 const PointsContainer * GetCorners(void);
00106
00108 bool ComputeBoundingBox(void) const;
00109
00115 itkGetConstReferenceMacro( Bounds, BoundsArrayType );
00116
00119 PointType GetCenter(void) const;
00120
00123 PointType GetMinimum(void) const;
00124
00128 void SetMinimum(const PointType & );
00129
00132 PointType GetMaximum(void) const;
00133
00137 void SetMaximum(const PointType & );
00138
00143 void ConsiderPoint( const PointType & );
00144
00148 typedef typename NumericTraits<CoordRepType>::AccumulateType AccumulateType;
00149 AccumulateType GetDiagonalLength2(void) const;
00150
00152 bool IsInside( const PointType & ) const;
00153
00155 unsigned long GetMTime( void ) const;
00156
00158 Pointer DeepCopy() const;
00159
00160 #if 0
00161
00175 bool IntersectWithLine(CoordRepType origin[PointDimension],
00176 CoordRepType direction[PointDimension],
00177 CoordRepType coords[PointDimension],
00178 CoordRepType* t);
00179
00180 #endif
00181
00182 protected:
00183 BoundingBox();
00184 virtual ~BoundingBox();
00185 void PrintSelf(std::ostream& os, Indent indent) const;
00186
00187 typedef typename PointsContainer::ConstIterator ConstIterator;
00188
00189 private:
00190 BoundingBox(const Self&);
00191 void operator=(const Self&);
00192
00193 PointsContainerConstPointer m_PointsContainer;
00194 PointsContainerPointer m_CornersContainer;
00195 mutable BoundsArrayType m_Bounds;
00196 mutable TimeStamp m_BoundsMTime;
00197
00198 };
00199
00200 }
00201
00202 #ifndef ITK_MANUAL_INSTANTIATION
00203 #include "itkBoundingBox.txx"
00204 #endif
00205
00206 #endif