1. 22 May, 2018 2 commits
  2. 24 Apr, 2018 2 commits
  3. 05 Apr, 2018 1 commit
  4. 29 Mar, 2018 1 commit
  5. 28 Mar, 2018 1 commit
  6. 26 Feb, 2018 1 commit
  7. 25 Feb, 2018 1 commit
  8. 22 Feb, 2018 1 commit
  9. 21 Feb, 2018 1 commit
  10. 20 Feb, 2018 1 commit
  11. 19 Feb, 2018 1 commit
  12. 15 Feb, 2018 1 commit
  13. 13 Feb, 2018 1 commit
  14. 16 Jan, 2018 1 commit
  15. 09 Jan, 2018 3 commits
  16. 05 Jan, 2018 1 commit
  17. 04 Jan, 2018 1 commit
  18. 01 Jan, 2018 1 commit
  19. 28 Dec, 2017 2 commits
  20. 21 Dec, 2017 2 commits
  21. 15 Dec, 2017 1 commit
    • zhijackchen's avatar
      Merge pull request #10283 from zhijackchen:exr_export · 6df8ac03
      zhijackchen authored
      * 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
      6df8ac03
  22. 13 Dec, 2017 1 commit
  23. 11 Dec, 2017 1 commit
  24. 29 Nov, 2017 1 commit
  25. 20 Nov, 2017 1 commit
    • gdkessler's avatar
      Merge pull request #10093 from gdkessler/gdal_image_read_fix_10089 · 2674c6b5
      gdkessler authored
      Fix GDAL image decoding color problems identified by issue #10089, by: (#10093)
      
      * Fix GDAL image decoding color problems identified by issue #10089, by:
      
      Fixing CV_8UC1 symbol, which should be CV_8UC3 for RGB GDAL color table images.
      
      Fixing image.ptr<VecX>(row,col)[] to be (*image.ptr<VecX>(row,col))[] to correctly access VecX array elements, as ptr<VecX>() returns a pointer to the VecX, not the first element of VecX. This fixes the color problem with color table gif images, and avoids out-of-bounds memory access.
      
      Respecting the color identification of raster bands provided by the GDAL image driver, and produce BGR or BGRA images. Note that color bands of images using the HSL, CMY, CMYK, or YCbCr color space are ignored, rather than converting them to BGR.
      
      * When reading image files using the GDAL decoder, exit with an error if a color band is encountered that isn't used (eg. from CMYK or YCbCbr), rather than silently ignoring the band's data.
      2674c6b5
  26. 08 Nov, 2017 1 commit
  27. 22 Oct, 2017 1 commit
  28. 21 Oct, 2017 1 commit
  29. 01 Oct, 2017 1 commit
  30. 27 Sep, 2017 1 commit
  31. 24 Sep, 2017 1 commit
  32. 08 Sep, 2017 1 commit
  33. 06 Sep, 2017 1 commit
  34. 29 Aug, 2017 1 commit