Go to the source code of this file.
Namespaces | |
namespace | itk |
Classes | |
class | itk::OStringStream |
Defines | |
#define | itkNotUsed(x) |
#define | itkStaticConstMacro(name, type, value) static const type name = value |
#define | itkGetStaticConstMacro(name) (Self::name) |
#define | itkGetStringMacro(name) |
#define | itkGetVectorMacro(name, type, count) |
#define | itkTypeMacro(thisClass, superclass) |
#define | itkGenericExceptionMacro(x) |
#define | itkGenericOutputMacro(x) |
|
Value: Create members "name"On() and "name"Off() (e.g., DebugOn() DebugOff()). Set method must be defined to use this macro. Definition at line 256 of file itkMacro.h. |
|
Value: This macro is used to print debug (or other information). They are also used to catch errors, etc. Example usage looks like: itkDebugMacro(<< "this is debug info" << this->SomeVariable); Definition at line 357 of file itkMacro.h. |
|
Value: The exception macro is used to print error information (i.e., usually a condition that results in program failure). Example usage looks like: itkExceptionMacro(<< "this is error info" << this->SomeVariable); Definition at line 444 of file itkMacro.h. Referenced by itk::BSplineDeformableTransform< TScalarType, NDimensions, VSplineOrder >::GetNumberOfWeights(), itk::Transform< TScalarType, 3, 2 >::GetParameters(), itk::MultiResolutionPDEDeformableRegistration< TFixedImage, TMovingImage, TDeformationField >::SetInitialDeformationField(), itk::WatershedImageFilter< TInputImage >::SetInput(), and itk::Transform< TScalarType, 3, 2 >::SetParameters(). |
|
Value: Define the virtual constructor without object factory creation method. This routine assigns the raw pointer to a smart pointer and then calls UnRegister() on the rawPtr to compensate for LightObject's constructor initializing an object's reference count to 1 (needed for proper initialization of process objects and data objects cycles). Definition at line 317 of file itkMacro.h. |
|
Value: Definition at line 454 of file itkMacro.h. Referenced by itk::Statistics::ListSampleBase< TMeasurementVector >::Search(). |
|
Value: Definition at line 465 of file itkMacro.h. |
|
Value: Get built-in type. Creates member Get"name"() (e.g., GetVisibility()); This is the "const" form of the itkGetMacro. It should be used unless the member can be changed through the "Get" access routine. Definition at line 127 of file itkMacro.h. |
|
Value: Get a smart const pointer to an object. Creates the member Get"name"() (e.g., GetPoints()). Definition at line 236 of file itkMacro.h. |
|
Value: Get built-in type. Creates member Get"name"() (e.g., GetVisibility()); This is the "const" form of the itkGetMacro. It should be used unless the member can be changed through the "Get" access routine. This versions returns a const reference to the variable. Definition at line 139 of file itkMacro.h. |
|
Value: Get a const reference to a smart pointer to an object. Creates the member Get"name"() (e.g., GetPoints()). Definition at line 246 of file itkMacro.h. |
|
Value: Get built-in type. Creates member Get"name"() (e.g., GetVisibility()); Definition at line 116 of file itkMacro.h. |
|
Value: Get a smart pointer to an object. Creates the member Get"name"() (e.g., GetPoints()). Definition at line 209 of file itkMacro.h. |
|
Definition at line 98 of file itkMacro.h. Referenced by itk::Statistics::GaussianGoodnessOfFitComponent< TInputSample >::GetNumberOfParameters(), and itk::Statistics::MeanShiftModeCacheMethod< TMeasurementVector >::LessMeasurementVector::operator()(). |
|
Value: Get character string. Creates member Get"name"() (e.g., SetFilename(char *)). The macro assumes that the class member (name) is declared a type std::string. Definition at line 170 of file itkMacro.h. |
|
Value: Get vector macro. Returns pointer to type (i.e., array of type). This is for efficiency. Definition at line 279 of file itkMacro.h. |
|
Value: Define the standard object factory creation method. This macro simply takes the type for which the New() method is being defined. This creation method first tries asking the object factory to create an instance, and then defaults to the standard "new" operator if the factory fails. This routine assigns the raw pointer to a smart pointer and then calls UnRegister() on the rawPtr to compensate for LightObject's constructor initializing an object's reference count to 1 (needed for proper initialization of process objects and data objects cycles). Definition at line 296 of file itkMacro.h. |
|
A convenience macro marks variables as not being used by a method, avoiding compile-time warnings. Definition at line 59 of file itkMacro.h. |
|
Value: Set built-in type where value is constrained between min/max limits. Create member Set"name"() (e.q., SetRadius()). #defines are convienience for clamping open-ended values. Definition at line 179 of file itkMacro.h. |
|
Value: Set const pointer to object; uses Object reference counting methodology. Creates method Set"name"() (e.g., SetPoints()). Note that using smart pointers requires using real pointers when setting input, but returning smart pointers on output. Definition at line 221 of file itkMacro.h. |
|
Value: Set built-in type. Creates member Set"name"() (e.g., SetVisibility()); Definition at line 103 of file itkMacro.h. |
|
Value: Set pointer to object; uses Object reference counting methodology. Creates method Set"name"() (e.g., SetPoints()). Note that using smart pointers requires using real pointers when setting input, but returning smart pointers on output. Definition at line 195 of file itkMacro.h. |
|
Value: Set character string. Creates member Set"name"() (e.g., SetFilename(char *)). The macro assumes that the class member (name) is declared a type std::string. Definition at line 150 of file itkMacro.h. |
|
Value: General set vector macro creates a single method that copies specified number of values into object. Examples: void SetColor(c,3) Definition at line 264 of file itkMacro.h. |
|
Macro to initialize static constants. This is used frequently to replace the use of enum's within a class. Some compilers do not allow an enum of one class to be passed as template argument to another class. Other uses of this macro as possible. This is based (verbatim) on the BOOST_STATIC_CONSTANT macro. The original Boost documentation is below. BOOST_STATIC_CONSTANT workaround --------------------------------------- // On compilers which don't allow in-class initialization of static integral constant members, we must use enums as a workaround if we want the constants to be available at compile-time. This macro gives us a convenient way to declare such constants. Definition at line 92 of file itkMacro.h. |
|
Value: Macro used to add standard methods to all classes, mainly type information. Definition at line 330 of file itkMacro.h. |
|
|
The following is used to output debug, warning, and error messages. Use a global function which actually calls: OutputWindow::GetInstance()->DisplayText(); This is to avoid Object #include of OutputWindow while OutputWindow #includes Object. |
|
The following is used to output debug, warning, and error messages. Use a global function which actually calls: OutputWindow::GetInstance()->DisplayText(); This is to avoid Object #include of OutputWindow while OutputWindow #includes Object. |
|
The following is used to output debug, warning, and error messages. Use a global function which actually calls: OutputWindow::GetInstance()->DisplayText(); This is to avoid Object #include of OutputWindow while OutputWindow #includes Object. |
|
The following is used to output debug, warning, and error messages. Use a global function which actually calls: OutputWindow::GetInstance()->DisplayText(); This is to avoid Object #include of OutputWindow while OutputWindow #includes Object. |
|
The following is used to output debug, warning, and error messages. Use a global function which actually calls: OutputWindow::GetInstance()->DisplayText(); This is to avoid Object #include of OutputWindow while OutputWindow #includes Object. |