Camera orientation handling is added for jpeg files

This commit is contained in:
micalan
2015-10-11 10:08:32 +03:00
parent d430e802f2
commit 0a306f8804
6 changed files with 1042 additions and 0 deletions

View File

@@ -70,6 +70,12 @@ protected:
FILE* m_f;
void* m_state;
private:
//Support for handling exif orientation tag in Jpeg file
int m_orientation;
int getOrientation();
void setOrientation(Mat& img);
};