ITK
4.1.0
Insight Segmentation and Registration Toolkit
|
#include <itkPolygonGroupSpatialObject.h>
Public Types | |
typedef Superclass::BoundingBoxType | BoundingBoxType |
typedef Superclass::ChildrenListType | ChildrenListType |
typedef SmartPointer< const Self > | ConstPointer |
typedef SmartPointer< Self > | Pointer |
typedef Superclass::PointType | PointType |
typedef PolygonGroupSpatialObject < TDimension > | Self |
typedef GroupSpatialObject < TDimension > | Superclass |
typedef TreeNodeType::ChildrenListType | TreeNodeChildrenListType |
typedef Superclass::TreeNodeType | TreeNodeType |
Public Member Functions | |
bool | AddStrand (PolygonSpatialObject< TDimension > *toAdd) |
virtual ::itk::LightObject::Pointer | CreateAnother (void) const |
bool | DeleteStrand (PolygonSpatialObject< TDimension > *toDelete) |
virtual const char * | GetNameOfClass () const |
bool | IsClosed () |
virtual bool | IsInside (const PointType &point, unsigned int depth=0, char *name=NULL) const |
double | MeasureVolume () |
unsigned int | NumberOfStrands () |
bool | ReplaceStrand (PolygonSpatialObject< TDimension > *toReplace, PolygonSpatialObject< TDimension > *replacement) |
double | Volume () |
Static Public Member Functions | |
static Pointer | New () |
Protected Member Functions | |
void | operator= (const Self &) |
PolygonGroupSpatialObject (const Self &) | |
PolygonGroupSpatialObject (void) | |
~PolygonGroupSpatialObject (void) |
Implements a Region Of Interest Type.
This class implements a Region of Interest, which is simply a space in a medical image that has some significance as a component of the scan. Different components of brain anatomy, for instance are Regions of Interest in the human brain. The primary difference between PolygonGroupSpatialObject and other descendants of SpatialObject are these: 1. For now, an PolygonGroup needs to comprise a series of slices parallel to a plane swept by any two of the major axes. In other words, the points in each slice (or strand) all need to have one of the X,Y,Z values to be constant. 2. The IsInside method implements the concept of spatial 'insidedness' where other descendents of SpatialObject have a concept of insidedness defined in a rather ad-hoc manner. PolygonGroupSpatialObjects define IsInside to mean that the given point resides in space inside the surface of the PolygonGroupSpatialObject.
Definition at line 50 of file itkPolygonGroupSpatialObject.h.
typedef Superclass::BoundingBoxType itk::PolygonGroupSpatialObject< TDimension >::BoundingBoxType |
Reimplemented from itk::SpatialObject< TDimension >.
Definition at line 59 of file itkPolygonGroupSpatialObject.h.
typedef Superclass::ChildrenListType itk::PolygonGroupSpatialObject< TDimension >::ChildrenListType |
Return type for the list of children
Reimplemented from itk::SpatialObject< TDimension >.
Definition at line 60 of file itkPolygonGroupSpatialObject.h.
typedef SmartPointer< const Self > itk::PolygonGroupSpatialObject< TDimension >::ConstPointer |
Reimplemented from itk::GroupSpatialObject< TDimension >.
Definition at line 57 of file itkPolygonGroupSpatialObject.h.
typedef SmartPointer< Self > itk::PolygonGroupSpatialObject< TDimension >::Pointer |
Reimplemented from itk::GroupSpatialObject< TDimension >.
Definition at line 56 of file itkPolygonGroupSpatialObject.h.
typedef Superclass::PointType itk::PolygonGroupSpatialObject< TDimension >::PointType |
Reimplemented from itk::SpatialObject< TDimension >.
Definition at line 58 of file itkPolygonGroupSpatialObject.h.
typedef PolygonGroupSpatialObject< TDimension > itk::PolygonGroupSpatialObject< TDimension >::Self |
Standard class typedefs.
Reimplemented from itk::GroupSpatialObject< TDimension >.
Definition at line 54 of file itkPolygonGroupSpatialObject.h.
typedef GroupSpatialObject< TDimension > itk::PolygonGroupSpatialObject< TDimension >::Superclass |
Reimplemented from itk::GroupSpatialObject< TDimension >.
Definition at line 55 of file itkPolygonGroupSpatialObject.h.
typedef TreeNodeType::ChildrenListType itk::PolygonGroupSpatialObject< TDimension >::TreeNodeChildrenListType |
Reimplemented from itk::GroupSpatialObject< TDimension >.
Definition at line 62 of file itkPolygonGroupSpatialObject.h.
typedef Superclass::TreeNodeType itk::PolygonGroupSpatialObject< TDimension >::TreeNodeType |
Reimplemented from itk::GroupSpatialObject< TDimension >.
Definition at line 61 of file itkPolygonGroupSpatialObject.h.
itk::PolygonGroupSpatialObject< TDimension >::PolygonGroupSpatialObject | ( | const Self & | ) | [protected] |
itk::PolygonGroupSpatialObject< TDimension >::PolygonGroupSpatialObject | ( | void | ) | [inline, protected] |
Definition at line 106 of file itkPolygonGroupSpatialObject.h.
itk::PolygonGroupSpatialObject< TDimension >::~PolygonGroupSpatialObject | ( | void | ) | [inline, protected] |
Definition at line 107 of file itkPolygonGroupSpatialObject.h.
bool itk::PolygonGroupSpatialObject< TDimension >::AddStrand | ( | PolygonSpatialObject< TDimension > * | toAdd | ) |
Return true if the given PolygonSpatialObject is successfully added to the PolygonGroup.
virtual::itk::LightObject::Pointer itk::PolygonGroupSpatialObject< TDimension >::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::GroupSpatialObject< TDimension >.
bool itk::PolygonGroupSpatialObject< TDimension >::DeleteStrand | ( | PolygonSpatialObject< TDimension > * | toDelete | ) |
Return true if the given PolygonSpatialObject is successfully removed from the PolygonGroup
virtual const char* itk::PolygonGroupSpatialObject< TDimension >::GetNameOfClass | ( | ) | const [virtual] |
Method for creation through the object factory.
Reimplemented from itk::GroupSpatialObject< TDimension >.
bool itk::PolygonGroupSpatialObject< TDimension >::IsClosed | ( | ) |
Return true if all constituent Polygons are closed.
virtual bool itk::PolygonGroupSpatialObject< TDimension >::IsInside | ( | const PointType & | point, |
unsigned int | depth = 0 , |
||
char * | name = NULL |
||
) | const [virtual] |
Test whether a point is inside or outside the object.
double itk::PolygonGroupSpatialObject< TDimension >::MeasureVolume | ( | ) |
Same as Volume, above.
static Pointer itk::PolygonGroupSpatialObject< TDimension >::New | ( | ) | [static] |
Method for creation through the object factory.
Reimplemented from itk::GroupSpatialObject< TDimension >.
unsigned int itk::PolygonGroupSpatialObject< TDimension >::NumberOfStrands | ( | ) |
returns the number of Polygons in this PolygonGroup
void itk::PolygonGroupSpatialObject< TDimension >::operator= | ( | const Self & | ) | [protected] |
Reimplemented from itk::GroupSpatialObject< TDimension >.
bool itk::PolygonGroupSpatialObject< TDimension >::ReplaceStrand | ( | PolygonSpatialObject< TDimension > * | toReplace, |
PolygonSpatialObject< TDimension > * | replacement | ||
) |
Return true if the given PolygonSpatialObject successfully replaces the Polygon given in toReplace. This will fail if toReplace is not a strand in the PolygonGroupObject.
double itk::PolygonGroupSpatialObject< TDimension >::Volume | ( | ) |
Volume of this PolygonGroup, which is the sum of the volume of all its constituent Polygons