1. 25 7月, 2016 1 次提交
  2. 24 7月, 2016 1 次提交
  3. 23 7月, 2016 1 次提交
  4. 21 7月, 2016 1 次提交
  5. 20 7月, 2016 1 次提交
  6. 19 7月, 2016 5 次提交
  7. 15 7月, 2016 1 次提交
  8. 14 7月, 2016 2 次提交
  9. 08 7月, 2016 2 次提交
  10. 02 7月, 2016 1 次提交
  11. 30 6月, 2016 1 次提交
  12. 25 6月, 2016 2 次提交
    • M
      build again for OpenCL. · df5a7c8e
      MYLS 提交于
      I could not find the cause of the error:
      
      ```
      C:\builds_ocv\precommit_opencl\opencv\modules\ts\src\ts_perf.cpp(361):
      error: The difference between expect_max and actual_max is
      8445966.0000002384, which exceeds eps, where
      
      expect_max evaluates to 0.9999997615814209,
      
      actual_max evaluates to 8445967, and
      
      eps evaluates to 1.0000000000000001e-005.
      
      Argument "dst0" has unexpected maximal value
      ```
      
      Hope this is a false alarm.
      df5a7c8e
    • M
      fixed an error in the test... · 677d4d20
      MYLS 提交于
      677d4d20
  13. 24 6月, 2016 2 次提交
    • M
      solve warnings and errors in test. · 959002fb
      MYLS 提交于
      959002fb
    • M
      Split `cvWriteRawData_Base64` into three functions · 7c92ee2e
      MYLS 提交于
      The three new functions:
      
      ```cpp
      void cvStartWriteRawData_Base64(::CvFileStorage * fs, const char* name,
      int len, const char* dt);
      void cvWriteRawData_Base64(::CvFileStorage *
      fs, const void* _data, int len);
      void
      cvEndWriteRawData_Base64(::CvFileStorage * fs);
      ```
      
      Test is also updated. (And it's remarkable that there is a bug in
      `cvWriteReadData`.)
      7c92ee2e
  14. 20 6月, 2016 1 次提交
    • M
      change the parameter to `CvMat` and `CvMatND` · 29921d05
      MYLS 提交于
      ```cpp
      cvWriteMat_Base64(::cv::FileStorage & fs, ::cv::String const & name,
      ::cv::Mat const & mat)
      ```
      becomes:
      ```cpp
      CV_EXPORTS void cvWriteMat_Base64(::CvFileStorage* fs, const char* name,
      const ::CvMat* mat);
      CV_EXPORTS void
      cvWriteMatND_Base64(::CvFileStorage* fs, const char* name, const
      ::CvMatND* mat);
      ```
      29921d05
  15. 19 6月, 2016 2 次提交
  16. 18 6月, 2016 2 次提交
    • M
      Add Base64 support for FileStorage · 7b1f7c8d
      MYLS 提交于
      1. Add Base64 support for reading and writing XML\YML file.
      
      The two new functions for writing:
      
      ```cpp
      void cvWriteRawData_Base64(cv::FileStorage & fs, const void* _data, int
      len, const char* dt);
      void cvWriteMat_Base64(cv::FileStorage & fs, cv::String const & name,
      cv::Mat const & mat);
      ```
      
      2. Change YML file header form `YAML:1.0` to `YAML 1.0`. (standard
      format)
      
      3. Add test for Base64 part.
      7b1f7c8d
    • M
      Add Base64 support for FileStorage · ecd827fc
      MYLS 提交于
      [GSoC] FileStorage:
      Add base64 support for reading and writting XML\YML file.
      The two new functions:
      ```
      void cvWriteRawData_Base64(cv::FileStorage & fs, const void* _data, int
      len, const char* dt);
      void cvWriteMat_Base64(cv::FileStorage & fs, cv::String const & name,
      cv::Mat const & mat);
      ```
      ecd827fc
  17. 07 6月, 2016 1 次提交
  18. 06 6月, 2016 1 次提交
  19. 31 5月, 2016 1 次提交
  20. 21 5月, 2016 1 次提交
    • T
      add feature to convert FP32(float) to FP16(half) · b2ad7cd9
      Tomoaki Teshima 提交于
        * check compiler support
        * check HW support before executing
        * add test doing round trip conversion from / to FP32
        * treat array correctly if size is not multiple of 4
        * add declaration to prevent warning
        * make it possible to enable fp16 on 32bit ARM
        * let the conversion possible on non-supported HW, too.
        * add test using both HW and SW implementation
      b2ad7cd9
  21. 20 5月, 2016 1 次提交
  22. 12 5月, 2016 1 次提交
  23. 11 4月, 2016 2 次提交
  24. 08 4月, 2016 1 次提交
  25. 12 2月, 2016 1 次提交
  26. 26 1月, 2016 1 次提交
  27. 25 12月, 2015 1 次提交
  28. 17 12月, 2015 1 次提交
  29. 09 12月, 2015 1 次提交
    • A
      checkRange fixes · b26580cc
      Alexander Alekhin 提交于
      1) fix multichannel support
      2) remove useless bad_value, read value from original Mat directly
      3) add more tests
      4) fix docs for cvCeil and checkRange
      b26580cc