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 2 次提交
  3. 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
  4. 11 4月, 2016 2 次提交
  5. 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
  6. 24 2月, 2015 1 次提交
  7. 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
  8. 08 4月, 2014 1 次提交
  9. 21 3月, 2014 1 次提交
  10. 21 2月, 2014 1 次提交
  11. 20 2月, 2014 1 次提交
  12. 18 1月, 2014 1 次提交
  13. 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
  14. 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
  15. 21 8月, 2013 1 次提交
  16. 15 8月, 2013 1 次提交
  17. 10 4月, 2013 1 次提交
  18. 03 4月, 2013 1 次提交
  19. 01 4月, 2013 1 次提交
  20. 23 3月, 2013 2 次提交
  21. 22 3月, 2013 2 次提交
  22. 10 3月, 2013 1 次提交
  23. 29 6月, 2012 1 次提交
  24. 25 6月, 2012 1 次提交
  25. 31 5月, 2012 1 次提交
  26. 30 5月, 2012 2 次提交
  27. 28 5月, 2012 1 次提交
  28. 14 4月, 2012 1 次提交
  29. 04 4月, 2012 1 次提交
  30. 03 4月, 2012 2 次提交
  31. 28 3月, 2012 1 次提交
  32. 11 4月, 2011 1 次提交
  33. 10 2月, 2011 1 次提交