parse GPano:PosePitchDegrees and GPano:PoseRollDegrees (#8)

This commit is contained in:
shinji-yoshida
2021-02-05 01:46:22 +09:00
committed by GitHub
parent c57a5fec1a
commit 0574cbf4f2
3 changed files with 23 additions and 0 deletions

View File

@@ -147,5 +147,9 @@ int main(int argc, const char** argv)
std::cout << "GeoLocation.GPSTimeStamp " << imageEXIF.GeoLocation.GPSTimeStamp << "\n";
if (!imageEXIF.GeoLocation.GPSDateStamp.empty())
std::cout << "GeoLocation.GPSDateStamp " << imageEXIF.GeoLocation.GPSDateStamp << "\n";
if (imageEXIF.GPano.hasPosePitchDegrees())
std::cout << "GPano.PosePitchDegrees " << imageEXIF.GPano.PosePitchDegrees << "\n";
if (imageEXIF.GPano.hasPoseRollDegrees())
std::cout << "GPano.PoseRollDegrees " << imageEXIF.GPano.PoseRollDegrees << "\n";
return EXIT_SUCCESS;
}