1. 24 Jun, 2016 4 commits
    • MYLS's avatar
      build again for OpenCL. · df5a7c8e
      MYLS authored
      I could not find the cause of the error:
      
      ```
      C:\builds_ocv\precommit_opencl\opencv\modules\ts\src\ts_perf.cpp(361):
      error: The difference between expect_max and actual_max is
      8445966.0000002384, which exceeds eps, where
      
      expect_max evaluates to 0.9999997615814209,
      
      actual_max evaluates to 8445967, and
      
      eps evaluates to 1.0000000000000001e-005.
      
      Argument "dst0" has unexpected maximal value
      ```
      
      Hope this is a false alarm.
      df5a7c8e
    • MYLS's avatar
      fixed an error in the test... · 677d4d20
      MYLS authored
      677d4d20
    • MYLS's avatar
      solve warnings and errors in test. · 959002fb
      MYLS authored
      959002fb
    • 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
  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 6 commits