示例#1
0
void SavePRC::_process()
{
  // for time measurement and mouse cursor setting.
  _startProcessing();

  WEMInspector::_process();

  // stop time measurement and mouse cursor resetting.
  _finishProcessing();

}
//----------------------------------------------------------------------------------
//! The process method is called by the parent class.
//----------------------------------------------------------------------------------
void WEMNodesToFile::_process()
{
    ML_TRACE_IN("WEMNodesToFile::process()")

    // for time measurement and mouse cursor setting.
    _startProcessing();

    WEMInspector::_process();

    // stop time measurement and mouse cursor resetting.
    _finishProcessing();
}
示例#3
0
//----------------------------------------------------------------------------------
//! The process method is called by the parent class.
//----------------------------------------------------------------------------------
void WEMVolume::_process()
{
    ML_TRACE_IN("WEMVolume::process()")

    // for time measurement and mouse cursor setting.
    _startProcessing();

    WEMInspector::_process();

    // Now call the own processing routine.
    ComputeVolumes();

    // stop time measurement and mouse cursor resetting.
    _finishProcessing();
}
//----------------------------------------------------------------------------------
//! The process method is called by the parent class.
//----------------------------------------------------------------------------------
void WEMCenterOfMass::_process()
{
    ML_TRACE_IN("WEMCenterOfMass::process()")

    // for time measurement and mouse cursor setting.
    _startProcessing();

    WEMInspector::_process();

    // Compute centroid of WEM
    ComputeCentroid();

    // stop time measurement and mouse cursor resetting.
    _finishProcessing();

    // notify registered observer modules.
    //_notifyObservers();
}
void DicomSurfaceSegmentationLoad::_process()
{
	_startProcessing(); 
	_loadFile();
	_finishProcessing(); 
}