1. 20 Jul, 2017 2 commits
  2. 12 Jul, 2017 2 commits
  3. 28 Jun, 2017 1 commit
  4. 26 Jun, 2017 1 commit
  5. 23 May, 2017 1 commit
  6. 26 Apr, 2017 1 commit
    • Alexander Alekhin's avatar
      core: fix persistence bug in RAW I/O code · 75f28245
      Alexander Alekhin authored
      - persistence.cpp code expects special sizeof value for passed structures
      - this assumption is lead to memory corruption problems
      - fixed/workarounded test to prevent memory corruption on Linux 32-bit systems
      75f28245
  7. 14 Apr, 2017 1 commit
  8. 02 Mar, 2017 2 commits
  9. 01 Mar, 2017 1 commit
  10. 17 Jan, 2017 1 commit
  11. 02 Jan, 2017 1 commit
    • Matt Bennett's avatar
      Merge pull request #7952 from mattmyne:JSONWriteFixTrailingDecimalPoint · c3a8db6d
      Matt Bennett authored
      Append zero to trailing decimal place for FileStorage JSON write of a float or double value (#7952)
      
      * Fix for FileStorage JSON write of a float or double value that has no fractional part; appends a zero character after the trailing decimal place to meet JSON standard.
      
      * strlen return to size_t type rather than unnecessary cast to int
      c3a8db6d
  12. 08 Dec, 2016 1 commit
  13. 02 Dec, 2016 1 commit
  14. 02 Nov, 2016 2 commits
  15. 25 Oct, 2016 1 commit
  16. 24 Aug, 2016 1 commit
    • MYLS's avatar
      Add two tests. · 47f2e618
      MYLS authored
      - one test for type_id;
      - another for comments in JSON;
      47f2e618
  17. 19 Aug, 2016 1 commit
  18. 10 Aug, 2016 2 commits
  19. 05 Aug, 2016 2 commits
  20. 29 Jul, 2016 1 commit
  21. 19 Jul, 2016 4 commits
  22. 08 Jul, 2016 1 commit
  23. 24 Jun, 2016 1 commit
    • MYLS's avatar
      Split `cvWriteRawData_Base64` into three functions · 7c92ee2e
      MYLS authored
      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
  24. 20 Jun, 2016 1 commit
    • MYLS's avatar
      change the parameter to `CvMat` and `CvMatND` · 29921d05
      MYLS authored
      ```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
  25. 18 Jun, 2016 5 commits
    • MYLS's avatar
      solve warning for IOS · 9faa2a7f
      MYLS authored
      Two test are still needed:
      
      1. Verify the Base64 data.
      2. Read an old YML file for compatibility test.
      9faa2a7f
    • MYLS's avatar
      Solve warnings, and adjusted the test case. · 958263d2
      MYLS authored
      958263d2
    • MYLS's avatar
      fix errors from test. · 882e4221
      MYLS authored
      Two other test are still needed.
      
      1. Verify the Base64 data.
      2. Read an old YML file for compatibility test.
      882e4221
    • MYLS's avatar
      fix most coding style warnings and errors · d1b097f4
      MYLS authored
      d1b097f4
    • MYLS's avatar
      Add Base64 support for FileStorage · ecd827fc
      MYLS authored
      [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
  26. 25 May, 2016 1 commit
  27. 11 Apr, 2016 1 commit