Does OpenCV support开发者_开发问答 getting Exif data of images? Is there a program in OpenCV that parses the Exif data and get appropriate fields?
As of 3.1 opencv imread
handles exif orientation perfectly. I know this is an old question, but I struggled to find an answer to this same question recently, so am posting here. Apparently cvLoadImage
does not handle exif orientation correctly at this time according to a bug report on github.
You can find a nice set of sample images with different exif rotations and a good explanation here
OpenCV has no Exif support. It's not the purpose of OpenCV.
精彩评论