Field3D
|
#include <MIPField.h>
Public Member Functions | |
virtual FieldBase::Ptr | clone () const |
Returns a pointer to a copy of the field, pure virtual so ensure derived classes properly implement it. More... | |
![]() | |
void | clear () |
Clears all the levels of the MIP field. More... | |
Field_T::Ptr | concreteMipLevel (const size_t level) const |
Returns a concretely typed pointer to a MIP level. More... | |
Data_T | fastMipValue (size_t level, int i, int j, int k) const |
Read access to voxel at a given MIP level. More... | |
virtual void | getVsMIPCoord (const V3f &vsP, const size_t level, V3f &outVsP) const |
Given a voxel space coordinate in the 0-level field, computes the coordinate in another level. More... | |
virtual bool | levelLoaded (const size_t level) const |
Whether a given MIP level is loaded. More... | |
virtual Field< Data_T >::Ptr | mipLevel (const size_t level) const |
Returns a MIP level field. More... | |
virtual V3i | mipResolution (size_t level) const |
Returns the resolution of a given MIP level. More... | |
virtual Data_T | mipValue (size_t level, int i, int j, int k) const |
Read access to a voxel in a given MIP level. More... | |
const DenseField< Data_T > * | rawMipLevel (const size_t level) const |
Returns a raw pointer to a MIP level. More... | |
void | setup (const FieldVec &fields) |
Sets up the MIP field given a set of non-MIP fields This call performs sanity checking to ensure that MIP properties are satisfied for each level. In this case, all MIP levels are available in memory. More... | |
void | setupLazyLoad (const ProxyVec &proxies, const typename LazyLoadAction< DenseField< Data_T > >::Vec &actions) |
Sets up the MIP field in lazy-load mode. More... | |
MIPField () | |
Constructs an empty MIP field. More... | |
MIPField (const MIPField &other) | |
Copy constructor. We need this because a) we own a mutex and b) we own shared pointers and shallow copies are not good enough. More... | |
const MIPField & | operator= (const MIPField &rhs) |
Assignment operator. More... | |
virtual long long int | memSize () const |
Returns the memory usage (in bytes) More... | |
virtual void | mappingChanged () |
We need to know if the mapping changed so that we may update the MIP levels' mappings. More... | |
virtual Data_T | value (int i, int j, int k) const |
Read access to a voxel. The coordinates are in integer voxel space . More... | |
virtual size_t | voxelCount () const |
Counts the number of voxels. For most fields, this is just the volume of the data window, but sparse data structures can override this to return a better value. More... | |
virtual FieldBase::Ptr | clone () const |
Returns a pointer to a copy of the field, pure virtual so ensure derived classes properly implement it. More... | |
![]() | |
size_t | lowestLevel () const |
Lowest MIP level to use. More... | |
MIPBase () | |
const V3i & | mipOffset () const |
Returns the base MIP offset. More... | |
size_t | numLevels () const |
Number of MIP levels. More... | |
void | setLowestLevel (size_t level) |
Sets the lowest MIP level to use. Defaults to zero, but can be set higher to prevent high resolution levels from being accessed. More... | |
void | setMIPOffset (const V3i &offset) |
Sets the base MIP offset. This is used to indicate where voxel space coordinate (0, 0, 0) really maps to. More... | |
![]() | |
const_iterator | cbegin () const |
Const iterator to first element. "cbegin" matches the tr1 c++ standard. More... | |
const_iterator | cbegin (const Box3i &subset) const |
Const iterator to first element of specific subset. More... | |
const_iterator | cend () const |
Const iterator pointing one element past the last valid one. More... | |
const_iterator | cend (const Box3i &subset) const |
Const iterator pointing one element past the last valid one (for a subset) More... | |
virtual std::string | dataTypeString () const |
virtual | ~Field () |
Dtor. More... | |
![]() | |
V3i const | dataResolution () const |
virtual std::string | dataTypeString () const |
const Box3i & | dataWindow () const |
Returns the data window. Any coordinate inside this window is safe to pass to value() in the Field subclass. More... | |
const Box3i & | extents () const |
Returns the extents of the data. This signifies the relevant area that the data exists over. However, the data window (below) may be smaller than the extents, in which case it is only safe to call value() for those coordinate inside the data window. More... | |
FieldRes () | |
This constructor ensures that we have a valid mapping at all times. More... | |
FieldRes (const FieldRes &src) | |
Base class copy constructor. More... | |
bool | isInBounds (int i, int j, int k) const |
Returns true is the indicies are in bounds of the data window. More... | |
FieldMapping::Ptr | mapping () |
Returns a pointer to the mapping. More... | |
const FieldMapping::Ptr | mapping () const |
Returns a pointer to the mapping. More... | |
virtual long long int | memSize () const |
Returns the memory usage (in bytes) More... | |
void | setMapping (FieldMapping::Ptr mapping) |
Sets the field's mapping. More... | |
virtual size_t | voxelCount () const |
Counts the number of voxels. For most fields, this is just the volume of the data window, but sparse data structures can override this to return a better value. More... | |
![]() | |
FieldBase () | |
Constructor. More... | |
FieldBase (const FieldBase &) | |
Copy Constructor. More... | |
virtual | ~FieldBase () |
Destructor. More... | |
virtual std::string | className () const =0 |
Returns the class name of the object. Used by the class pool and when writing the data to disk. More... | |
virtual std::string | classType () const =0 |
Returns the full class type string. More... | |
FieldMetadata & | metadata () |
accessor to the m_metadata class More... | |
const FieldMetadata & | metadata () const |
Read only access to the m_metadata class. More... | |
void | copyMetadata (const FieldBase &field) |
Copies the metadata from a second field. More... | |
![]() | |
void | ref () const |
Used by boost::intrusive_pointer. More... | |
size_t | refcnt () |
Used by boost::intrusive_pointer. More... | |
void | unref () const |
Used by boost::intrusive_pointer. More... | |
WeakPtr | weakPtr () const |
RefBase () | |
RefBase (const RefBase &) | |
Copy constructor. More... | |
RefBase & | operator= (const RefBase &) |
Assignment operator. More... | |
virtual | ~RefBase () |
Destructor. More... | |
virtual bool | checkRTTI (const char *typenameStr)=0 |
This function is only implemented by concrete classes and triggers the actual RTTI check through matchRTTI();. More... | |
bool | matchRTTI (const char *typenameStr) |
Performs a check to see if the given typename string matches this class' This needs to be implemented in -all- subclasses, even abstract ones. More... | |
![]() | |
virtual void | metadataHasChanged (const std::string &) |
Alerts the callback holder that the metadata has changed. More... | |
Additional Inherited Members | |
![]() | |
typedef MIPField< DenseField< Data_T > > | class_type |
typedef CubicMIPFieldInterp< Data_T > | CubicInterp |
typedef Field_T::value_type | Data_T |
typedef Field_T::Ptr | FieldPtr |
typedef std::vector< FieldPtr > | FieldVec |
typedef MIPLinearInterp< MIPField< DenseField< Data_T > > > | LinearInterp |
typedef DenseField< Data_T > | NestedType |
typedef EmptyField< Data_T > | ProxyField |
typedef ProxyField::Ptr | ProxyPtr |
typedef std::vector< ProxyPtr > | ProxyVec |
typedef boost::intrusive_ptr< MIPField > | Ptr |
typedef Data_T | value_type |
typedef std::vector< Ptr > | Vec |
![]() | |
typedef MIPBase< Field_T::value_type > | class_type |
typedef boost::intrusive_ptr< MIPBase > | Ptr |
![]() | |
typedef Field< Field_T::value_type > | class_type |
typedef boost::intrusive_ptr< Field > | Ptr |
typedef Field_T::value_type | value_type |
Allows us to reference the template class. More... | |
typedef std::vector< Ptr > | Vec |
This is a convenience typedef for the list that Field3DInputFile::readScalarLayers() and Field3DInputFile::readVectorLayers() will return its data in. More... | |
![]() | |
typedef FieldRes | class_type |
typedef boost::intrusive_ptr< FieldRes > | Ptr |
typedef std::vector< Ptr > | Vec |
![]() | |
typedef FieldBase | class_type |
typedef boost::intrusive_ptr< FieldBase > | Ptr |
![]() | |
typedef boost::intrusive_ptr< RefBase > | Ptr |
typedef boost::weak_ptr< RefBase > | WeakPtr |
![]() | |
static DEFINE_FIELD_RTTI_CONCRETE_CLASS const char * | staticClassName () |
static const char * | staticClassType () |
![]() | |
static const char * | staticClassName () |
static const char * | staticClassType () |
![]() | |
static const char * | staticClassName () |
static const char * | staticClassType () |
![]() | |
static const char * | staticClassName () |
static const char * | staticClassType () |
![]() | |
static const char * | staticClassName () |
static const char * | staticClassType () |
![]() | |
static const char * | staticClassType () |
![]() | |
FIELD3D_CLASSNAME_CLASSTYPE_IMPLEMENTATION | |
![]() | |
DEFINE_FIELD_RTTI_ABSTRACT_CLASS | |
![]() | |
DEFINE_FIELD_RTTI_ABSTRACT_CLASS | |
![]() | |
DEFINE_FIELD_RTTI_ABSTRACT_CLASS | |
![]() | |
std::string | attribute |
Optional name of the attribute the field represents. More... | |
std::string | name |
Optional name of the field. More... | |
![]() | |
typedef MIPBase< Data_T > | base |
![]() | |
typedef Field< Field_T::value_type > | base |
![]() | |
typedef MatrixFieldMapping | default_mapping |
![]() | |
const MIPField & | init (const MIPField &rhs) |
Copies from a second MIPField. More... | |
void | loadLevelFromDisk (size_t level) const |
Loads the given level from disk. More... | |
void | sanityChecks (const T &fields) |
Sanity checks to ensure that the provided Fields are a MIP representation. More... | |
void | syncLevelInfo (const size_t level) const |
Updates the name, attribute and metadata for a given level. More... | |
void | updateAuxMembers () const |
Updates the dependent data members based on m_field. More... | |
void | updateMapping (FieldRes::Ptr field) |
Updates the mapping, extents and data window to match the given field. Used so that the MIPField will appear to have the same mapping in space as the level-0 field. More... | |
![]() | |
std::vector< FieldPtr > | m_fields |
Storage of all MIP levels. Some or all of the pointers may be NULL. This is mutable because it needs updating during lazy loading of data. More... | |
boost::shared_ptr< boost::mutex > | m_ioMutex |
Mutex lock around IO. Used to make sure only one thread reads MIP level data at a time. When a field is cloned, the two new fields will share the mutex, since they point to the same file. More... | |
LazyLoadAction< DenseField< Data_T > >::Vec | m_loadActions |
Lazy load actions. Only used if setupLazyLoad() has been called. More... | |
std::vector< V3i > | m_mipRes |
Resolution of each MIP level. More... | |
std::vector< DenseField< Data_T > * > | m_rawFields |
Raw pointers to MIP levels. More... | |
std::vector< V3f > | m_relativeResolution |
Relative resolution of each MIP level. Pre-computed to avoid int-to-float conversions. More... | |
![]() | |
size_t | m_lowestLevel |
The lowest MIP level to use. Defaults to 0, but can be set higher to prevent high resolution levels from being accessed. More... | |
V3i | m_mipOffset |
Base coordinate offset. This is used to indicate where voxel space coordinate (0, 0, 0) really maps to. More... | |
size_t | m_numLevels |
Number of MIP levels. The default is 1. More... | |
![]() | |
Box3i | m_dataWindow |
Defines the area where data is allocated. This should be treated as a closed (i.e. inclusive) interval. More... | |
Box3i | m_extents |
Defines the extents of the the storage. This may be larger or smaller than the data window, and in the case where it is larger, care must be taken not to access voxels outside the data window. This should be treated as a closed (i.e. inclusive) interval. More... | |
FieldMapping::Ptr | m_mapping |
Pointer to the field's mapping. More... | |
![]() | |
static NestedFieldType< MIPField< DenseField< Data_T > > > | ms_classType |
![]() | |
static TemplatedFieldType< MIPBase< Field_T::value_type > > | ms_classType |
Definition at line 310 of file MIPField.h.
|
inlinevirtual |
Returns a pointer to a copy of the field, pure virtual so ensure derived classes properly implement it.
Implements FieldBase.
Definition at line 313 of file MIPField.h.