1. 16 2月, 2022 1 次提交
  2. 13 1月, 2022 1 次提交
  3. 27 10月, 2021 1 次提交
  4. 26 5月, 2020 1 次提交
  5. 22 9月, 2019 1 次提交
  6. 12 6月, 2019 1 次提交
  7. 11 6月, 2019 1 次提交
  8. 23 5月, 2019 1 次提交
  9. 22 4月, 2019 1 次提交
  10. 21 4月, 2019 1 次提交
  11. 05 4月, 2019 1 次提交
  12. 04 4月, 2019 1 次提交
    • A
      imgcodecs(tiff): sanitize tiff decoder · ba5ddd64
      Alexander Alekhin 提交于
      - more checks
      - drop separate branches for 32FC1/32FC3(read) handling
      - added for 32F/64F non-compressed
      - added tests for 32FC3 (RAW + hdr SGILOG compression)
      - added test 64FC1
      - dump tiff errors on stderr
      ba5ddd64
  13. 01 4月, 2019 1 次提交
  14. 31 3月, 2019 1 次提交
  15. 10 3月, 2019 1 次提交
  16. 09 11月, 2018 1 次提交
    • V
      removed C API in the following modules: photo, video, imgcodecs, videoio (#13060) · 11eafca3
      Vadim Pisarevsky 提交于
      * removed C API in the following modules: photo, video, imgcodecs, videoio
      
      * trying to fix various compile errors and warnings on Windows and Linux
      
      * continue to fix compile errors and warnings
      
      * continue to fix compile errors, warnings, as well as the test failures
      
      * trying to resolve compile warnings on Android
      
      * Update cap_dc1394_v2.cpp
      
      fix warning from the new GCC
      11eafca3
  17. 01 11月, 2018 1 次提交
    • I
      Merge pull request #12989 from venalil:fix_thresholded_tiff_read · e6c41f0d
      Ilari Venäläinen 提交于
      * Fix reading of black-and-white (thresholded) TIFF images
      
      I recently updated my local OpenCV version to 3.4.3 and found out that
      I could not read my TIFF images related to my project. After debugging I
      found out that there has been some static analysis fixes made
      that accidentally have broken reading those black-and-white TIFF images.
      
      Commit hash in which reading of mentioned TIFF images has been broken:
      cbb1e867
      
      Basically the fix is to revert back to the same functionality that has been there before,
      when black-and-white images are read bpp (bitspersample) is 1.
      Without the case 1: this TiffDecoder::readHeader() function always return false.
      
      * Added type and default error message
      
      * Added stdexcept include
      
      * Use CV_Error instead of throw std::runtime_error
      
      * imgcodecs(test): add TIFF B/W decoding tests
      e6c41f0d
  18. 24 7月, 2018 1 次提交
  19. 05 7月, 2018 1 次提交
  20. 05 4月, 2018 1 次提交
  21. 26 2月, 2018 2 次提交
  22. 22 2月, 2018 1 次提交
  23. 21 2月, 2018 1 次提交
  24. 19 2月, 2018 1 次提交
  25. 04 1月, 2018 1 次提交
  26. 25 9月, 2017 1 次提交
  27. 06 9月, 2017 1 次提交
  28. 24 8月, 2017 1 次提交
  29. 01 8月, 2017 1 次提交
  30. 25 7月, 2017 1 次提交
  31. 30 10月, 2015 1 次提交
  32. 24 5月, 2015 2 次提交
  33. 23 2月, 2015 2 次提交
  34. 04 1月, 2015 1 次提交
  35. 03 1月, 2015 1 次提交
  36. 17 10月, 2014 1 次提交
  37. 13 8月, 2014 1 次提交
    • A
      Several type of formal refactoring: · 8a4a1bb0
      Adil Ibragimov 提交于
      1. someMatrix.data -> someMatrix.prt()
      2. someMatrix.data + someMatrix.step * lineIndex -> someMatrix.ptr( lineIndex )
      3. (SomeType*) someMatrix.data -> someMatrix.ptr<SomeType>()
      4. someMatrix.data -> !someMatrix.empty() ( or !someMatrix.data -> someMatrix.empty() ) in logical expressions
      8a4a1bb0