/usr/include/IGSTK/igstkPivotCalibration.h is in libigstk4-dev 4.4.0-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 | /*=========================================================================
Program: Image Guided Surgery Software Toolkit
Module: $RCSfile: igstkPivotCalibration.h,v $
Language: C++
Date: $Date: 2011-01-18 21:40:17 $
Version: $Revision: 1.14 $
Copyright (c) ISC Insight Software Consortium. All rights reserved.
See IGSTKCopyright.txt or http://www.igstk.org/copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef __igstkPivotCalibration_h
#define __igstkPivotCalibration_h
#include "igstkStateMachine.h"
#include "igstkMacros.h"
#include "igstkEvents.h"
#include "igstkObject.h"
#include "igstkTracker.h"
#include "igstkTrackerTool.h"
#include "igstkPivotCalibrationAlgorithm.h"
#include "igstkTransformObserver.h"
namespace igstk
{
/** \class PivotCalibration
*
* \brief This class encapsulates the pivot calibration algorithm and tracking
* data acquistion for performing tool tip calibration.
*
* This class enables you to perform pivot calibration (tool tip calibration).
* The class is responsible for acquisition of tracking data and computation of
* the pivot calibration. You set the specific tool and number
* of required transformations using the RequestInitialize() method. The class
* expects the tracker to be in tracking state. Once initialized the
* RequestComputeCalibration() method will start data acquistion and perform
* calibration.
*/
class PivotCalibration : public Object
{
public:
/** Macro with standard traits declarations (Self, SuperClass, State
* Machine etc.). */
igstkStandardClassTraitsMacro( PivotCalibration, Object )
/** This method sets the number of transformations required for performing
* the pivot calibration and the tool we want to calibrate.
* It is assumed that the tracker is already in tracking mode.
* The method generates two events: InitializationSuccessEvent and
* InitializationFailureEvent (if the trackerTool pointer is null). */
void RequestInitialize( unsigned int n,
igstk::TrackerTool::Pointer trackerTool );
/** This method performs the data acquisition and calibration. It generates
* several events: CalibrationSuccessEvent, CalibrationFailureEvent,
* DataAcquistionStartEvent, DataAcquisitionEvent, and
* DataAcquisitionEndEvent.
* They denote success or failure of the acquisition and computation, the
* fact that acquisition of tracking data has started, data was acquired
* (contains the percentage out of the required tracking data), and that the
* acquisition is done. */
void RequestComputeCalibration();
/** This method is used to request the calibration transformation.
* The method should only be invoked after a successful calibration.
* It generates two events: CoordinateSystemTransformToEvent, and
* TransformNotAvailableEvent, respectively denoting that a calibration
* transform is and isn't available. */
void RequestCalibrationTransform();
/** This method is used to request the pivot point, given in the coordinate
* system in which the user supplied transforms were given. It generates two
* events: PointEvent, and InvalidRequestErrorEvent, respectively denoting
* that the pivot point is and isn't available. */
void RequestPivotPoint();
/** This method is used to request the Root Mean Square Error (RMSE) of the
* overdetermined equation system used to perform pivot calibration. It
* generates two events: DoubleTypeEvent, and InvalidRequestErrorEvent,
* respectively denoting that the RMSE is and isn't available.
* \sa PivotCalibrationAlgorithm */
void RequestCalibrationRMSE();
/** This event is generated if the initialization succeeds. */
igstkEventMacro( InitializationSuccessEvent, IGSTKEvent );
/** This event is generated if the initialization fails (e.g. given tool
* is null). */
igstkEventMacro( InitializationFailureEvent, IGSTKEvent );
/** This event is generated if the pivot calibration computation succeeds. */
igstkEventMacro( CalibrationSuccessEvent, IGSTKEvent );
/** This event is generated if the pivot calibration fails, either due to data
* acquisition problems or computation failure. The event object contains a
* message (std::string) describing the exact reason for failure.*/
igstkLoadedEventMacro( CalibrationFailureEvent,
IGSTKEvent,
EventHelperType::StringType );
/** This event is generated when data acquisition starts. */
igstkEventMacro( DataAcquisitionStartEvent, IGSTKEvent );
/** This event is generated when a transformation is acquired from the
* tracker. It contains the percentage of acquired data. */
igstkEventMacro( DataAcquisitionEvent, DoubleTypeEvent );
/** This event is generated when data acquisition ends. */
igstkEventMacro( DataAcquisitionEndEvent, IGSTKEvent );
protected:
PivotCalibration( void );
~PivotCalibration( void );
/** Print the object information in a stream. */
void PrintSelf( std::ostream& os, itk::Indent indent ) const;
private:
/** List of state machine states */
igstkDeclareStateMacro( Idle );
igstkDeclareStateMacro( AttemptingToInitialize );
igstkDeclareStateMacro( Initialized );
igstkDeclareStateMacro( AttemptingToComputeCalibration );
igstkDeclareStateMacro( CalibrationComputed );
/** List of state machine inputs */
igstkDeclareInputMacro( Initialize );
igstkDeclareInputMacro( Failed );
igstkDeclareInputMacro( Succeeded );
igstkDeclareInputMacro( ComputeCalibration );
igstkDeclareInputMacro( GetTransform );
igstkDeclareInputMacro( GetPivotPoint );
igstkDeclareInputMacro( GetRMSE );
/**List of state machine actions*/
void ReportInvalidRequestProcessing();
void InitializeProcessing();
void ReportInitializationFailureProcessing();
void ReportInitializationSuccessProcessing();
void ComputeCalibrationProcessing();
void ReportCalibrationComputationSuccessProcessing();
void ReportCalibrationComputationFailureProcessing();
void GetTransformProcessing();
void GetPivotPointProcessing();
void GetRMSEProcessing();
void EmptyCallBack( itk::Object * itkNotUsed(caller),
const itk::EventObject & itkNotUsed(event)){};
/**settings for using member function as callback**/
typedef itk::MemberCommand<PivotCalibration> TransformAcquiredCommand;
TransformAcquiredCommand::Pointer m_TransformAcquiredObserver;
igstkObserverMacro( TransformToTracker,
igstk::CoordinateSystemTransformToEvent,
CoordinateSystemTransformToResult )
TransformToTrackerObserver::Pointer m_TransformObserver;
unsigned long m_TransformToTrackerObserverID;
void AcquireTransformsAndCalibrate(itk::Object *caller,
const itk::EventObject & event);
class ErrorObserver : public itk::Command
{
public:
typedef ErrorObserver Self;
typedef ::itk::Command Superclass;
typedef ::itk::SmartPointer<Self> Pointer;
typedef ::itk::SmartPointer<const Self> ConstPointer;
igstkNewMacro(Self)
igstkTypeMacro(ErrorObserver, itk::Command)
/** When an error occurs in an IGSTK component it will invoke this method
* with the appropriate error event object as a parameter.*/
virtual void Execute(itk::Object *caller,
const itk::EventObject & event) throw (std::exception);
/** When an error occurs in an IGSTK component it will invoke this method
* with the appropriate error event object as a parameter.*/
virtual void Execute(const itk::Object *caller,
const itk::EventObject & event) throw (std::exception);
/**Clear the current error.*/
void ClearError() {this->m_ErrorOccured = false;
this->m_ErrorMessage.clear();}
/**If an error occurs in one of the observed IGSTK components this method
* will return true.*/
bool ErrorOccured() {return this->m_ErrorOccured;}
/**Get the error message associated with the last IGSTK error.*/
void GetErrorMessage(std::string &errorMessage)
{
errorMessage = this->m_ErrorMessage;
}
protected:
/**Construct an error observer for all the possible errors that occur in
* IGSTK components.*/
ErrorObserver();
virtual ~ErrorObserver(){}
private:
bool m_ErrorOccured;
std::string m_ErrorMessage;
std::map<std::string,std::string> m_ErrorEvent2ErrorMessage;
//purposely not implemented
ErrorObserver(const Self&);
void operator=(const Self&);
};
//definitions of the observer classes of events generated by the
//PivotCalibrationAlgorithm
igstkObserverMacro( CalibrationTransform,
CoordinateSystemTransformToEvent,
CoordinateSystemTransformToResult )
igstkObserverMacro( PivotPoint, PointEvent, EventHelperType::PointType )
igstkObserverMacro( CalibrationRMSE,
DoubleTypeEvent,
EventHelperType::DoubleType )
CalibrationTransformObserver::Pointer m_GetCalibrationTransformObserver;
PivotPointObserver::Pointer m_GetPivotPointObserver;
CalibrationRMSEObserver::Pointer m_GetCalibrationRMSEObserver;
ErrorObserver::Pointer m_ErrorObserver;
std::string m_ReasonForCalibrationFailure;
//transformations used for pivot calibration
std::vector< PivotCalibrationAlgorithm::TransformType > m_Transforms;
//tool we want to calibrate
TrackerTool::Pointer m_TmpTrackerTool;
TrackerTool::Pointer m_TrackerTool;
//number of transformation we want to acquire
unsigned int m_TmpRequiredNumberOfTransformations;
unsigned int m_RequiredNumberOfTransformations;
//the object that actually does all the work
PivotCalibrationAlgorithm::Pointer m_PivotCalibrationAlgorithm;
};
} // end namespace igstk
#endif //__igstkPivotCalibration_h
|