#include <itkImportImageContainer.h>
Inheritance diagram for itk::ImportImageContainer:
Public Types | |
typedef ImportImageContainer | Self |
typedef Object | Superclass |
typedef SmartPointer< Self > | Pointer |
typedef SmartPointer< const Self > | ConstPointer |
typedef TElementIdentifier | ElementIdentifier |
typedef TElement | Element |
Public Methods | |
virtual const char * | GetClassName () const |
TElement * | GetImportPointer () |
void | SetImportPointer (TElement *ptr, TElementIdentifier num, bool LetContainerManageMemory=false) |
TElement & | operator[] (const ElementIdentifier id) |
const TElement & | operator[] (const ElementIdentifier id) const |
TElement * | GetBufferPointer () |
unsigned long | Size (void) const |
void | Reserve (ElementIdentifier num) |
void | Squeeze (void) |
void | Initialize (void) |
Static Public Methods | |
Pointer | New () |
Protected Methods | |
ImportImageContainer () | |
virtual | ~ImportImageContainer () |
void | PrintSelf (std::ostream &os, Indent indent) const |
Template parameters for ImportImageContainer:
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.
|
Reimplemented from itk::Object. Definition at line 52 of file itkImportImageContainer.h. |
|
Definition at line 56 of file itkImportImageContainer.h. |
|
Save the template parameters. Definition at line 55 of file itkImportImageContainer.h. Referenced by itk::ImportImageContainer< TElementIdentifier, TElement >::operator[](). |
|
Reimplemented from itk::Object. Definition at line 51 of file itkImportImageContainer.h. |
|
Standard class typedefs. Reimplemented from itk::Object. Definition at line 49 of file itkImportImageContainer.h. |
|
Reimplemented from itk::Object. Definition at line 50 of file itkImportImageContainer.h. |
|
|
|
|
|
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. |
|
Standard part of every itk Object. Reimplemented from itk::Object. |
|
Get the pointer from which the image data is imported. Definition at line 65 of file itkImportImageContainer.h. |
|
Tell the container to release any of its allocated memory. |
|
Method for creation through the object factory. Reimplemented from itk::Object. |
|
Index operator. This version can only be an rvalue Definition at line 81 of file itkImportImageContainer.h. References itk::ImportImageContainer< TElementIdentifier, TElement >::ElementIdentifier. |
|
Index operator. This version can be an lvalue. Definition at line 77 of file itkImportImageContainer.h. References itk::ImportImageContainer< TElementIdentifier, TElement >::ElementIdentifier. |
|
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. |
|
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.
|
|
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. |
|
Get the number of elements currently stored in the container. Definition at line 90 of file itkImportImageContainer.h. |
|
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. |