Merge pull request #215 from OpenDroneMap/fix2gcpOrder

Fix to gcp reading order
pull/219/head
Dakota Benjamin 2015-12-07 09:33:32 -05:00
commit a12d674942
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -28,7 +28,7 @@ GeorefGCP::~GeorefGCP()
void GeorefGCP::extractGCP(std::istringstream &gcpStream)
{
gcpStream >> x_ >> y_ >> z_ >> pixelY_ >> pixelX_ >> image_;
gcpStream >> x_ >> y_ >> z_ >> pixelX_ >> pixelY_ >> image_;
}
Vec3 GeorefGCP::getPos()