#include <itkPhasedArray3DSpecialCoordinatesImage.h>
Inheritance diagram for itk::PhasedArray3DSpecialCoordinatesImage< TPixel >:


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).
Definition at line 91 of file itkPhasedArray3DSpecialCoordinatesImage.h.
| virtual void | SetAzimuthAngularSeparation (double _arg) |
| virtual void | SetElevationAngularSeparation (double _arg) |
| virtual void | SetFirstSampleDistance (double _arg) |
| virtual void | SetRadiusSampleSize (double _arg) |
| 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 |
| template<class TCoordRep> | |
| bool | TransformPhysicalPointToIndex (const Point< TCoordRep, 3 > &point, IndexType &index) const |
| PhasedArray3DSpecialCoordinatesImage () | |
| void | PrintSelf (std::ostream &os, Indent indent) const |
| virtual | ~PhasedArray3DSpecialCoordinatesImage () |
| static bool | GetGlobalReleaseDataFlag () |
| static void | SetGlobalReleaseDataFlag (const bool val) |
| void | GlobalReleaseDataFlagOff () |
| void | GlobalReleaseDataFlagOn () |
Public Types | |
| typedef DefaultPixelAccessorFunctor< Self > | AccessorFunctorType |
| typedef DefaultPixelAccessor< PixelType > | AccessorType |
| typedef SmartPointer< const Self > | ConstPointer |
| typedef WeakPointer< const Self > | ConstWeakPointer |
| typedef Matrix< double, VImageDimension, VImageDimension > | DirectionType |
| typedef Superclass::IndexType | IndexType |
| typedef Superclass::IndexValueType | IndexValueType |
| typedef TPixel | InternalPixelType |
| typedef Superclass::IOPixelType | IOPixelType |
| typedef Superclass::OffsetType | OffsetType |
| typedef OffsetType::OffsetValueType | OffsetValueType |
| typedef ImportImageContainer< unsigned long, PixelType > | PixelContainer |
| typedef PixelContainer::ConstPointer | PixelContainerConstPointer |
| typedef PixelContainer::Pointer | PixelContainerPointer |
| typedef TPixel | PixelType |
| typedef SmartPointer< Self > | Pointer |
| typedef Superclass::PointType | PointType |
| typedef Superclass::RegionType | RegionType |
| typedef PhasedArray3DSpecialCoordinatesImage | Self |
| typedef Superclass::SizeType | SizeType |
| typedef SizeType::SizeValueType | SizeValueType |
| typedef Superclass::SpacingType | SpacingType |
| typedef SpecialCoordinatesImage< TPixel, 3 > | Superclass |
| typedef TPixel | ValueType |
Public Member Functions | |
| void | Allocate () |
| OffsetValueType | ComputeOffset (const IndexType &ind) const |
| virtual void | CopyInformation (const DataObject *data) |
| virtual LightObject::Pointer | CreateAnother () const |
| void | DataHasBeenGenerated () |
| virtual void | DebugOff () const |
| virtual void | DebugOn () const |
| virtual void | Delete () |
| void | DisconnectPipeline () |
| void | FillBuffer (const TPixel &value) |
| virtual const RegionType & | GetBufferedRegion () const |
| const TPixel * | GetBufferPointer () const |
| TPixel * | GetBufferPointer () |
| Command * | GetCommand (unsigned long tag) |
| bool | GetDataReleased () const |
| bool | GetDebug () const |
| virtual const DirectionType & | GetDirection () |
| virtual const RegionType & | GetLargestPossibleRegion () const |
| const MetaDataDictionary & | GetMetaDataDictionary (void) const |
| MetaDataDictionary & | GetMetaDataDictionary (void) |
| virtual unsigned long | GetMTime () const |
| virtual const char * | GetNameOfClass () const |
| virtual const PointType & | GetOrigin () |
| TPixel & | GetPixel (const IndexType &index) |
| const TPixel & | GetPixel (const IndexType &index) const |
| const AccessorType | GetPixelAccessor (void) const |
| AccessorType | GetPixelAccessor (void) |
| const PixelContainer * | GetPixelContainer () const |
| PixelContainer * | GetPixelContainer () |
| virtual int | GetReferenceCount () const |
| virtual const RegionType & | GetRequestedRegion () const |
| SmartPointerForwardReference< ProcessObject > | GetSource () const |
| unsigned int | GetSourceOutputIndex () const |
| virtual const SpacingType & | GetSpacing () |
| virtual unsigned long | GetUpdateMTime () const |
| virtual void | Graft (const DataObject *data) |
| bool | HasObserver (const EventObject &event) const |
| virtual void | Initialize () |
| void | InvokeEvent (const EventObject &) const |
| void | InvokeEvent (const EventObject &) |
| itkStaticConstMacro (ImageDimension, unsigned int, VImageDimension) | |
| itkStaticConstMacro (ImageDimension, unsigned int, 3) | |
| virtual void | Modified () const |
| const TPixel & | operator[] (const IndexType &index) const |
| TPixel & | operator[] (const IndexType &index) |
| virtual void | PrepareForNewData () |
| void | Print (std::ostream &os, Indent indent=0) const |
| virtual void | Register () const |
| void | ReleaseData () |
| void | RemoveAllObservers () |
| void | RemoveObserver (unsigned long tag) |
| virtual bool | RequestedRegionIsOutsideOfTheBufferedRegion () |
| virtual void | ResetPipeline () |
| virtual void | SetBufferedRegion (const RegionType ®ion) |
| void | SetDebug (bool debugFlag) const |
| virtual void | SetDirection (const DirectionType direction) |
| virtual void | SetLargestPossibleRegion (const RegionType ®ion) |
| void | SetMetaDataDictionary (const MetaDataDictionary &rhs) |
| virtual void | SetOrigin (const float[VImageDimension]) |
| virtual void | SetOrigin (const double[VImageDimension]) |
| virtual void | SetOrigin (const PointType) |
| void | SetPixel (const IndexType &index, const TPixel &value) |
| void | SetPixelContainer (PixelContainer *container) |
| virtual void | SetReferenceCount (int) |
| void | SetRegions (SizeType size) |
| void | SetRegions (RegionType region) |
| virtual void | SetRequestedRegion (DataObject *data) |
| virtual void | SetRequestedRegion (const RegionType ®ion) |
| virtual void | SetRequestedRegionToLargestPossibleRegion () |
| virtual void | SetSpacing (const float[VImageDimension]) |
| virtual void | SetSpacing (const double[VImageDimension]) |
| virtual void | SetSpacing (const SpacingType &) |
| bool | ShouldIReleaseData () const |
| template<class TCoordRep> | |
| bool | TransformPhysicalPointToContinuousIndex (const Point< TCoordRep, VImageDimension > &point, ContinuousIndex< TCoordRep, VImageDimension > &index) const |
| template<class TCoordRep> | |
| bool | TransformPhysicalPointToContinuousIndex (const Point< TCoordRep, 3 > &point, ContinuousIndex< TCoordRep, 3 > &index) const |
| template<class TCoordRep> | |
| bool | TransformPhysicalPointToIndex (const Point< TCoordRep, VImageDimension > &point, IndexType &index) const |
| virtual void | UnRegister () const |
| virtual void | Update () |
| virtual void | UpdateOutputInformation () |
| virtual bool | VerifyRequestedRegion () |
| unsigned long | AddObserver (const EventObject &event, Command *) const |
| unsigned long | AddObserver (const EventObject &event, Command *) |
| IndexType | ComputeIndex (OffsetValueType offset) const |
| virtual unsigned int | GetNumberOfComponentsPerPixel () const |
| virtual void | SetNumberOfComponentsPerPixel (unsigned int) |
| const OffsetValueType * | GetOffsetTable () const |
| virtual const unsigned long & | GetPipelineMTime () |
| void | SetPipelineMTime (unsigned long time) |
| virtual const bool & | GetReleaseDataFlag () |
| virtual void | ReleaseDataFlagOff () |
| virtual void | ReleaseDataFlagOn () |
| void | SetReleaseDataFlag (bool flag) |
| virtual void | PropagateRequestedRegion () throw (InvalidRequestedRegionError) |
| virtual void | UpdateOutputData () |
| 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 |
| template<class TCoordRep> | |
| void | TransformLocalVectorToPhysicalVector (const FixedArray< TCoordRep, VImageDimension > &inputGradient, FixedArray< TCoordRep, VImageDimension > &outputGradient) const |
Static Public Member Functions | |
| static void | BreakOnError () |
| static unsigned int | GetImageDimension () |
| static Pointer | New () |
| static bool | GetGlobalWarningDisplay () |
| static void | GlobalWarningDisplayOff () |
| static void | GlobalWarningDisplayOn () |
| static void | SetGlobalWarningDisplay (bool flag) |
Protected Types | |
| typedef int | InternalReferenceCountType |
Protected Member Functions | |
| virtual void | ComputeIndexToPhysicalPointMatrices () |
| void | ComputeOffsetTable () |
| bool | PrintObservers (std::ostream &os, Indent indent) const |
| virtual void | PropagateResetPipeline () |
| virtual void | PrintHeader (std::ostream &os, Indent indent) const |
| virtual void | PrintTrailer (std::ostream &os, Indent indent) const |
Protected Attributes | |
| DirectionType | m_Direction |
| DirectionType | m_IndexToPhysicalPoint |
| PointType | m_Origin |
| DirectionType | m_PhysicalPointToIndex |
| InternalReferenceCountType | m_ReferenceCount |
| SimpleFastMutexLock | m_ReferenceCountLock |
| SpacingType | m_Spacing |
| typedef DefaultPixelAccessorFunctor< Self > itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::AccessorFunctorType |
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.
Reimplemented from itk::SpecialCoordinatesImage< TPixel, 3 >.
Definition at line 130 of file itkPhasedArray3DSpecialCoordinatesImage.h.
| typedef DefaultPixelAccessor< PixelType > itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::AccessorType |
Accessor type that convert data between internal and external representations.
Reimplemented from itk::SpecialCoordinatesImage< TPixel, 3 >.
Definition at line 125 of file itkPhasedArray3DSpecialCoordinatesImage.h.
| typedef SmartPointer<const Self> itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::ConstPointer |
Reimplemented from itk::SpecialCoordinatesImage< TPixel, 3 >.
Definition at line 99 of file itkPhasedArray3DSpecialCoordinatesImage.h.
| typedef WeakPointer<const Self> itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::ConstWeakPointer |
Reimplemented from itk::SpecialCoordinatesImage< TPixel, 3 >.
Definition at line 100 of file itkPhasedArray3DSpecialCoordinatesImage.h.
typedef Matrix<double, VImageDimension, VImageDimension> itk::ImageBase< VImageDimension >::DirectionType [inherited] |
Direction typedef support. The Direction is a matix of direction cosines that specify the direction between samples.
Reimplemented in itk::Image< TPixel, VImageDimension >, itk::ImageAdaptor< TImage, TAccessor >, itk::OrientedImage< TPixel, VImageDimension >, itk::VectorImage< TPixel, VImageDimension >, itk::Image< itk::BloxCoreAtomPixel< NDimension >, TImageDimension >, itk::Image< TNode *, VImageDimension >, itk::Image< itk::BloxBoundaryProfilePixel< TImageDimension >, TImageDimension >, itk::Image< TBloxPixelType, TImageDimension >, itk::Image< itk::BloxBoundaryPointPixel< TImageDimension >, TImageDimension >, itk::ImageAdaptor< TImage, itk::Accessor::AsinPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::AbsPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::LogPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ComplexToPhasePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::Log10PixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ExpPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::AddPixelAccessor< TImage::PixelType > >, itk::ImageAdaptor< itk::VectorImage< TPixelType, Dimension >, itk::Accessor::VectorImageToImagePixelAccessor< TPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::RGBToVectorPixelAccessor< TImage::PixelType::ComponentType > >, itk::ImageAdaptor< TImage, itk::PixelAccessor< TInternalType, TExternalType > >, itk::ImageAdaptor< TImage, itk::Accessor::SqrtPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::AcosPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ComplexToModulusPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ExpNegativePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::VectorToRGBPixelAccessor< TImage::PixelType::ValueType > >, itk::ImageAdaptor< TImage, itk::Accessor::TanPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ComplexToRealPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::RGBToLuminancePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::AtanPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::SinPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ComplexToImaginaryPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::CosPixelAccessor< TImage::PixelType, TOutputPixelType > >, and itk::VectorImage< TPixelType, Dimension >.
Definition at line 137 of file itkImageBase.h.
| typedef Superclass::IndexType itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::IndexType |
Index typedef support. An index is used to access pixel values.
Reimplemented from itk::SpecialCoordinatesImage< TPixel, 3 >.
Definition at line 142 of file itkPhasedArray3DSpecialCoordinatesImage.h.
| typedef Superclass::IndexValueType itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::IndexValueType |
Reimplemented from itk::ImageBase< VImageDimension >.
Definition at line 143 of file itkPhasedArray3DSpecialCoordinatesImage.h.
| 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.
Reimplemented from itk::SpecialCoordinatesImage< TPixel, 3 >.
Definition at line 119 of file itkPhasedArray3DSpecialCoordinatesImage.h.
typedef int itk::LightObject::InternalReferenceCountType [protected, inherited] |
Define the type of the reference count according to the target. This allows the use of atomic operations
Definition at line 139 of file itkLightObject.h.
| typedef Superclass::IOPixelType itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::IOPixelType |
Reimplemented from itk::SpecialCoordinatesImage< TPixel, 3 >.
Definition at line 121 of file itkPhasedArray3DSpecialCoordinatesImage.h.
| typedef Superclass::OffsetType itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::OffsetType |
Offset typedef support. An offset is used to access pixel values.
Reimplemented from itk::SpecialCoordinatesImage< TPixel, 3 >.
Definition at line 146 of file itkPhasedArray3DSpecialCoordinatesImage.h.
typedef OffsetType::OffsetValueType itk::ImageBase< VImageDimension >::OffsetValueType [inherited] |
Reimplemented in itk::Image< TPixel, VImageDimension >, itk::ImageAdaptor< TImage, TAccessor >, itk::VectorImage< TPixel, VImageDimension >, itk::Image< itk::BloxCoreAtomPixel< NDimension >, TImageDimension >, itk::Image< TNode *, VImageDimension >, itk::Image< itk::BloxBoundaryProfilePixel< TImageDimension >, TImageDimension >, itk::Image< TBloxPixelType, TImageDimension >, itk::Image< itk::BloxBoundaryPointPixel< TImageDimension >, TImageDimension >, itk::ImageAdaptor< TImage, itk::Accessor::AsinPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::AbsPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::LogPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ComplexToPhasePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::Log10PixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ExpPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::AddPixelAccessor< TImage::PixelType > >, itk::ImageAdaptor< itk::VectorImage< TPixelType, Dimension >, itk::Accessor::VectorImageToImagePixelAccessor< TPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::RGBToVectorPixelAccessor< TImage::PixelType::ComponentType > >, itk::ImageAdaptor< TImage, itk::PixelAccessor< TInternalType, TExternalType > >, itk::ImageAdaptor< TImage, itk::Accessor::SqrtPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::AcosPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ComplexToModulusPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ExpNegativePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::VectorToRGBPixelAccessor< TImage::PixelType::ValueType > >, itk::ImageAdaptor< TImage, itk::Accessor::TanPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ComplexToRealPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::RGBToLuminancePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::AtanPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::SinPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ComplexToImaginaryPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::CosPixelAccessor< TImage::PixelType, TOutputPixelType > >, and itk::VectorImage< TPixelType, Dimension >.
Definition at line 115 of file itkImageBase.h.
| typedef ImportImageContainer<unsigned long, PixelType> itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::PixelContainer |
Container used to store pixels in the image.
Reimplemented from itk::SpecialCoordinatesImage< TPixel, 3 >.
Definition at line 139 of file itkPhasedArray3DSpecialCoordinatesImage.h.
| typedef PixelContainer::ConstPointer itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::PixelContainerConstPointer |
Reimplemented from itk::SpecialCoordinatesImage< TPixel, 3 >.
Definition at line 172 of file itkPhasedArray3DSpecialCoordinatesImage.h.
| typedef PixelContainer::Pointer itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::PixelContainerPointer |
A pointer to the pixel container.
Reimplemented from itk::SpecialCoordinatesImage< TPixel, 3 >.
Definition at line 171 of file itkPhasedArray3DSpecialCoordinatesImage.h.
| typedef TPixel itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::PixelType |
Pixel typedef support. Used to declare pixel type in filters or other operations.
Reimplemented from itk::SpecialCoordinatesImage< TPixel, 3 >.
Definition at line 106 of file itkPhasedArray3DSpecialCoordinatesImage.h.
| typedef SmartPointer<Self> itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::Pointer |
Reimplemented from itk::SpecialCoordinatesImage< TPixel, 3 >.
Definition at line 98 of file itkPhasedArray3DSpecialCoordinatesImage.h.
| 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.
Reimplemented from itk::SpecialCoordinatesImage< TPixel, 3 >.
Definition at line 168 of file itkPhasedArray3DSpecialCoordinatesImage.h.
| typedef Superclass::RegionType itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::RegionType |
Region typedef support. A region is used to specify a subset of an image.
Reimplemented from itk::SpecialCoordinatesImage< TPixel, 3 >.
Definition at line 154 of file itkPhasedArray3DSpecialCoordinatesImage.h.
| typedef PhasedArray3DSpecialCoordinatesImage itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::Self |
Standard class typedefs
Reimplemented from itk::SpecialCoordinatesImage< TPixel, 3 >.
Definition at line 96 of file itkPhasedArray3DSpecialCoordinatesImage.h.
| typedef Superclass::SizeType itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::SizeType |
Size typedef support. A size is used to define region bounds.
Reimplemented from itk::SpecialCoordinatesImage< TPixel, 3 >.
Definition at line 149 of file itkPhasedArray3DSpecialCoordinatesImage.h.
typedef SizeType::SizeValueType itk::ImageBase< VImageDimension >::SizeValueType [inherited] |
Reimplemented in itk::ImageAdaptor< TImage, TAccessor >, itk::ImageAdaptor< TImage, itk::Accessor::AsinPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::AbsPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::LogPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ComplexToPhasePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::Log10PixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ExpPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::AddPixelAccessor< TImage::PixelType > >, itk::ImageAdaptor< itk::VectorImage< TPixelType, Dimension >, itk::Accessor::VectorImageToImagePixelAccessor< TPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::RGBToVectorPixelAccessor< TImage::PixelType::ComponentType > >, itk::ImageAdaptor< TImage, itk::PixelAccessor< TInternalType, TExternalType > >, itk::ImageAdaptor< TImage, itk::Accessor::SqrtPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::AcosPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ComplexToModulusPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ExpNegativePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::VectorToRGBPixelAccessor< TImage::PixelType::ValueType > >, itk::ImageAdaptor< TImage, itk::Accessor::TanPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ComplexToRealPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::RGBToLuminancePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::AtanPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::SinPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ComplexToImaginaryPixelAccessor< TImage::PixelType, TOutputPixelType > >, and itk::ImageAdaptor< TImage, itk::Accessor::CosPixelAccessor< TImage::PixelType, TOutputPixelType > >.
Definition at line 119 of file itkImageBase.h.
| 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.
Reimplemented from itk::SpecialCoordinatesImage< TPixel, 3 >.
Definition at line 162 of file itkPhasedArray3DSpecialCoordinatesImage.h.
| typedef SpecialCoordinatesImage<TPixel,3> itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::Superclass |
Reimplemented from itk::SpecialCoordinatesImage< TPixel, 3 >.
Definition at line 97 of file itkPhasedArray3DSpecialCoordinatesImage.h.
| typedef TPixel itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::ValueType |
Typedef alias for PixelType
Reimplemented from itk::SpecialCoordinatesImage< TPixel, 3 >.
Definition at line 113 of file itkPhasedArray3DSpecialCoordinatesImage.h.
| itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::PhasedArray3DSpecialCoordinatesImage | ( | ) | [inline, protected] |
Definition at line 336 of file itkPhasedArray3DSpecialCoordinatesImage.h.
| virtual itk::PhasedArray3DSpecialCoordinatesImage< TPixel >::~PhasedArray3DSpecialCoordinatesImage | ( | ) | [inline, protected, virtual] |
Definition at line 343 of file itkPhasedArray3DSpecialCoordinatesImage.h.
| unsigned long itk::Object::AddObserver | ( | const EventObject & | event, | |
| Command * | ||||
| ) | const [inherited] |
| unsigned long itk::Object::AddObserver | ( | const EventObject & | event, | |
| Command * | ||||
| ) | [inherited] |
Allow people to add/remove/invoke observers (callbacks) to any ITK object. This is an implementation of the subject/observer design pattern. An observer is added by specifying an event to respond to and an itk::Command to execute. It returns an unsigned long tag which can be used later to remove the event or retrieve the command. The memory for the Command becomes the responsibility of this object, so don't pass the same instance of a command to two different objects
| void itk::SpecialCoordinatesImage< TPixel , VImageDimension >::Allocate | ( | ) | [inherited] |
Allocate the image memory. The size of the image must already be set, e.g. by calling SetRegions().
| static void itk::LightObject::BreakOnError | ( | ) | [static, inherited] |
This method is called when itkExceptionMacro executes. It allows the debugger to break on error.
| IndexType itk::ImageBase< VImageDimension >::ComputeIndex | ( | OffsetValueType | offset | ) | const [inline, inherited] |
Compute the index of the pixel at a specified offset from the beginning of the buffered region. Bounds checking is not performed. Thus, the computed index could be outside the BufferedRegion. To ensure a valid index, the parameter "offset" should be between 0 and the number of pixels in the BufferedRegion (the latter can be found using ImageRegion::GetNumberOfPixels()).
Reimplemented in itk::ImageAdaptor< TImage, TAccessor >, itk::ImageAdaptor< TImage, itk::Accessor::AsinPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::AbsPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::LogPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ComplexToPhasePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::Log10PixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ExpPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::AddPixelAccessor< TImage::PixelType > >, itk::ImageAdaptor< itk::VectorImage< TPixelType, Dimension >, itk::Accessor::VectorImageToImagePixelAccessor< TPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::RGBToVectorPixelAccessor< TImage::PixelType::ComponentType > >, itk::ImageAdaptor< TImage, itk::PixelAccessor< TInternalType, TExternalType > >, itk::ImageAdaptor< TImage, itk::Accessor::SqrtPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::AcosPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ComplexToModulusPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ExpNegativePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::VectorToRGBPixelAccessor< TImage::PixelType::ValueType > >, itk::ImageAdaptor< TImage, itk::Accessor::TanPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ComplexToRealPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::RGBToLuminancePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::AtanPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::SinPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ComplexToImaginaryPixelAccessor< TImage::PixelType, TOutputPixelType > >, and itk::ImageAdaptor< TImage, itk::Accessor::CosPixelAccessor< TImage::PixelType, TOutputPixelType > >.
Definition at line 321 of file itkImageBase.h.
| virtual void itk::ImageBase< VImageDimension >::ComputeIndexToPhysicalPointMatrices | ( | ) | [protected, virtual, inherited] |
Compute helper matrices used to transform Index coordinates to PhysicalPoint coordinates and back. This method is virtual and will be overloaded in derived classes in order to provide backward compatibility behavior in classes that did not used to take image orientation into account.
Reimplemented in itk::Image< TPixel, VImageDimension >, itk::OrientedImage< TPixel, VImageDimension >, itk::Image< itk::BloxCoreAtomPixel< NDimension >, TImageDimension >, itk::Image< TNode *, VImageDimension >, itk::Image< itk::BloxBoundaryProfilePixel< TImageDimension >, TImageDimension >, itk::Image< TBloxPixelType, TImageDimension >, and itk::Image< itk::BloxBoundaryPointPixel< TImageDimension >, TImageDimension >.
| OffsetValueType itk::ImageBase< VImageDimension >::ComputeOffset | ( | const IndexType & | ind | ) | const [inline, inherited] |
Compute an offset from the beginning of the buffer for a pixel at the specified index. The index is not checked as to whether it is inside the current buffer, so the computed offset could conceivably be outside the buffer. If bounds checking is needed, one can call ImageRegion::IsInside(ind) on the BufferedRegion prior to calling ComputeOffset.
Definition at line 285 of file itkImageBase.h.
| void itk::ImageBase< VImageDimension >::ComputeOffsetTable | ( | ) | [protected, inherited] |
Calculate the offsets needed to move from one pixel to the next along a row, column, slice, volume, etc. These offsets are based on the size of the BufferedRegion. This should be called after the BufferedRegion is set.
| virtual void itk::ImageBase< VImageDimension >::CopyInformation | ( | const DataObject * | data | ) | [virtual, inherited] |
Copy information from the specified data set. This method is part of the pipeline execution model. By default, a ProcessObject will copy meta-data from the first input to all of its outputs. See ProcessObject::GenerateOutputInformation(). Each subclass of DataObject is responsible for being able to copy whatever meta-data it needs from from another DataObject. ImageBase has more meta-data than its DataObject. Thus, it must provide its own version of CopyInformation() in order to copy the LargestPossibleRegion from the input parameter.
Reimplemented from itk::DataObject.
Reimplemented in itk::ImageAdaptor< TImage, TAccessor >, itk::ImageAdaptor< TImage, itk::Accessor::AsinPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::AbsPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::LogPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ComplexToPhasePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::Log10PixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ExpPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::AddPixelAccessor< TImage::PixelType > >, itk::ImageAdaptor< itk::VectorImage< TPixelType, Dimension >, itk::Accessor::VectorImageToImagePixelAccessor< TPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::RGBToVectorPixelAccessor< TImage::PixelType::ComponentType > >, itk::ImageAdaptor< TImage, itk::PixelAccessor< TInternalType, TExternalType > >, itk::ImageAdaptor< TImage, itk::Accessor::SqrtPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::AcosPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ComplexToModulusPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ExpNegativePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::VectorToRGBPixelAccessor< TImage::PixelType::ValueType > >, itk::ImageAdaptor< TImage, itk::Accessor::TanPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ComplexToRealPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::RGBToLuminancePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::AtanPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::SinPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, itk::Accessor::ComplexToImaginaryPixelAccessor< TImage::PixelType, TOutputPixelType > >, and itk::ImageAdaptor< TImage, itk::Accessor::CosPixelAccessor< TImage::PixelType, TOutputPixelType > >.
| virtual LightObject::Pointer itk::Object::CreateAnother | ( | ) | const [virtual, inherited] |
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::LightObject.
| void itk::DataObject::DataHasBeenGenerated | ( | ) | [inherited] |
Inform the pipeline mechanism that data has been generated. This method is call