ITK  4.4.0
Insight Segmentation and Registration Toolkit
Public Types | Public Member Functions | Static Public Member Functions | Static Public Attributes | List of all members
itk::PhasedArray3DSpecialCoordinatesImage< TPixel > Class Template Reference

#include <itkPhasedArray3DSpecialCoordinatesImage.h>

+ Inheritance diagram for itk::PhasedArray3DSpecialCoordinatesImage< TPixel >:
+ Collaboration diagram for itk::PhasedArray3DSpecialCoordinatesImage< TPixel >:

Detailed Description

template<class TPixel>
class itk::PhasedArray3DSpecialCoordinatesImage< TPixel >

Templated 3D nonrectilinear-coordinate image class for phased-array "range" images.

*
* y-axis <--------------------+
*                             |\
*                          /  | \
*                          `~-|  \
*                       /     |   \
*                        ele- |    \
*                    / vation |     \
* projection                  |      v x-axis
* to y-z plane -> o           |
*                             v z-axis
*
* 

In a phased array "range" image, a point in space is represented by the angle between its projection onto the x-z plane and the z-axis (the azimuth coordinate), the angle between its projection onto the y-z plane and the z-axis (the elevation coordinate), and by its distance from the origin (the radius). See the diagram above, which illustrates elevation.

The equations form performing the conversion from Cartesian coordinates to 3D phased array coordinates are as follows:

azimuth = arctan(x/y) elevation = arctan(y/z) radius = vcl_sqrt(x^2 + y^2 + z^2)

The reversed transforms are:

z = radius / vcl_sqrt(1 + (tan(azimuth))^2 + (tan(elevation))^2 ); x = z * vcl_tan(azimuth) y = z * vcl_tan(elevation)

PhasedArray3DSpecialCoordinatesImages are templated over a pixel type and follow the SpecialCoordinatesImage interface. The data in an image is arranged in a 1D array as [radius-index][elevation-index][azimuth-index] with azimuth-index varying most rapidly. The Index type reverses the order so that Index[0] = azimuth-index, Index[1] = elevation-index, and Index[2] = radius-index.

Azimuth is discretized into m_AzimuthAngularSeparation intervals per angular voxel, the most negative azimuth interval containing data is then mapped to azimuth-index=0, and the largest azimuth interval containing data is then mapped to azimuth-index=( number of samples along azimuth axis - 1 ). Elevation is discretized in the same manner. This way, the mapping to Cartesian space is symmetric about the z axis such that the line defined by azimuth/2,elevation/2 = z-axis. Radius is discretized into m_RadiusSampleSize units per angular voxel. The smallest range interval containing data is then mapped to radius-index=0, such that radius = m_FirstSampleDistance + (radius-index * m_RadiusSampleSize).

See Also
SpecialCoordinatesImage

Definition at line 93 of file itkPhasedArray3DSpecialCoordinatesImage.h.

Public Types

typedef
DefaultPixelAccessorFunctor
< Self
AccessorFunctorType
 
typedef DefaultPixelAccessor
< PixelType
AccessorType
 
typedef SmartPointer< const SelfConstPointer
 
typedef WeakPointer< const SelfConstWeakPointer
 
typedef Superclass::IndexType IndexType
 
typedef Superclass::IndexValueType IndexValueType
 
typedef TPixel InternalPixelType
 
typedef Superclass::IOPixelType IOPixelType
 
typedef Superclass::OffsetType OffsetType
 
typedef ImportImageContainer
< SizeValueType, PixelType
PixelContainer
 
typedef
PixelContainer::ConstPointer 
PixelContainerConstPointer
 
typedef PixelContainer::Pointer PixelContainerPointer
 
typedef TPixel PixelType
 
typedef SmartPointer< SelfPointer
 
typedef Superclass::PointType PointType
 
typedef Superclass::RegionType RegionType
 
typedef
PhasedArray3DSpecialCoordinatesImage 
Self
 
typedef Superclass::SizeType SizeType
 
typedef Superclass::SizeValueType SizeValueType
 
typedef Superclass::SpacingType SpacingType
 
typedef
SpecialCoordinatesImage
< TPixel, 3 > 
Superclass
 
typedef TPixel ValueType
 
- Public Types inherited from itk::SpecialCoordinatesImage< TPixel, 3 >
typedef
DefaultPixelAccessorFunctor
< Self
AccessorFunctorType
 
typedef DefaultPixelAccessor
< PixelType
AccessorType
 
typedef SmartPointer< const SelfConstPointer
 
typedef WeakPointer< const SelfConstWeakPointer
 
typedef Superclass::IndexType IndexType
 
typedef TPixel InternalPixelType
 
typedef PixelType IOPixelType
 
typedef Superclass::OffsetType OffsetType
 
typedef ImportImageContainer
< SizeValueType, PixelType
PixelContainer
 
typedef
PixelContainer::ConstPointer 
PixelContainerConstPointer
 
typedef PixelContainer::Pointer PixelContainerPointer
 
typedef TPixel PixelType
 
typedef SmartPointer< SelfPointer
 
typedef Superclass::PointType PointType
 
typedef Superclass::RegionType RegionType
 
typedef SpecialCoordinatesImage Self
 
typedef Superclass::SizeType SizeType
 
typedef Superclass::SpacingType SpacingType
 
typedef ImageBase
< VImageDimension > 
Superclass
 
typedef TPixel ValueType
 
- Public Types inherited from itk::ImageBase< VImageDimension >
typedef SmartPointer< const SelfConstPointer
 
typedef Matrix< double,
VImageDimension,
VImageDimension > 
DirectionType
 
typedef Index< VImageDimension > IndexType
 
typedef IndexType::IndexValueType IndexValueType
 
typedef Offset< VImageDimension > OffsetType
 
typedef OffsetType::OffsetValueType OffsetValueType
 
typedef SmartPointer< SelfPointer
 
typedef Point< PointValueType,
VImageDimension > 
PointType
 
typedef double PointValueType
 
typedef ImageRegion
< VImageDimension > 
RegionType
 
typedef ImageBase Self
 
typedef Size< VImageDimension > SizeType
 
typedef SizeType::SizeValueType SizeValueType
 
typedef Vector
< SpacingValueType,
VImageDimension > 
SpacingType
 
typedef double SpacingValueType
 
typedef DataObject Superclass
 
- Public Types inherited from itk::DataObject
typedef SmartPointer< const SelfConstPointer
 
typedef std::string DataObjectIdentifierType
 
typedef std::vector< Pointer >
::size_type 
DataObjectPointerArraySizeType
 
typedef SmartPointer< SelfPointer
 
typedef DataObject Self
 
typedef Object Superclass
 
- Public Types inherited from itk::Object
typedef SmartPointer< const SelfConstPointer
 
typedef SmartPointer< SelfPointer
 
typedef Object Self
 
typedef LightObject Superclass
 
- Public Types inherited from itk::LightObject
typedef SmartPointer< const SelfConstPointer
 
typedef SmartPointer< SelfPointer
 
typedef LightObject Self
 

Public Member Functions

virtual ::itk::LightObject::Pointer CreateAnother (void) const
 
virtual const char * GetNameOfClass () const
 
template<class TCoordRep >
bool TransformPhysicalPointToContinuousIndex (const Point< TCoordRep, 3 > &point, ContinuousIndex< TCoordRep, 3 > &index) const
 
- Public Member Functions inherited from itk::SpecialCoordinatesImage< TPixel, 3 >
void Allocate ()
 
virtual ::itk::LightObject::Pointer CreateAnother (void) const
 
void FillBuffer (const TPixel &value)
 
const TPixel & GetPixel (const IndexType &index) const
 
TPixel & GetPixel (const IndexType &index)
 
AccessorType GetPixelAccessor (void)
 
const AccessorType GetPixelAccessor (void) const
 
PixelContainerGetPixelContainer ()
 
const PixelContainerGetPixelContainer () const
 
virtual void Initialize ()
 
TPixel & operator[] (const IndexType &index)
 
const TPixel & operator[] (const IndexType &index) const
 
void SetPixel (const IndexType &index, const TPixel &value)
 
void SetPixelContainer (PixelContainer *container)
 
TPixel * GetBufferPointer ()
 
const TPixel * GetBufferPointer () const
 
virtual void SetSpacing (const SpacingType &)
 
virtual void SetSpacing (const double[VImageDimension])
 
virtual void SetSpacing (const float[VImageDimension])
 
virtual void SetOrigin (const PointType)
 
virtual void SetOrigin (const double[VImageDimension])
 
virtual void SetOrigin (const float[VImageDimension])
 
- Public Member Functions inherited from itk::ImageBase< VImageDimension >
OffsetValueType ComputeOffset (const IndexType &ind) const
 
virtual void CopyInformation (const DataObject *data)
 
virtual const RegionTypeGetBufferedRegion () const
 
virtual const DirectionTypeGetDirection ()
 
virtual const DirectionTypeGetInverseDirection ()
 
virtual const RegionTypeGetLargestPossibleRegion () const
 
virtual const PointTypeGetOrigin ()
 
virtual const RegionTypeGetRequestedRegion () const
 
virtual const SpacingTypeGetSpacing ()
 
virtual void Graft (const DataObject *data)
 
virtual bool RequestedRegionIsOutsideOfTheBufferedRegion ()
 
virtual void SetBufferedRegion (const RegionType &region)
 
virtual void SetDirection (const DirectionType direction)
 
virtual void SetLargestPossibleRegion (const RegionType &region)
 
virtual void SetRegions (const SizeType &size)
 
virtual void SetRequestedRegion (const RegionType &region)
 
virtual void SetRequestedRegion (const DataObject *data)
 
virtual void SetRequestedRegionToLargestPossibleRegion ()
 
template<class TCoordRep >
void TransformLocalVectorToPhysicalVector (const FixedArray< TCoordRep, VImageDimension > &inputGradient, FixedArray< TCoordRep, VImageDimension > &outputGradient) const
 
template<class TCoordRep >
bool TransformPhysicalPointToContinuousIndex (const Point< TCoordRep, VImageDimension > &point, ContinuousIndex< TCoordRep, VImageDimension > &index) const
 
template<class TCoordRep >
bool TransformPhysicalPointToIndex (const Point< TCoordRep, VImageDimension > &point, IndexType &index) const
 
template<class TCoordRep >
void TransformPhysicalVectorToLocalVector (const FixedArray< TCoordRep, VImageDimension > &inputGradient, FixedArray< TCoordRep, VImageDimension > &outputGradient) const
 
virtual void UpdateOutputData ()
 
virtual void UpdateOutputInformation ()
 
virtual bool VerifyRequestedRegion ()
 
virtual void SetRegions (const RegionType &region)
 
const OffsetValueTypeGetOffsetTable () const
 
IndexType ComputeIndex (OffsetValueType offset) const
 
template<class TCoordRep >
void TransformContinuousIndexToPhysicalPoint (const ContinuousIndex< TCoordRep, VImageDimension > &index, Point< TCoordRep, VImageDimension > &point) const
 
template<class TCoordRep >
void TransformIndexToPhysicalPoint (const IndexType &index, Point< TCoordRep, VImageDimension > &point) const
 
virtual unsigned int GetNumberOfComponentsPerPixel () const
 
virtual void SetNumberOfComponentsPerPixel (unsigned int)
 
- Public Member Functions inherited from itk::DataObject
virtual void DataHasBeenGenerated ()
 
void DisconnectPipeline ()
 
bool GetDataReleased () const
 
virtual const bool & GetReleaseDataFlag ()
 
SmartPointerForwardReference
< ProcessObject
GetSource () const
 
DataObjectPointerArraySizeType GetSourceOutputIndex () const
 
const DataObjectIdentifierTypeGetSourceOutputName () const
 
virtual ModifiedTimeType GetUpdateMTime () const
 
virtual void PrepareForNewData ()
 
virtual void PropagateRequestedRegion ()
 
void ReleaseData ()
 
virtual void ReleaseDataFlagOff ()
 
virtual void ReleaseDataFlagOn ()
 
virtual void ResetPipeline ()
 
void SetReleaseDataFlag (bool flag)
 
bool ShouldIReleaseData () const
 
virtual void Update ()
 
void SetPipelineMTime (ModifiedTimeType time)
 
virtual const ModifiedTimeTypeGetPipelineMTime ()
 
virtual void SetRealTimeStamp (RealTimeStamp _arg)
 
virtual const RealTimeStampGetRealTimeStamp ()
 
- Public Member Functions inherited from itk::Object
unsigned long AddObserver (const EventObject &event, Command *)
 
unsigned long AddObserver (const EventObject &event, Command *) const
 
virtual void DebugOff () const
 
virtual void DebugOn () const
 
CommandGetCommand (unsigned long tag)
 
bool GetDebug () const
 
MetaDataDictionaryGetMetaDataDictionary (void)
 
const MetaDataDictionaryGetMetaDataDictionary (void) const
 
virtual ModifiedTimeType GetMTime () const
 
virtual const TimeStampGetTimeStamp () const
 
bool HasObserver (const EventObject &event) const
 
void InvokeEvent (const EventObject &)
 
void InvokeEvent (const EventObject &) const
 
virtual void Modified () const
 
virtual void Register () const
 
void RemoveAllObservers ()
 
void RemoveObserver (unsigned long tag)
 
void SetDebug (bool debugFlag) const
 
void SetMetaDataDictionary (const MetaDataDictionary &rhs)
 
virtual void SetReferenceCount (int)
 
virtual void UnRegister () const
 
- Public Member Functions inherited from itk::LightObject
virtual void Delete ()
 
virtual int GetReferenceCount () const
 
 itkCloneMacro (Self)
 
void Print (std::ostream &os, Indent indent=0) const
 

Static Public Member Functions

static Pointer New ()
 
- Static Public Member Functions inherited from itk::SpecialCoordinatesImage< TPixel, 3 >
static Pointer New ()
 
- Static Public Member Functions inherited from itk::ImageBase< VImageDimension >
static unsigned int GetImageDimension ()
 
static Pointer New ()
 
- Static Public Member Functions inherited from itk::DataObject
static bool GetGlobalReleaseDataFlag ()
 
static void GlobalReleaseDataFlagOff ()
 
static void GlobalReleaseDataFlagOn ()
 
static void SetGlobalReleaseDataFlag (bool val)
 
- Static Public Member Functions inherited from itk::Object
static bool GetGlobalWarningDisplay ()
 
static void GlobalWarningDisplayOff ()
 
static void GlobalWarningDisplayOn ()
 
static Pointer New ()
 
static void SetGlobalWarningDisplay (bool flag)
 
- Static Public Member Functions inherited from itk::LightObject
static void BreakOnError ()
 
static Pointer New ()
 

Static Public Attributes

static const unsigned int ImageDimension = 3
 
- Static Public Attributes inherited from itk::SpecialCoordinatesImage< TPixel, 3 >
static const unsigned int ImageDimension
 
- Static Public Attributes inherited from itk::ImageBase< VImageDimension >
static const unsigned int ImageDimension = VImageDimension
 
double m_AzimuthAngularSeparation
 
double m_ElevationAngularSeparation
 
double m_RadiusSampleSize
 
double m_FirstSampleDistance
 
template<class TCoordRep >
bool TransformPhysicalPointToIndex (const Point< TCoordRep, 3 > &point, IndexType &index) const
 
template<class TCoordRep >
void TransformContinuousIndexToPhysicalPoint (const ContinuousIndex< TCoordRep, 3 > &index, Point< TCoordRep, 3 > &point) const
 
template<class TCoordRep >
void TransformIndexToPhysicalPoint (const IndexType &index, Point< TCoordRep, 3 > &point) const
 
virtual void SetAzimuthAngularSeparation (double _arg)
 
virtual void SetElevationAngularSeparation (double _arg)
 
virtual void SetRadiusSampleSize (double _arg)
 
virtual void SetFirstSampleDistance (double _arg)
 
template<class TCoordRep >
void TransformLocalVectorToPhysicalVector (FixedArray< TCoordRep, 3 > &) const
 
template<class TCoordRep >
void TransformPhysicalVectorToLocalVector (const FixedArray< TCoordRep, 3 > &, FixedArray< TCoordRep, 3 > &) const
 
 PhasedArray3DSpecialCoordinatesImage ()
 
virtual ~PhasedArray3DSpecialCoordinatesImage ()
 
void PrintSelf (std::ostream &os, Indent indent) const
 
 PhasedArray3DSpecialCoordinatesImage (const Self &)
 
void operator= (const Self &)
 

Additional Inherited Members

- Protected Types inherited from itk::LightObject
typedef int InternalReferenceCountType
 
- Protected Member Functions inherited from itk::SpecialCoordinatesImage< TPixel, 3 >
void PrintSelf (std::ostream &os, Indent indent) const
 
 SpecialCoordinatesImage ()
 
virtual ~SpecialCoordinatesImage ()
 
- Protected Attributes inherited from itk::ImageBase< VImageDimension >
DirectionType m_Direction
 
DirectionType m_IndexToPhysicalPoint
 
DirectionType m_InverseDirection
 
PointType m_Origin
 
DirectionType m_PhysicalPointToIndex
 
SpacingType m_Spacing
 

Member Typedef Documentation

Accessor functor to choose between accessors: DefaultPixelAccessor for the Image, and DefaultVectorPixelAccessor for the vector image. The functor provides a generic API between the two accessors.

Definition at line 132 of file itkPhasedArray3DSpecialCoordinatesImage.h.

Accessor type that convert data between internal and external representations.

Definition at line 127 of file itkPhasedArray3DSpecialCoordinatesImage.h.

template<class TPixel >
typedef SmartPointer< const Self > itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::ConstPointer

Definition at line 101 of file itkPhasedArray3DSpecialCoordinatesImage.h.

template<class TPixel >
typedef WeakPointer< const Self > itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::ConstWeakPointer

Definition at line 102 of file itkPhasedArray3DSpecialCoordinatesImage.h.

template<class TPixel >
typedef Superclass::IndexType itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::IndexType

Index typedef support. An index is used to access pixel values.

Definition at line 141 of file itkPhasedArray3DSpecialCoordinatesImage.h.

template<class TPixel >
typedef Superclass::IndexValueType itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::IndexValueType

Definition at line 142 of file itkPhasedArray3DSpecialCoordinatesImage.h.

template<class TPixel >
typedef TPixel itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::InternalPixelType

Internal Pixel representation. Used to maintain a uniform API with Image Adaptors and allow to keep a particular internal representation of data while showing a different external representation.

Definition at line 121 of file itkPhasedArray3DSpecialCoordinatesImage.h.

template<class TPixel >
typedef Superclass::IOPixelType itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::IOPixelType

Definition at line 123 of file itkPhasedArray3DSpecialCoordinatesImage.h.

template<class TPixel >
typedef Superclass::OffsetType itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::OffsetType

Offset typedef support. An offset is used to access pixel values.

Definition at line 145 of file itkPhasedArray3DSpecialCoordinatesImage.h.

Container used to store pixels in the image.

Definition at line 152 of file itkPhasedArray3DSpecialCoordinatesImage.h.

Definition at line 175 of file itkPhasedArray3DSpecialCoordinatesImage.h.

A pointer to the pixel container.

Definition at line 174 of file itkPhasedArray3DSpecialCoordinatesImage.h.

template<class TPixel >
typedef TPixel itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::PixelType

Pixel typedef support. Used to declare pixel type in filters or other operations.

Definition at line 108 of file itkPhasedArray3DSpecialCoordinatesImage.h.

template<class TPixel >
typedef SmartPointer< Self > itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::Pointer

Definition at line 100 of file itkPhasedArray3DSpecialCoordinatesImage.h.

template<class TPixel >
typedef Superclass::PointType itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::PointType

Origin typedef support. The origin is the "fake" geometric coordinates of the index (0,0). Also for use w/ filters designed for normal images.

Definition at line 171 of file itkPhasedArray3DSpecialCoordinatesImage.h.

template<class TPixel >
typedef Superclass::RegionType itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::RegionType

Region typedef support. A region is used to specify a subset of an image.

Definition at line 157 of file itkPhasedArray3DSpecialCoordinatesImage.h.

Standard class typedefs

Definition at line 98 of file itkPhasedArray3DSpecialCoordinatesImage.h.

template<class TPixel >
typedef Superclass::SizeType itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::SizeType

Size typedef support. A size is used to define region bounds.

Definition at line 148 of file itkPhasedArray3DSpecialCoordinatesImage.h.

template<class TPixel >
typedef Superclass::SizeValueType itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::SizeValueType

Definition at line 149 of file itkPhasedArray3DSpecialCoordinatesImage.h.

template<class TPixel >
typedef Superclass::SpacingType itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::SpacingType

Spacing typedef support. Spacing holds the "fake" size of a pixel, making each pixel look like a 1 unit hyper-cube to filters that were designed for normal images and that therefore use m_Spacing. The spacing is the geometric distance between image samples.

Definition at line 165 of file itkPhasedArray3DSpecialCoordinatesImage.h.

template<class TPixel >
typedef SpecialCoordinatesImage< TPixel, 3 > itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::Superclass

Definition at line 99 of file itkPhasedArray3DSpecialCoordinatesImage.h.

template<class TPixel >
typedef TPixel itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::ValueType

Typedef alias for PixelType

Definition at line 115 of file itkPhasedArray3DSpecialCoordinatesImage.h.

Constructor & Destructor Documentation

template<class TPixel >
itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::PhasedArray3DSpecialCoordinatesImage ( )
inlineprotected

Get the index (discrete) from a physical point. Floating point index results are truncated to integers. Returns true if the resulting index is within the image, false otherwise

See Also
Transform

Definition at line 343 of file itkPhasedArray3DSpecialCoordinatesImage.h.

References itk::Math::pi.

template<class TPixel >
virtual itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::~PhasedArray3DSpecialCoordinatesImage ( )
inlineprotectedvirtual

Get the index (discrete) from a physical point. Floating point index results are truncated to integers. Returns true if the resulting index is within the image, false otherwise

See Also
Transform

Definition at line 353 of file itkPhasedArray3DSpecialCoordinatesImage.h.

template<class TPixel >
itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::PhasedArray3DSpecialCoordinatesImage ( const Self )
private

Get the index (discrete) from a physical point. Floating point index results are truncated to integers. Returns true if the resulting index is within the image, false otherwise

See Also
Transform

Member Function Documentation

template<class TPixel >
virtual::itk::LightObject::Pointer itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::CreateAnother ( void  ) const
virtual

Create an object from an instance, potentially deferring to a factory. This method allows you to create an instance of an object that is exactly the same type as the referring object. This is useful in cases where an object has been cast back to a base class.

Reimplemented from itk::ImageBase< VImageDimension >.

template<class TPixel >
virtual const char* itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::GetNameOfClass ( ) const
virtual

Run-time type information (and related methods).

Reimplemented from itk::SpecialCoordinatesImage< TPixel, 3 >.

template<class TPixel >
static Pointer itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::New ( )
static

Method for creation through the object factory.

template<class TPixel >
void itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::operator= ( const Self )
private

Get the index (discrete) from a physical point. Floating point index results are truncated to integers. Returns true if the resulting index is within the image, false otherwise

See Also
Transform
template<class TPixel >
void itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::PrintSelf ( std::ostream &  os,
Indent  indent 
) const
protectedvirtual

Get the index (discrete) from a physical point. Floating point index results are truncated to integers. Returns true if the resulting index is within the image, false otherwise

See Also
Transform

Reimplemented from itk::ImageBase< VImageDimension >.

template<class TPixel >
virtual void itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::SetAzimuthAngularSeparation ( double  _arg)
virtual

Set the number of radians between each azimuth unit.

template<class TPixel >
virtual void itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::SetElevationAngularSeparation ( double  _arg)
virtual

Set the number of radians between each elevation unit.

template<class TPixel >
virtual void itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::SetFirstSampleDistance ( double  _arg)
virtual

Set the distance to add to the radius.

template<class TPixel >
virtual void itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::SetRadiusSampleSize ( double  _arg)
virtual

Set the number of cartesian units between each unit along the R .

template<class TPixel >
template<class TCoordRep >
void itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::TransformContinuousIndexToPhysicalPoint ( const ContinuousIndex< TCoordRep, 3 > &  index,
Point< TCoordRep, 3 > &  point 
) const
inline

Get a physical point (in the space which the origin and spacing information comes from) from a continuous index (in the index space)

See Also
Transform

Definition at line 254 of file itkPhasedArray3DSpecialCoordinatesImage.h.

References itk::ImageRegion< VImageDimension >::GetSize().

template<class TPixel >
template<class TCoordRep >
void itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::TransformIndexToPhysicalPoint ( const IndexType index,
Point< TCoordRep, 3 > &  point 
) const
inline

Get a physical point (in the space which the origin and spacing information comes from) from a discrete index (in the index space)

See Also
Transform

Definition at line 288 of file itkPhasedArray3DSpecialCoordinatesImage.h.

References itk::ImageRegion< VImageDimension >::GetSize().

template<class TPixel >
template<class TCoordRep >
void itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::TransformLocalVectorToPhysicalVector ( FixedArray< TCoordRep, 3 > &  ) const
inline

Get the index (discrete) from a physical point. Floating point index results are truncated to integers. Returns true if the resulting index is within the image, false otherwise

See Also
Transform

Definition at line 332 of file itkPhasedArray3DSpecialCoordinatesImage.h.

template<class TPixel >
template<class TCoordRep >
bool itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::TransformPhysicalPointToContinuousIndex ( const Point< TCoordRep, 3 > &  point,
ContinuousIndex< TCoordRep, 3 > &  index 
) const
inline

Get the continuous index from a physical point.

Returns true if the resulting index is within the image, false otherwise.

See Also
Transform

Definition at line 182 of file itkPhasedArray3DSpecialCoordinatesImage.h.

References itk::ImageRegion< VImageDimension >::GetSize(), and itk::ImageRegion< VImageDimension >::IsInside().

template<class TPixel >
template<class TCoordRep >
bool itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::TransformPhysicalPointToIndex ( const Point< TCoordRep, 3 > &  point,
IndexType index 
) const
inline

Get the index (discrete) from a physical point. Floating point index results are truncated to integers. Returns true if the resulting index is within the image, false otherwise

See Also
Transform

Definition at line 216 of file itkPhasedArray3DSpecialCoordinatesImage.h.

References itk::ImageRegion< VImageDimension >::GetSize(), and itk::ImageRegion< VImageDimension >::IsInside().

template<class TPixel >
template<class TCoordRep >
void itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::TransformPhysicalVectorToLocalVector ( const FixedArray< TCoordRep, 3 > &  ,
FixedArray< TCoordRep, 3 > &   
) const
inline

Get the index (discrete) from a physical point. Floating point index results are truncated to integers. Returns true if the resulting index is within the image, false otherwise

See Also
Transform

Definition at line 337 of file itkPhasedArray3DSpecialCoordinatesImage.h.

Member Data Documentation

template<class TPixel >
const unsigned int itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::ImageDimension = 3
static

Dimension of the image. This constant is used by functions that are templated over image type (as opposed to being templated over pixel type and dimension) when they need compile time access to the dimension of the image.

Definition at line 138 of file itkPhasedArray3DSpecialCoordinatesImage.h.

template<class TPixel >
double itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::m_AzimuthAngularSeparation
private

Get the index (discrete) from a physical point. Floating point index results are truncated to integers. Returns true if the resulting index is within the image, false otherwise

See Also
Transform

Definition at line 362 of file itkPhasedArray3DSpecialCoordinatesImage.h.

template<class TPixel >
double itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::m_ElevationAngularSeparation
private

Get the index (discrete) from a physical point. Floating point index results are truncated to integers. Returns true if the resulting index is within the image, false otherwise

See Also
Transform

Definition at line 363 of file itkPhasedArray3DSpecialCoordinatesImage.h.

template<class TPixel >
double itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::m_FirstSampleDistance
private

Get the index (discrete) from a physical point. Floating point index results are truncated to integers. Returns true if the resulting index is within the image, false otherwise

See Also
Transform

Definition at line 365 of file itkPhasedArray3DSpecialCoordinatesImage.h.

template<class TPixel >
double itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::m_RadiusSampleSize
private

Get the index (discrete) from a physical point. Floating point index results are truncated to integers. Returns true if the resulting index is within the image, false otherwise

See Also
Transform

Definition at line 364 of file itkPhasedArray3DSpecialCoordinatesImage.h.


The documentation for this class was generated from the following file: