1. 21 11月, 2020 1 次提交
  2. 06 10月, 2020 1 次提交
  3. 24 5月, 2020 1 次提交
    • J
      Merge pull request #17320 from jgbradley1:add-eigen-tensor-conversions · 9fef09fe
      Josh Bradley 提交于
      * add eigen tensor conversion functions
      
      * add eigen tensor conversion tests
      
      * add support for column major order
      
      * update eigen tensor tests
      
      * fix coding style and add conditional compilation
      
      * fix conditional compilation checks
      
      * remove whitespace
      
      * rearrange functions for easier reading
      
      * reformat function documentation and add tensormap unit test
      
      * cleanup documentation of unit test
      
      * remove condition duplication
      
      * check Eigen major version, not minor version
      
      * restrict to Eigen v3.3.0+
      
      * add documentation note and add type checking to cv2eigen_tensormap()
      9fef09fe
  4. 10 4月, 2020 1 次提交
  5. 20 3月, 2020 1 次提交
  6. 02 3月, 2020 1 次提交
  7. 24 2月, 2020 1 次提交
  8. 14 10月, 2019 1 次提交
  9. 28 2月, 2019 1 次提交
  10. 18 1月, 2019 1 次提交
  11. 17 1月, 2019 1 次提交
  12. 04 1月, 2019 1 次提交
    • L
      Merge pull request #13544 from eightco:bugfix · 71aee662
      Lee Jaehwan 提交于
      Fix a bug in cv :: merge when array of 3-channel mat is input (#13544)
      
      * Mat merge function bug fix - Bug fix of merge function of 3-channel vector <Mat> of 3 or 4 matrices
      
      * Add Core_merge test for opencv#13544
      
      * fixups
      71aee662
  13. 16 12月, 2018 1 次提交
  14. 09 11月, 2018 1 次提交
  15. 06 9月, 2018 1 次提交
  16. 04 9月, 2018 1 次提交
  17. 07 8月, 2018 1 次提交
  18. 24 7月, 2018 1 次提交
  19. 13 6月, 2018 1 次提交
  20. 15 5月, 2018 1 次提交
  21. 04 4月, 2018 1 次提交
  22. 22 3月, 2018 1 次提交
  23. 17 2月, 2018 1 次提交
    • P
      Merge pull request #10589 from patrikhuber:patch-1 · 7be0c785
      Patrik Huber 提交于
      * Make <array> #ifdef true for MSVC
      
      I think MSVC had `std::array` for quite a while (possibly going back as far as VS 2012, but it's definitely there in 2015 and 2017. So I think `_MSC_VER` `1900` is a safe bet. Probably `1800` and maybe even `1700` could work as well but I can't test that locally.
      
      * fix test
      7be0c785
  24. 12 2月, 2018 1 次提交
    • Y
      Add new Mat constructor (#10808) · 379ea15d
      yuki takehara 提交于
      * Add new Mat constructor
      
      * Fix build error
      
      * Fix build error
      
      * Fixed the code about 4 comments
      
      * Fixed three comments
      
      * delete previous local declaration
      
      * fix build error
      379ea15d
  25. 04 2月, 2018 1 次提交
    • A
      ts: refactor OpenCV tests · 4a297a24
      Alexander Alekhin 提交于
      - removed tr1 usage (dropped in C++17)
      - moved includes of vector/map/iostream/limits into ts.hpp
      - require opencv_test + anonymous namespace (added compile check)
      - fixed norm() usage (must be from cvtest::norm for checks) and other conflict functions
      - added missing license headers
      4a297a24
  26. 12 12月, 2017 1 次提交
    • A
      core(test): refactor PCA test · d48d2d7f
      Alexander Alekhin 提交于
      - CV_L2 -> relative NORM_L2
      - eigenEps: 1e-6 ==> 1e-4
      - evalEps: 1e-6 ==> 1e-5
      - evecEps: 1e-3 ==> 5e-3
      - RNG seed: 12345
      - drop non-informative legacy test code (ts->printf, etc)
      d48d2d7f
  27. 11 10月, 2017 1 次提交
  28. 10 10月, 2017 1 次提交
    • T
      fix#9570: implement mat ptr for generic types · 6c1247b3
      tz70s 提交于
      The original template based mat ptr for indexing is not implemented,
      add the similar implementation as uchar type, but cast to
      user-defined type from the uchar pointer.
      6c1247b3
  29. 07 9月, 2017 1 次提交
  30. 02 9月, 2017 1 次提交
  31. 15 7月, 2017 1 次提交
    • V
      Merge pull request #9034 from sovrasov:mats_from_initializer_list · e5fbb4f5
      Vladislav Sovrasov 提交于
      Add constructors taking initializer_list for some of OpenCV data types (#9034)
      
      * Add a constructor taking initializer_list for Matx
      
      * Add a constructor taking initializer list for Mat and Mat_
      
      * Add one more method to initialize Mat to the corresponding tutorial
      
      * Add a note how to initialize Matx
      
      * CV_CXX_11->CV_CXX11
      e5fbb4f5
  32. 03 7月, 2017 1 次提交
  33. 23 5月, 2017 1 次提交
  34. 19 4月, 2017 1 次提交
  35. 24 3月, 2017 1 次提交
  36. 15 12月, 2016 1 次提交
    • A
      Added N-dim submat selection with vectors · eb04b2bf
      Addison Elliott 提交于
      Currently, to select a submatrix of a N-dimensional matrix, it requires
      two lines of code while only one line of code is required if using a 2D
      array.
      
      I added functionality to be able to select an N-dim submatrix using a
      vector list instead of a Range pointer. This allows initializer lists to
      be used for a one-line selection.
      eb04b2bf
  37. 07 9月, 2016 2 次提交
  38. 04 9月, 2016 1 次提交
  39. 19 7月, 2016 1 次提交