![]() |
IPSDK
4_1_0_2
IPSDK : Image Processing Software Development Kit
|
Concrete class for objects encapsulating informations about 3d binary structuring element objects. More...
#include <StructuringElementXYZInfo.h>
Public Member Functions | |
| eStructuringElementType | getStructuringElementType () const |
| retrieve structuring element type associated to object | |
| void | init (const StructuringElementXYZ &seXYZ) |
| initialization of object with a generic structuring element | |
| void | initEmpty () |
| initialization of object with an empty generic structuring element | |
| void | initSpherical (const ipReal64 radius) |
| initialization of object has a filled spherical structuring element More... | |
| void | initCubic (const ipUInt32 halfSize) |
| initialization of object has a filled cubic structuring element | |
| void | initRectangular (const ipUInt32 halfSizeX, const ipUInt32 halfSizeY, const ipUInt32 halfSizeZ) |
| initialization of object has a filled rectangular structuring element | |
| void | initHalfLinear (const ipReal64 theta, const ipReal64 phi, const ipReal64 radius) |
| initialization of object has a half linear structuring element More... | |
| void | initLinear (const ipReal64 theta, const ipReal64 phi, const ipReal64 radius) |
| initialization of object has a symmetic linear structuring element More... | |
| const eSEXYZSubType & | getSEXYZSubType () const |
| retrieve binary structuring element 3d sub type More... | |
| StructuringElementXYZConstPtr | getStructuringElement () const |
| retrieve structuring element associated to object More... | |
| ipReal64 | getRadius () const |
| retrieve sphere radius associated to structuring element 3d More... | |
| ipUInt32 | getHalfSize () const |
| retrieve cubic half size of structuring element 3d More... | |
| const XYZOffsetColl & | getDataColl () const |
| retrieve data collection associated to object More... | |
Constructors and destructors | |
| StructuringElementXYZInfo () | |
| ~StructuringElementXYZInfo () | |
| ipUInt32 | getHalfSizeX () const |
| retrieve rectangular half size of structuring element 3d More... | |
| ipUInt32 | getHalfSizeY () const |
| retrieve rectangular half size of structuring element 3d More... | |
| ipUInt32 | getHalfSizeZ () const |
| retrieve rectangular half size of structuring element 3d More... | |
| ipReal64 | getTheta () const |
| retrieve orientation associated to structuring element 3d More... | |
| ipReal64 | getPhi () const |
| retrieve orientation associated to structuring element 3d More... | |
| bool | insert (const ipInt32 offsetX, const ipInt32 offsetY, const ipInt32 offsetZ) |
| insert an XYZOffset to the structuring element if it does not already belong to the structuring element More... | |
| bool | insert (const OffsetXYZ &offset) |
| insert an XYZOffset to the structuring element if it does not already belong to the structuring element More... | |
| bool | remove (const ipInt32 offsetX, const ipInt32 offsetY, const ipInt32 offsetZ) |
| remove an XYZOffset to the structuring element if the structuring element contains the offset More... | |
| bool | remove (const OffsetXYZ &offset) |
| remove an XYZOffset to the structuring element if the structuring element contains the offset More... | |
Public Member Functions inherited from ipsdk::BaseStructuringElementInfo | |
| bool | isInit () const |
| retrieve object initialization flag | |
| void | clear () |
| delete all object data | |
| BaseStructuringElementInfo () | |
| virtual | ~BaseStructuringElementInfo () |
Public Member Functions inherited from ipsdk::BaseSerializationObject | |
| BaseSerializationObject () | |
| Default constructor. | |
| virtual | ~BaseSerializationObject ()=0 |
| destructor | |
Public Member Functions inherited from ipsdk::BaseDynamicObject | |
| virtual const std::string & | getClassName () const |
| method allowing to retrieve object class name | |
| virtual BaseDynamicObject * | createNew () const =0 |
| method allowing to create new instance of current object type | |
| virtual DynamicObjectPtr | createShared () const =0 |
| method allowing to create new shared instance of current object type | |
| virtual bool | hasCopySupport () const =0 |
| check whether objet has copy support | |
| virtual BaseDynamicObject * | duplicate () const =0 |
| method allowing to duplicate current object More... | |
| virtual DynamicObjectPtr | duplicateShared () const =0 |
| method allowing shared duplication of current object More... | |
| BaseDynamicObject () | |
| virtual | ~BaseDynamicObject ()=0 |
Protected Member Functions | |
| void | clearDerived () |
| clear method overloaded by derived class | |
Protected Member Functions inherited from ipsdk::BaseStructuringElementInfo | |
| void | initBase () |
| base class initialization method | |
Protected Member Functions inherited from ipsdk::BaseSerializationObject | |
| virtual BoolResult | write (BaseOArchive &ar) const |
| method allowing to ensure serialization write part for object | |
| virtual BoolResult | read (BaseIArchive &ar) |
| method allowing to ensure serialization read part for object | |
Protected Member Functions inherited from ipsdk::BaseDynamicObject | |
| virtual void | initCtorCopy (const BaseDynamicObject &object) |
| virtual void | copy (const BaseDynamicObject &object) |
| method allowing to copy data from another object | |
Protected Attributes | |
| eSEXYZSubType | _seXYZSubType |
| binary structuring element 3d sub type associated to object | |
| ipReal64 | _radius |
| radius associated to structuring element 3d More... | |
| ipUInt32 | _halfSize |
| cubic size of structuring element 3d More... | |
| StructuringElementXYZPtr | _pSEXYZ |
| underlying structuring element associated to object | |
| ipUInt32 | _halfSizeX |
| rectangular size of structuring element 3d More... | |
| ipUInt32 | _halfSizeY |
| rectangular size of structuring element 3d More... | |
| ipUInt32 | _halfSizeZ |
| rectangular size of structuring element 3d More... | |
| ipReal64 | _theta |
| orientation associated to structuring element 3d More... | |
| ipReal64 | _phi |
| orientation associated to structuring element 3d More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from ipsdk::BaseSerializationObject | |
| static ipUInt32 | getVersion () |
| method allowing to retrieve class version information for serialization | |
Static Public Member Functions inherited from ipsdk::BaseDynamicObject | |
| static const std::string & | getTypeName () |
| method allowing to retrieve name associated to class | |
Concrete class for objects encapsulating informations about 3d binary structuring element objects.
| void ipsdk::StructuringElementXYZInfo::initSpherical | ( | const ipReal64 | radius | ) |
initialization of object has a filled spherical structuring element
| ipsdk::IPSDKBaseDataException | if radius < 0 |
| void ipsdk::StructuringElementXYZInfo::initHalfLinear | ( | const ipReal64 | theta, |
| const ipReal64 | phi, | ||
| const ipReal64 | radius | ||
| ) |
initialization of object has a half linear structuring element
| ipsdk::IPSDKBaseDataException | if radius < 0 |
| void ipsdk::StructuringElementXYZInfo::initLinear | ( | const ipReal64 | theta, |
| const ipReal64 | phi, | ||
| const ipReal64 | radius | ||
| ) |
initialization of object has a symmetic linear structuring element
| ipsdk::IPSDKBaseDataException | if radius < 0 |
| const eSEXYZSubType& ipsdk::StructuringElementXYZInfo::getSEXYZSubType | ( | ) | const |
retrieve binary structuring element 3d sub type
| ipsdk::IPSDKBaseDataException | if isInit() == false |
| StructuringElementXYZConstPtr ipsdk::StructuringElementXYZInfo::getStructuringElement | ( | ) | const |
retrieve structuring element associated to object
| ipsdk::IPSDKBaseDataException | if isInit() == false |
| ipReal64 ipsdk::StructuringElementXYZInfo::getRadius | ( | ) | const |
retrieve sphere radius associated to structuring element 3d
| ipsdk::IPSDKBaseDataException | if (getSEXYZSubType() != eSEXYZSubType::eSEXYZ_Spherical) && (getSEXYZSubType() != eSEXYZSubType::eSEXYZ_HalfLinear) && (getSEXYZSubType() != eSEXYZSubType::eSEXYZ_Linear) |
| ipUInt32 ipsdk::StructuringElementXYZInfo::getHalfSize | ( | ) | const |
retrieve cubic half size of structuring element 3d
| ipsdk::IPSDKBaseDataException | if (getSEXYZSubType() != eSEXYZSubType::eSEXYZ_Cubic) |
| ipUInt32 ipsdk::StructuringElementXYZInfo::getHalfSizeX | ( | ) | const |
retrieve rectangular half size of structuring element 3d
| ipsdk::IPSDKBaseDataException | if (getSEXYZSubType() != eSEXYZSubType::eSEXYZ_Rectangular) |
| ipUInt32 ipsdk::StructuringElementXYZInfo::getHalfSizeY | ( | ) | const |
retrieve rectangular half size of structuring element 3d
| ipsdk::IPSDKBaseDataException | if (getSEXYZSubType() != eSEXYZSubType::eSEXYZ_Rectangular) |
| ipUInt32 ipsdk::StructuringElementXYZInfo::getHalfSizeZ | ( | ) | const |
retrieve rectangular half size of structuring element 3d
| ipsdk::IPSDKBaseDataException | if (getSEXYZSubType() != eSEXYZSubType::eSEXYZ_Rectangular) |
| ipReal64 ipsdk::StructuringElementXYZInfo::getTheta | ( | ) | const |
retrieve orientation associated to structuring element 3d
| ipsdk::IPSDKBaseDataException | if (getSEXYZSubType() != eSEXYZSubType::eSEXYZ_HalfLinear) && (getSEXYZSubType() != eSEXYZSubType::eSEXYZ_Linear) |
| ipReal64 ipsdk::StructuringElementXYZInfo::getPhi | ( | ) | const |
retrieve orientation associated to structuring element 3d
| ipsdk::IPSDKBaseDataException | if (getSEXYZSubType() != eSEXYZSubType::eSEXYZ_HalfLinear) && (getSEXYZSubType() != eSEXYZSubType::eSEXYZ_Linear) |
| const XYZOffsetColl& ipsdk::StructuringElementXYZInfo::getDataColl | ( | ) | const |
retrieve data collection associated to object
| ipsdk::IPSDKBaseDataException | if isInit() == false |
| bool ipsdk::StructuringElementXYZInfo::insert | ( | const ipInt32 | offsetX, |
| const ipInt32 | offsetY, | ||
| const ipInt32 | offsetZ | ||
| ) |
insert an XYZOffset to the structuring element if it does not already belong to the structuring element
| ipsdk::IPSDKBaseDataException | if isInit() == false |
| bool ipsdk::StructuringElementXYZInfo::insert | ( | const OffsetXYZ & | offset | ) |
insert an XYZOffset to the structuring element if it does not already belong to the structuring element
| ipsdk::IPSDKBaseDataException | if isInit() == false |
| bool ipsdk::StructuringElementXYZInfo::remove | ( | const ipInt32 | offsetX, |
| const ipInt32 | offsetY, | ||
| const ipInt32 | offsetZ | ||
| ) |
remove an XYZOffset to the structuring element if the structuring element contains the offset
| ipsdk::IPSDKBaseDataException | if isInit() == false |
| bool ipsdk::StructuringElementXYZInfo::remove | ( | const OffsetXYZ & | offset | ) |
remove an XYZOffset to the structuring element if the structuring element contains the offset
| ipsdk::IPSDKBaseDataException | if isInit() == false |
|
protected |
radius associated to structuring element 3d
Used if _seXYZSubType equals :
|
protected |
cubic size of structuring element 3d
Used if _seXYZSubType equals :
|
protected |
rectangular size of structuring element 3d
Used if _seXYZSubType equals :
|
protected |
rectangular size of structuring element 3d
Used if _seXYZSubType equals :
|
protected |
rectangular size of structuring element 3d
Used if _seXYZSubType equals :
|
protected |
orientation associated to structuring element 3d
Used if _seXYZSubType equals :
|
protected |
orientation associated to structuring element 3d
Used if _seXYZSubType equals :
1.8.14