fixed gps fields missing in non-android build

This commit is contained in:
matlabbe
2017-09-21 21:28:39 -04:00
parent bfc393a090
commit ef4aff7d34
6 changed files with 185 additions and 128 deletions

View File

@@ -2089,7 +2089,8 @@ bool ExportCloudsDialog::getExportedClouds(
int m,w;
std::string l;
double s;
_dbDriver->getNodeInfo(jter->first, p, m, w, l, s, gt, velocity);
std::vector<double> gps;
_dbDriver->getNodeInfo(jter->first, p, m, w, l, s, gt, velocity, gps);
}
}
cv::Size imageSize = img.size();
@@ -2121,7 +2122,8 @@ bool ExportCloudsDialog::getExportedClouds(
int m,w;
std::string l;
double s;
_dbDriver->getNodeInfo(jter->first, p, m, w, l, s, gt, velocity);
std::vector<double> gps;
_dbDriver->getNodeInfo(jter->first, p, m, w, l, s, gt, velocity, gps);
}
}
}