How to get Exif image data using OpenCV?

Does OpenCV support receiving Exif image data? Is there a program in OpenCV that analyzes Exif data and gets the appropriate fields?

+4
source share
2 answers

OpenCV does not support Exif. This is not the goal of OpenCV.

+1
source

Starting with 3.1 opencv imread great job with exif orientation. I know this is an old question, but I have been struggling to find the answer to the same question recently, so I post it here. Apparently, cvLoadImage does not correctly handle exif orientation at this time according to an error report on github.

You can find a nice set of sample images with various exif rotations and a good explanation here

+1
source

All Articles