1. 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
  2. 19 6月, 2016 2 次提交
  3. 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
  4. 07 6月, 2016 1 次提交
  5. 20 5月, 2016 1 次提交
  6. 12 5月, 2016 1 次提交
  7. 11 4月, 2016 2 次提交
  8. 08 4月, 2016 1 次提交
  9. 12 2月, 2016 1 次提交
  10. 26 1月, 2016 1 次提交
  11. 25 12月, 2015 1 次提交
  12. 17 12月, 2015 1 次提交
  13. 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
  14. 21 11月, 2015 2 次提交
  15. 11 11月, 2015 1 次提交
  16. 06 11月, 2015 1 次提交
    • V
      fix solveCubic · 68bcff26
      Viet Dinh 提交于
      The original solution did not handle correctly when delta = 0,
      resulting as nan errors. I also wrote a test case to test solving
      equation x^3 = 0 after fixing.
      68bcff26
  17. 04 11月, 2015 3 次提交
  18. 22 10月, 2015 1 次提交
  19. 20 10月, 2015 1 次提交
  20. 24 9月, 2015 1 次提交
  21. 23 9月, 2015 3 次提交
  22. 21 9月, 2015 1 次提交
  23. 20 9月, 2015 1 次提交
  24. 17 9月, 2015 1 次提交
  25. 14 9月, 2015 2 次提交
  26. 12 9月, 2015 1 次提交
  27. 09 9月, 2015 2 次提交
  28. 03 9月, 2015 1 次提交
  29. 26 8月, 2015 1 次提交
  30. 25 8月, 2015 1 次提交