1. 24 Jun, 2016 3 commits
  2. 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
  3. 18 Jun, 2016 6 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 · 7b1f7c8d
      MYLS authored
      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
    • 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
  4. 17 Jun, 2016 2 commits
  5. 16 Jun, 2016 4 commits
  6. 15 Jun, 2016 4 commits
  7. 11 Jun, 2016 2 commits
  8. 08 Jun, 2016 1 commit
  9. 07 Jun, 2016 5 commits
  10. 06 Jun, 2016 2 commits
  11. 03 Jun, 2016 2 commits
  12. 01 Jun, 2016 1 commit
  13. 31 May, 2016 7 commits