ITK
6.0.0
Insight Toolkit
|
#include <itkNeighborhoodAllocator.h>
A memory allocator for use as the default allocator type in Neighborhood.
This is a memory allocator for use as the default allocator type in Neighborhood. The API is designed to mimic that of vnl_vector so that vnl_vector can also be used as an allocator for Neighborhood.
The decision to create this allocator with the vnl_vector api (versus using an STL allocator and wrapping the vnl_vector API) was made because the STL allocator API is not guaranteed stable at this time.
Definition at line 44 of file itkNeighborhoodAllocator.h.
Public Types | |
using | const_iterator = const TPixel * |
using | iterator = TPixel * |
using | Self = NeighborhoodAllocator |
Public Member Functions | |
const TPixel * | data () const noexcept |
TPixel * | data () noexcept |
NeighborhoodAllocator ()=default | |
NeighborhoodAllocator (const Self &other) | |
~NeighborhoodAllocator ()=default | |
void | Allocate (unsigned int n) |
void | Deallocate () |
NeighborhoodAllocator (Self &&other) noexcept | |
Self & | operator= (const Self &other) |
Self & | operator= (Self &&other) noexcept |
iterator | begin () |
const_iterator | begin () const |
iterator | end () |
const_iterator | end () const |
unsigned int | size () const |
const TPixel & | operator[] (unsigned int i) const |
TPixel & | operator[] (unsigned int i) |
void | set_size (unsigned int n) |
Private Attributes | |
std::unique_ptr< TPixel[]> | m_Data |
unsigned int | m_ElementCount { 0 } |
using itk::NeighborhoodAllocator< TPixel >::const_iterator = const TPixel * |
Definition at line 55 of file itkNeighborhoodAllocator.h.
using itk::NeighborhoodAllocator< TPixel >::iterator = TPixel * |
Iterator support. Note that the naming of the type alias is on purpose. itk::Neighborhood makes reference to the allocator, which because it may be vnl or other type, uses the lower case/underscore forms iterator and const_iterator.
Definition at line 54 of file itkNeighborhoodAllocator.h.
using itk::NeighborhoodAllocator< TPixel >::Self = NeighborhoodAllocator |
Standard class type aliases.
Definition at line 48 of file itkNeighborhoodAllocator.h.
|
default |
Default constructor
Referenced by itk::NeighborhoodAllocator< TPixel >::set_size().
|
default |
Defaulted destructor
|
inline |
Copy constructor.
Definition at line 82 of file itkNeighborhoodAllocator.h.
References itk::NeighborhoodAllocator< TPixel >::m_Data, and itk::NeighborhoodAllocator< TPixel >::m_ElementCount.
|
inlinenoexcept |
Move-constructor.
Definition at line 91 of file itkNeighborhoodAllocator.h.
|
inline |
Allocates memory.
Definition at line 65 of file itkNeighborhoodAllocator.h.
References itk::NeighborhoodAllocator< TPixel >::m_Data, and itk::NeighborhoodAllocator< TPixel >::m_ElementCount.
|
inline |
STL-style iterator support for the memory buffer.
Definition at line 131 of file itkNeighborhoodAllocator.h.
References itk::NeighborhoodAllocator< TPixel >::m_Data.
Referenced by itk::operator<<(), and itk::operator==().
|
inline |
STL-style iterator support for the memory buffer.
Definition at line 136 of file itkNeighborhoodAllocator.h.
References itk::NeighborhoodAllocator< TPixel >::m_Data.
|
inlinenoexcept |
Definition at line 182 of file itkNeighborhoodAllocator.h.
References itk::NeighborhoodAllocator< TPixel >::m_Data.
|
inlinenoexcept |
Definition at line 176 of file itkNeighborhoodAllocator.h.
References itk::NeighborhoodAllocator< TPixel >::m_Data.
|
inline |
Deallocates memory.
Definition at line 74 of file itkNeighborhoodAllocator.h.
References itk::NeighborhoodAllocator< TPixel >::m_Data, and itk::NeighborhoodAllocator< TPixel >::m_ElementCount.
|
inline |
STL-style iterator support for the memory buffer.
Definition at line 141 of file itkNeighborhoodAllocator.h.
References itk::NeighborhoodAllocator< TPixel >::m_Data, and itk::NeighborhoodAllocator< TPixel >::m_ElementCount.
Referenced by itk::operator==().
|
inline |
STL-style iterator support for the memory buffer.
Definition at line 146 of file itkNeighborhoodAllocator.h.
References itk::NeighborhoodAllocator< TPixel >::m_Data, and itk::NeighborhoodAllocator< TPixel >::m_ElementCount.
|
inline |
Assignment operator.
Definition at line 102 of file itkNeighborhoodAllocator.h.
References itk::NeighborhoodAllocator< TPixel >::m_Data, itk::NeighborhoodAllocator< TPixel >::m_ElementCount, and itk::NeighborhoodAllocator< TPixel >::set_size().
|
inlinenoexcept |
Move-assignment.
Definition at line 116 of file itkNeighborhoodAllocator.h.
References itk::NeighborhoodAllocator< TPixel >::m_Data, and itk::NeighborhoodAllocator< TPixel >::m_ElementCount.
|
inline |
Data access methods
Definition at line 159 of file itkNeighborhoodAllocator.h.
References itk::NeighborhoodAllocator< TPixel >::m_Data.
|
inline |
Data access methods
Definition at line 158 of file itkNeighborhoodAllocator.h.
References itk::NeighborhoodAllocator< TPixel >::m_Data.
|
inline |
Allocates a buffer of size n
Definition at line 164 of file itkNeighborhoodAllocator.h.
References itk::NeighborhoodAllocator< TPixel >::m_Data, itk::NeighborhoodAllocator< TPixel >::m_ElementCount, and itk::NeighborhoodAllocator< TPixel >::NeighborhoodAllocator().
Referenced by itk::NeighborhoodAllocator< TPixel >::operator=().
|
inline |
STL-style iterator support for the memory buffer.
Definition at line 151 of file itkNeighborhoodAllocator.h.
References itk::NeighborhoodAllocator< TPixel >::m_ElementCount.
Referenced by itk::operator<<(), and itk::operator==().
|
private |
Definition at line 189 of file itkNeighborhoodAllocator.h.
Referenced by itk::NeighborhoodAllocator< TPixel >::Allocate(), itk::NeighborhoodAllocator< TPixel >::begin(), itk::NeighborhoodAllocator< TPixel >::data(), itk::NeighborhoodAllocator< TPixel >::Deallocate(), itk::NeighborhoodAllocator< TPixel >::end(), itk::NeighborhoodAllocator< TPixel >::NeighborhoodAllocator(), itk::NeighborhoodAllocator< TPixel >::operator=(), itk::NeighborhoodAllocator< TPixel >::operator[](), and itk::NeighborhoodAllocator< TPixel >::set_size().
|
private |
Definition at line 188 of file itkNeighborhoodAllocator.h.
Referenced by itk::NeighborhoodAllocator< TPixel >::Allocate(), itk::NeighborhoodAllocator< TPixel >::Deallocate(), itk::NeighborhoodAllocator< TPixel >::end(), itk::NeighborhoodAllocator< TPixel >::NeighborhoodAllocator(), itk::NeighborhoodAllocator< TPixel >::operator=(), itk::NeighborhoodAllocator< TPixel >::set_size(), and itk::NeighborhoodAllocator< TPixel >::size().