1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 15:53:03 +04:00
Files
zhijackchen 6df8ac0342 Merge pull request #10283 from zhijackchen:exr_export
* Fix issue #10114
Convert table change
From:
CV_8U -> HALF
CV_8S -> HALF
CV_16U -> UINT
CV_16S -> UINT
CV_32S -> UINT
CV_32F -> FLOAT
To:
CV_8U -> HALF
CV_8S -> HALF
CV_16U -> UINT
CV_16S -> FLOAT
CV_32S -> FLOAT loss precision
CV_32F -> FLOAT
Signed integer can't be presented well with UINT. Even adjust bias, CV16S and CV32S will be confused when load from exr file.
Also fix CV_8S negative value incorrect bug

* EXR import and export
imread() from EXR returns CV_32F only
imwrite() accepts CV_32 cv::Mat only and stores FLOAT images by default. Add imwrite() flag to store in HALF format.

* fix compiling error

* clean up

* fix EXR import issues
2017-12-15 12:23:44 +03:00
..
2017-12-11 13:27:37 +03:00
2017-12-11 13:27:37 +03:00
2015-07-19 03:53:43 +03:00
2017-12-11 13:27:37 +03:00
2016-07-08 16:08:55 +03:00
2016-07-08 16:08:55 +03:00
2017-12-11 13:27:37 +03:00
2017-12-11 13:27:37 +03:00
2017-12-11 13:27:37 +03:00
2017-07-25 13:30:48 +03:00
2016-03-16 11:37:27 +01:00
2014-07-07 16:28:08 +04:00