Skip to content
Snippets Groups Projects
extrCalibration.cpp 34.3 KiB
Newer Older
  • Learn to ignore specific revisions
  • {
        QDomElement subElem = elem.ownerDocument().createElement("REPROJECTION_ERROR");
    
        subElem.setAttribute("AVG_PH", mPointHeightAvg);
        subElem.setAttribute("SD_PH", mPointHeightStdDev);
        subElem.setAttribute("MAX_PH", mPointHeightMax);
        subElem.setAttribute("AVG_DH", mDefaultHeightAvg);
        subElem.setAttribute("SD_DH", mDefaultHeightStdDev);
        subElem.setAttribute("MAX_DH", mDefaultHeightMax);
        subElem.setAttribute("AVG_PX", mPixelAvg);
        subElem.setAttribute("SD_PX", mPixelStdDev);
        subElem.setAttribute("MAX_PX", mPixelMax);
        subElem.setAttribute("USED_HEIGHT", mUsedDefaultHeight);
    
        elem.appendChild(subElem);
    }
    
    
    double ReprojectionError::pointHeightAvg() const
    {
    
    double ReprojectionError::pointHeightStdDev() const
    {
    
    double ReprojectionError::pointHeightVariance() const
    {
    
    double ReprojectionError::pointHeightMax() const
    {
    
    double ReprojectionError::defaultHeightAvg() const
    {
    
    double ReprojectionError::defaultHeightStdDev() const
    {
    
    double ReprojectionError::defaultHeightVariance() const
    {
    
    double ReprojectionError::defaultHeightMax() const
    {
    
    double ReprojectionError::pixelAvg() const
    {
    
    double ReprojectionError::pixelStdDev() const
    {
    
    double ReprojectionError::pixelVariance() const
    {
    
    double ReprojectionError::pixelMax() const
    {
    
    double ReprojectionError::usedDefaultHeight() const
    {