| 1 |
|
#ifndef __itkBloxBoundaryProfilePixel_h |
| 2 |
HRD |
#define __itkBloxBoundaryProfilePixel_h |
| 3 |
|
|
| 4 |
|
#include "itkBloxBoundaryProfileItem.h" |
| 5 |
|
#include "itkBloxBoundaryPointItem.h" |
| 6 |
|
#include "itkPoint.h" |
| 7 |
|
#include "itkBloxPixel.h" |
| 8 |
|
|
| 9 |
|
namespace itk |
| 10 |
|
{ |
| 11 |
|
|
| 12 |
|
template <unsigned int NDimensions> |
| 13 |
LEN,MCM |
class ITK_EXPORT BloxBoundaryProfilePixel : public BloxPixel< BloxBoundaryProfileItem<NDimensions> > |
| 14 |
|
{ |
| 15 |
HRD |
public: |
| 16 |
|
/** Run-time type information (and related methods). */ |
| 17 |
|
itkTypeMacro( BloxBoundaryProfilePixel, BloxPixel ); |
| 18 |
|
|
| 19 |
|
/** The type of boundary profile item we process. */ |
| 20 |
|
typedef BloxBoundaryProfilePixel<NDimensions> BoundaryProfileItemType; |
| 21 |
|
|
| 22 |
|
/** The type of boundary point item we process. */ |
| 23 |
|
typedef BloxBoundaryPointItem<NDimensions> BPItemType; |
| 24 |
|
|
| 25 |
IND |
**/** The type used to store the position of the boundary point item. */ |
| 26 |
IND |
**typedef Point<double, NDimensions> PositionType; |
| 27 |
|
|
| 28 |
IND |
**BloxBoundaryProfilePixel(); |
| 29 |
IND |
**virtual ~BloxBoundaryProfilePixel(); |
| 30 |
IND |
}; |
| 31 |
|
|
| 32 |
IND |
} // end namespace itk |
| 33 |
|
|
| 34 |
|
#ifndef ITK_MANUAL_INSTANTIATION |
| 35 |
|
#include "itkBloxBoundaryProfilePixel.txx" |
| 36 |
|
#endif |
| 37 |
|
|
| 38 |
|
#endif |
| 39 |
|
|