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 3 次提交
  3. 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
  4. 17 6月, 2016 4 次提交
  5. 16 6月, 2016 4 次提交
  6. 15 6月, 2016 2 次提交
  7. 11 6月, 2016 2 次提交
  8. 09 6月, 2016 1 次提交
  9. 08 6月, 2016 1 次提交
  10. 07 6月, 2016 4 次提交
  11. 06 6月, 2016 2 次提交
  12. 03 6月, 2016 2 次提交
  13. 01 6月, 2016 1 次提交
  14. 31 5月, 2016 8 次提交
  15. 30 5月, 2016 2 次提交