1. 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
  2. 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
  3. 19 6月, 2016 3 次提交
  4. 18 6月, 2016 3 次提交
    • M
      fix most coding style warnings and errors · d1b097f4
      MYLS 提交于
      d1b097f4
    • 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
  5. 17 6月, 2016 4 次提交
  6. 16 6月, 2016 4 次提交
  7. 15 6月, 2016 2 次提交
  8. 11 6月, 2016 2 次提交
  9. 09 6月, 2016 1 次提交
  10. 08 6月, 2016 1 次提交
  11. 07 6月, 2016 4 次提交
  12. 06 6月, 2016 2 次提交
  13. 03 6月, 2016 2 次提交
  14. 01 6月, 2016 1 次提交
  15. 31 5月, 2016 8 次提交