![]() |
ICF 3.1.1.10
Technical documentation of ICF Libraries
|
Attributable component for perspective 2D calibration. More...
#include <CPerspectiveCalibration2dComp.h>
Protected Member Functions | |
| void | OnComponentCreated () override |
| void | OnComponentDestroyed () override |
Protected Member Functions inherited from icomp::CComponentBase | |
| bool | IsComponentActive () const |
| Check if component is active. | |
| virtual const IRealComponentStaticInfo & | GetComponentStaticInfo () const =0 |
| Get access to static info of this component. | |
Protected Member Functions inherited from icalib::CPerspectiveCalibration2d | |
| void | CalcTransformationFlags () |
| void | OnEndChanges (const ChangeSet &changeSet) override |
| Callback function for end change event. | |
Protected Member Functions inherited from istd::IChangeable | |
| virtual void | OnBeginChanges () |
| Callback function for begin change event. | |
Additional Inherited Members | |
Public Member Functions inherited from icomp::CComponentBase | |
| CComponentBase () | |
| Create component and assign it to specific context. | |
| CComponentBase (const CComponentBase &)=delete | |
| CComponentBase & | operator= (const CComponentBase &)=delete |
| virtual const ICompositeComponent * | GetParentComponent (bool ownerOnly=false) const |
| Get parent of this component. | |
| virtual void * | GetInterface (const istd::CClassInfo &interfaceType, const QByteArray &subId="") |
| Get access to specified component interface. | |
| virtual const IComponentContext * | GetComponentContext () const |
| Get access to component context describing all application-specified component information loaded from components registry. | |
| virtual void | SetComponentContext (const IComponentContext *contextPtr, const ICompositeComponent *parentPtr, bool isParentOwner) |
| Set component context of this component. | |
Public Member Functions inherited from icomp::IComponent | |
Public Member Functions inherited from icalib::CPerspectiveCalibration2d | |
| CPerspectiveCalibration2d () | |
| CPerspectiveCalibration2d (const i2d::CAffine2d &affinePart, const i2d::CVector2d &perspectiveAxis) | |
| void | Reset () |
| Reset this calibration, set to be identity transform. | |
| const i2d::CAffine2d & | GetAffinePart () const |
| i2d::CAffine2d & | GetAffinePartRef () |
| virtual void | SetAffinePart (const i2d::CAffine2d &value) |
| const i2d::CVector2d & | GetPerspAxis () const |
| virtual void | SetPerspAxis (const i2d::CVector2d &value) |
| void | SetArgumentArea (const i2d::CRectangle *areaPtr) |
| void | SetResultArea (const i2d::CRectangle *areaPtr) |
| void | SetArgumentUnitInfo (const imath::IUnitInfo *unitInfoPtr) |
| void | SetResultUnitInfo (const imath::IUnitInfo *unitInfoPtr) |
| bool | operator== (const CPerspectiveCalibration2d &calib) const |
| bool | operator!= (const CPerspectiveCalibration2d &calib) const |
| const i2d::CRectangle * | GetArgumentArea () const override |
| Get optional area where arguments are defined properly. | |
| const i2d::CRectangle * | GetResultArea () const override |
| Get optional area where results are defined properly. | |
| const imath::IUnitInfo * | GetArgumentUnitInfo () const override |
| Get unit description of calibration input (transformation function argument). | |
| const imath::IUnitInfo * | GetResultUnitInfo () const override |
| Get unit description of calibration output (transformation function result). | |
| std::unique_ptr< i2d::ICalibration2d > | CreateCombinedCalibration (const ITransformation2d &transformation) const override |
| int | GetTransformationFlags () const override |
| Get flags of describing type of this transformation. | |
| bool | GetDistance (const i2d::CVector2d &origPos1, const i2d::CVector2d &origPos2, double &result, ExactnessMode mode=EM_NONE) const override |
| Compute a shortness distance in transformed coordinations. | |
| bool | GetPositionAt (const i2d::CVector2d &origPosition, i2d::CVector2d &result, ExactnessMode mode=EM_NONE) const override |
| Get position after transformation. | |
| bool | GetInvPositionAt (const i2d::CVector2d &transfPosition, i2d::CVector2d &result, ExactnessMode mode=EM_NONE) const override |
| Get position after transformation. | |
| bool | GetLocalTransform (const i2d::CVector2d &origPosition, i2d::CAffine2d &result, ExactnessMode mode=EM_NONE) const override |
| Get local transformation (from original to transformed coordinate system) at some original position. | |
| bool | GetLocalInvTransform (const i2d::CVector2d &transfPosition, i2d::CAffine2d &result, ExactnessMode mode=EM_NONE) const override |
| Get local transformation (from transformed to original coordinate system) at some transformed position. | |
| bool | GetInvValueAt (const i2d::CVector2d &argument, i2d::CVector2d &result) const override |
| i2d::CVector2d | GetInvValueAt (const i2d::CVector2d &argument) const override |
| bool | GetValueAt (const i2d::CVector2d &argument, i2d::CVector2d &result) const override |
| i2d::CVector2d | GetValueAt (const i2d::CVector2d &argument) const override |
| bool | Serialize (iser::IArchive &archive) override |
| Load or store state of this object as a archive stream. | |
| int | GetSupportedOperations () const override |
| Get set of flags for supported operations. | |
| bool | CopyFrom (const istd::IChangeable &object, CompatibilityMode mode=CM_WITHOUT_REFS) override |
| Copy this object from another one. | |
| bool | IsEqual (const istd::IChangeable &object) const override |
| Compare this object with another object. | |
| std::unique_ptr< istd::IChangeable > | CloneMe (CompatibilityMode mode=CM_WITHOUT_REFS) const override |
| Make a copy of this object. | |
| bool | ResetData (CompatibilityMode mode=CM_WITHOUT_REFS) override |
| Reset data to its default state. | |
Public Member Functions inherited from i2d::ICalibration2d | |
| virtual std::unique_ptr< ICalibration2d > | CreateCombinedCalibration (const ITransformation2d &transformation) const =0 |
| Create new calibration being combination of this calibration and the second one. | |
Public Member Functions inherited from i2d::ITransformation2d | |
Public Member Functions inherited from imath::TISurjectFunction< CVector2d, CVector2d > | |
| virtual bool | GetInvValueAt (const CVector2d &argument, CVector2d &result) const=0 |
| Get inverted function value. | |
| virtual CVector2d | GetInvValueAt (const CVector2d &argument) const=0 |
| Get inverted function value. | |
Public Member Functions inherited from imath::TIMathFunction< CVector2d, CVector2d > | |
| virtual bool | GetValueAt (const CVector2d &argument, CVector2d &result) const=0 |
| Get function value for specified argument value. | |
| virtual CVector2d | GetValueAt (const CVector2d &argument) const=0 |
| Get function value for specified argument value. | |
Public Member Functions inherited from iser::ISerializable | |
| virtual quint32 | GetMinimalVersion (int versionId) const |
| Get minimal needed version to correct storing of this data. | |
Public Member Functions inherited from istd::IChangeable | |
| virtual QMutex * | GetChangesLock () const |
| Get mutex beeing locked during changes, if available. | |
| virtual void | BeginChanges (const ChangeSet &changeSet) |
| Starts the change transaction. | |
| virtual void | EndChanges (const ChangeSet &changeSet) |
| Ends the change transaction. | |
| virtual void | BeginChangeGroup (const ChangeSet &changeSet) |
| Starts group of changes. | |
| virtual void | EndChangeGroup (const ChangeSet &changeSet) |
| Ends group of changes. | |
Static Public Member Functions inherited from istd::IChangeable | |
| static const ChangeSet & | GetNoChanges () |
| Get empty set of changes. | |
| static const ChangeSet & | GetAnyChange () |
| Get anonymous change set. | |
| static const ChangeSet & | GetAllChanges () |
| Get anonymous change set. | |
| static const ChangeSet & | GetDelegatedChanges () |
| Get delegated change set. | |
Static Protected Member Functions inherited from icomp::CComponentBase | |
| static const IRealComponentStaticInfo & | InitStaticInfo (IComponent *componentPtr) |
| static QByteArray | GetComponentId (const IComponentContext *componentContextPtr, const QByteArray &contextId=QByteArray()) |
Attributable component for perspective 2D calibration.
Definition at line 21 of file CPerspectiveCalibration2dComp.h.
Definition at line 24 of file CPerspectiveCalibration2dComp.h.
Definition at line 25 of file CPerspectiveCalibration2dComp.h.
|
overrideprotectedvirtual |
Reimplemented from icomp::CComponentBase.
|
overrideprotectedvirtual |
Reimplemented from icomp::CComponentBase.
© Witold Gantzke and Kirill Lepskiy