ITK
4.3.0
Insight Segmentation and Registration Toolkit
|
#include <itkImportImageContainer.h>
Defines an itk::Image front-end to a standard C-array.
Defines an itk::Image front-end to a standard C-array. This container conforms to the ImageContainerInterface. This is a full-fleged Object, so there is modification time, debug, and reference count information.
TElementIdentifier | An INTEGRAL type for use in indexing the imported buffer. |
TElement | The element type stored in the container. |
Definition at line 45 of file itkImportImageContainer.h.
Public Types | |
typedef SmartPointer< const Self > | ConstPointer |
typedef TElement | Element |
typedef TElementIdentifier | ElementIdentifier |
typedef SmartPointer< Self > | Pointer |
typedef ImportImageContainer | Self |
typedef Object | Superclass |
Public Types inherited from itk::Object | |
typedef SmartPointer< const Self > | ConstPointer |
typedef SmartPointer< Self > | Pointer |
typedef Object | Self |
typedef LightObject | Superclass |
Public Types inherited from itk::LightObject | |
typedef SmartPointer< const Self > | ConstPointer |
typedef SmartPointer< Self > | Pointer |
typedef LightObject | Self |
Public Member Functions | |
ElementIdentifier | Capacity (void) const |
virtual ::itk::LightObject::Pointer | CreateAnother (void) const |
TElement * | GetBufferPointer () |
TElement * | GetImportPointer () |
virtual const char * | GetNameOfClass () const |
void | Initialize (void) |
TElement & | operator[] (const ElementIdentifier id) |
const TElement & | operator[] (const ElementIdentifier id) const |
void | Reserve (ElementIdentifier num) |
void | SetImportPointer (TElement *ptr, TElementIdentifier num, bool LetContainerManageMemory=false) |
ElementIdentifier | Size (void) const |
void | Squeeze (void) |
virtual void | SetContainerManageMemory (bool _arg) |
virtual bool | GetContainerManageMemory () const |
virtual void | ContainerManageMemoryOn () |
virtual void | ContainerManageMemoryOff () |
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 |
Command * | GetCommand (unsigned long tag) |
bool | GetDebug () const |
MetaDataDictionary & | GetMetaDataDictionary (void) |
const MetaDataDictionary & | GetMetaDataDictionary (void) const |
virtual ModifiedTimeType | GetMTime () const |
virtual const TimeStamp & | GetTimeStamp () 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::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 () |
Protected Member Functions | |
virtual TElement * | AllocateElements (ElementIdentifier size) const |
virtual void | DeallocateManagedMemory () |
ImportImageContainer () | |
void | PrintSelf (std::ostream &os, Indent indent) const |
virtual void | SetCapacity (TElementIdentifier _arg) |
void | SetImportPointer (TElement *ptr) |
virtual void | SetSize (TElementIdentifier _arg) |
virtual | ~ImportImageContainer () |
Protected Member Functions inherited from itk::Object | |
Object () | |
bool | PrintObservers (std::ostream &os, Indent indent) const |
virtual void | SetTimeStamp (const TimeStamp &time) |
virtual | ~Object () |
Protected Member Functions inherited from itk::LightObject | |
virtual LightObject::Pointer | InternalClone () const |
LightObject () | |
virtual void | PrintHeader (std::ostream &os, Indent indent) const |
virtual void | PrintTrailer (std::ostream &os, Indent indent) const |
virtual | ~LightObject () |
Private Member Functions | |
ImportImageContainer (const Self &) | |
void | operator= (const Self &) |
Private Attributes | |
TElementIdentifier | m_Capacity |
bool | m_ContainerManageMemory |
TElement * | m_ImportPointer |
TElementIdentifier | m_Size |
Additional Inherited Members | |
Protected Types inherited from itk::LightObject | |
typedef int | InternalReferenceCountType |
Protected Attributes inherited from itk::LightObject | |
InternalReferenceCountType | m_ReferenceCount |
SimpleFastMutexLock | m_ReferenceCountLock |
typedef SmartPointer< const Self > itk::ImportImageContainer< TElementIdentifier, TElement >::ConstPointer |
Definition at line 52 of file itkImportImageContainer.h.
typedef TElement itk::ImportImageContainer< TElementIdentifier, TElement >::Element |
Definition at line 56 of file itkImportImageContainer.h.
typedef TElementIdentifier itk::ImportImageContainer< TElementIdentifier, TElement >::ElementIdentifier |
Save the template parameters.
Definition at line 55 of file itkImportImageContainer.h.
typedef SmartPointer< Self > itk::ImportImageContainer< TElementIdentifier, TElement >::Pointer |
Definition at line 51 of file itkImportImageContainer.h.
typedef ImportImageContainer itk::ImportImageContainer< TElementIdentifier, TElement >::Self |
Standard class typedefs.
Definition at line 49 of file itkImportImageContainer.h.
typedef Object itk::ImportImageContainer< TElementIdentifier, TElement >::Superclass |
Definition at line 50 of file itkImportImageContainer.h.
|
protected |
|
protectedvirtual |
|
private |
|
protectedvirtual |
|
inline |
Get the capacity of the container.
Definition at line 90 of file itkImportImageContainer.h.
References itk::ImportImageContainer< TElementIdentifier, TElement >::m_Capacity.
|
virtual |
These methods allow to define whether upon destruction of this class the memory buffer should be released or not. Setting it to true (or ON) makes that this class will take care of memory release. Setting it to false (or OFF) will prevent the destructor from deleting the memory buffer. This is desirable only when the data is intended to be used by external applications. Note that the normal logic of this class set the value of the boolean flag. This may override your setting if you call this methods prematurely.
|
virtual |
These methods allow to define whether upon destruction of this class the memory buffer should be released or not. Setting it to true (or ON) makes that this class will take care of memory release. Setting it to false (or OFF) will prevent the destructor from deleting the memory buffer. This is desirable only when the data is intended to be used by external applications. Note that the normal logic of this class set the value of the boolean flag. This may override your setting if you call this methods prematurely.
|
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::Object.
|
protectedvirtual |
|
inline |
Return a pointer to the beginning of the buffer. This is used by the image iterator class.
Definition at line 86 of file itkImportImageContainer.h.
References itk::ImportImageContainer< TElementIdentifier, TElement >::m_ImportPointer.
|
virtual |
These methods allow to define whether upon destruction of this class the memory buffer should be released or not. Setting it to true (or ON) makes that this class will take care of memory release. Setting it to false (or OFF) will prevent the destructor from deleting the memory buffer. This is desirable only when the data is intended to be used by external applications. Note that the normal logic of this class set the value of the boolean flag. This may override your setting if you call this methods prematurely.
|
inline |
Get the pointer from which the image data is imported.
Definition at line 65 of file itkImportImageContainer.h.
References itk::ImportImageContainer< TElementIdentifier, TElement >::m_ImportPointer.
|
virtual |
Standard part of every itk Object.
Reimplemented from itk::Object.
void itk::ImportImageContainer< TElementIdentifier, TElement >::Initialize | ( | void | ) |
Tell the container to release any of its allocated memory.
|
static |
Method for creation through the object factory.
|
private |
|
inline |
Index operator. This version can be an lvalue.
Definition at line 77 of file itkImportImageContainer.h.
References itk::ImportImageContainer< TElementIdentifier, TElement >::m_ImportPointer.
|
inline |
Index operator. This version can only be an rvalue
Definition at line 81 of file itkImportImageContainer.h.
References itk::ImportImageContainer< TElementIdentifier, TElement >::m_ImportPointer.
|
protectedvirtual |
PrintSelf routine. Normally this is a protected internal method. It is made public here so that Image can call this method. Users should not call this method but should call Print() instead.
Reimplemented from itk::Object.
void itk::ImportImageContainer< TElementIdentifier, TElement >::Reserve | ( | ElementIdentifier | num | ) |
Tell the container to allocate enough memory to allow at least as many elements as the size given to be stored. If new memory needs to be allocated, the contents of the old buffer are copied to the new area. The old buffer is deleted if the original pointer was passed in using "LetContainerManageMemory"=true. The new buffer's memory management will be handled by the container from that point on.
In general, Reserve should not change the usable elements of the container. However, in this particular case, Reserve as a Resize semantics that is kept for backward compatibility reasons.
|
protectedvirtual |
|
virtual |
These methods allow to define whether upon destruction of this class the memory buffer should be released or not. Setting it to true (or ON) makes that this class will take care of memory release. Setting it to false (or OFF) will prevent the destructor from deleting the memory buffer. This is desirable only when the data is intended to be used by external applications. Note that the normal logic of this class set the value of the boolean flag. This may override your setting if you call this methods prematurely.
void itk::ImportImageContainer< TElementIdentifier, TElement >::SetImportPointer | ( | TElement * | ptr, |
TElementIdentifier | num, | ||
bool | LetContainerManageMemory = false |
||
) |
Set the pointer from which the image data is imported. "num" is the number of pixels in the block of memory. If "LetContainerManageMemory" is false, then the application retains the responsibility of freeing the memory for this image data. If "LetContainerManageMemory" is true, then this class will free the memory when this object is destroyed.
|
inlineprotected |
Definition at line 169 of file itkImportImageContainer.h.
References itk::ImportImageContainer< TElementIdentifier, TElement >::m_ImportPointer.
|
protectedvirtual |
|
inline |
Get the number of elements currently stored in the container.
Definition at line 94 of file itkImportImageContainer.h.
References itk::ImportImageContainer< TElementIdentifier, TElement >::m_Size.
void itk::ImportImageContainer< TElementIdentifier, TElement >::Squeeze | ( | void | ) |
Tell the container to try to minimize its memory usage for storage of the current number of elements. If new memory is allocated, the contents of old buffer are copied to the new area. The previous buffer is deleted if the original pointer was in using "LetContainerManageMemory"=true. The new buffer's memory management will be handled by the container from that point on.
|
private |
Definition at line 177 of file itkImportImageContainer.h.
Referenced by itk::ImportImageContainer< TElementIdentifier, TElement >::Capacity().
|
private |
Definition at line 178 of file itkImportImageContainer.h.
|
private |
Definition at line 175 of file itkImportImageContainer.h.
Referenced by itk::ImportImageContainer< TElementIdentifier, TElement >::GetBufferPointer(), itk::ImportImageContainer< TElementIdentifier, TElement >::GetImportPointer(), itk::ImportImageContainer< TElementIdentifier, TElement >::operator[](), and itk::ImportImageContainer< TElementIdentifier, TElement >::SetImportPointer().
|
private |
Definition at line 176 of file itkImportImageContainer.h.
Referenced by itk::ImportImageContainer< TElementIdentifier, TElement >::Size().