1. 01 3月, 2017 1 次提交
  2. 17 1月, 2017 1 次提交
  3. 16 11月, 2016 1 次提交
  4. 02 11月, 2016 1 次提交
  5. 26 10月, 2016 1 次提交
  6. 24 8月, 2016 1 次提交
    • M
      Add two tests. · 47f2e618
      MYLS 提交于
      - one test for type_id;
      - another for comments in JSON;
      47f2e618
  7. 11 8月, 2016 1 次提交
    • M
      Add JSON support. · 8596e82d
      MYLS 提交于
      a JSON emitter, a parser, tests and some basic doc.
      8596e82d
  8. 21 7月, 2016 1 次提交
  9. 19 7月, 2016 2 次提交
  10. 08 7月, 2016 1 次提交
  11. 25 6月, 2016 2 次提交
    • M
      build again for OpenCL. · df5a7c8e
      MYLS 提交于
      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
    • M
      fixed an error in the test... · 677d4d20
      MYLS 提交于
      677d4d20
  12. 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
  13. 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
  14. 19 6月, 2016 2 次提交
  15. 18 6月, 2016 2 次提交
    • 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
  16. 11 4月, 2016 2 次提交
  17. 26 4月, 2015 1 次提交
    • M
      Cast some image coordinates and sizes to double. · b99f7a29
      Mansour Moufid 提交于
      Conflicts:
      	modules/gpu/perf/perf_imgproc.cpp
      
      Cast a long integer to double explicitly.
      
      Conflicts:
      	modules/python/src2/cv2.cpp
      
      Cast some matrix sizes to type int.
      
      Change some vector mask types to unsigned.
      
      Conflicts:
      	modules/core/src/arithm.cpp
      b99f7a29
  18. 24 2月, 2015 1 次提交
  19. 13 8月, 2014 1 次提交
    • A
      Several type of formal refactoring: · 8a4a1bb0
      Adil Ibragimov 提交于
      1. someMatrix.data -> someMatrix.prt()
      2. someMatrix.data + someMatrix.step * lineIndex -> someMatrix.ptr( lineIndex )
      3. (SomeType*) someMatrix.data -> someMatrix.ptr<SomeType>()
      4. someMatrix.data -> !someMatrix.empty() ( or !someMatrix.data -> someMatrix.empty() ) in logical expressions
      8a4a1bb0
  20. 08 4月, 2014 1 次提交
  21. 21 3月, 2014 1 次提交
  22. 21 2月, 2014 1 次提交
  23. 20 2月, 2014 1 次提交
  24. 18 1月, 2014 1 次提交
  25. 06 9月, 2013 1 次提交
    • V
      Merge branch 'master' into gpu-cuda-rename · 0c7663eb
      Vladislav Vinogradov 提交于
      Conflicts:
      	modules/core/include/opencv2/core/cuda.hpp
      	modules/cudacodec/src/thread.cpp
      	modules/cudacodec/src/thread.hpp
      	modules/superres/perf/perf_superres.cpp
      	modules/superres/src/btv_l1_cuda.cpp
      	modules/superres/src/optical_flow.cpp
      	modules/videostab/src/global_motion.cpp
      	modules/videostab/src/inpainting.cpp
      	samples/cpp/stitching_detailed.cpp
      	samples/cpp/videostab.cpp
      	samples/gpu/stereo_multi.cpp
      0c7663eb
  26. 05 9月, 2013 1 次提交
    • R
      Boring changes - core. · 8200a95c
      Roman Donchenko 提交于
      This and several following commits contain the "boring" changes required
      to support the new Ptr. These are changes like:
      
      * new T -> makePtr<T> or .reset(new T) or Ptr<T>(new T)
        (depending on the situation)
      * p.empty() -> !p
      * delete_obj -> DefaultDeleter::operator()
      
      and similar changes that are numerous, but primitive.
      8200a95c
  27. 21 8月, 2013 1 次提交
  28. 15 8月, 2013 1 次提交
  29. 10 4月, 2013 1 次提交
  30. 03 4月, 2013 1 次提交
  31. 01 4月, 2013 1 次提交
  32. 23 3月, 2013 2 次提交
  33. 22 3月, 2013 1 次提交