1. 24 7月, 2018 1 次提交
  2. 05 7月, 2018 1 次提交
  3. 02 7月, 2018 1 次提交
  4. 22 5月, 2018 2 次提交
  5. 24 4月, 2018 2 次提交
  6. 05 4月, 2018 1 次提交
  7. 29 3月, 2018 1 次提交
  8. 28 3月, 2018 1 次提交
  9. 26 2月, 2018 2 次提交
  10. 22 2月, 2018 1 次提交
  11. 21 2月, 2018 2 次提交
  12. 19 2月, 2018 1 次提交
  13. 16 2月, 2018 1 次提交
  14. 14 2月, 2018 1 次提交
  15. 16 1月, 2018 1 次提交
  16. 10 1月, 2018 1 次提交
  17. 09 1月, 2018 2 次提交
  18. 05 1月, 2018 1 次提交
  19. 04 1月, 2018 1 次提交
  20. 01 1月, 2018 1 次提交
  21. 28 12月, 2017 2 次提交
  22. 22 12月, 2017 1 次提交
  23. 21 12月, 2017 1 次提交
  24. 15 12月, 2017 1 次提交
    • Z
      Merge pull request #10283 from zhijackchen:exr_export · 6df8ac03
      zhijackchen 提交于
      * 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
  25. 13 12月, 2017 1 次提交
  26. 11 12月, 2017 1 次提交
  27. 29 11月, 2017 1 次提交
  28. 20 11月, 2017 1 次提交
    • G
      Merge pull request #10093 from gdkessler/gdal_image_read_fix_10089 · 2674c6b5
      gdkessler 提交于
      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
  29. 08 11月, 2017 1 次提交
  30. 23 10月, 2017 1 次提交
  31. 22 10月, 2017 1 次提交
  32. 01 10月, 2017 1 次提交
  33. 27 9月, 2017 1 次提交
  34. 25 9月, 2017 1 次提交