1. 10 7月, 2023 1 次提交
  2. 25 5月, 2023 1 次提交
  3. 03 7月, 2021 2 次提交
  4. 06 6月, 2021 1 次提交
  5. 16 11月, 2020 1 次提交
  6. 14 11月, 2020 1 次提交
  7. 13 11月, 2020 1 次提交
  8. 06 10月, 2020 1 次提交
  9. 29 5月, 2020 1 次提交
  10. 27 1月, 2020 1 次提交
    • P
      Merge pull request #15338 from rayonnant14:my_detect_and_decode_3.4 · acc089ca
      Polina Smolnikova 提交于
      QR-Code detector : multiple detection
      
      * change in qr-codes detection
      
      * change in qr-codes detection
      
      * change in test
      
      * change in test
      
      * add multiple detection
      
      * multiple detection
      
      * multiple detect
      
      * add parallel implementation
      
      * add functional for performance tests
      
      * change in test
      
      * add perftest
      
      * returned implementation for 1 qr-code, added support for vector<Mat> and vector<vector<Point2f>> in MultipleDetectAndDecode
      
      * deleted all lambda expressions
      
      * changing in triangle sort
      
      * fixed warnings
      
      * fixed errors
      
      * add java and python tests
      
      * change in java tests
      
      * change in java and python tests
      
      * change in perf test
      
      * change in qrcode.cpp
      
      * add spaces
      
      * change in qrcode.cpp
      
      * change in qrcode.cpp
      
      * change in qrcode.cpp
      
      * change in java tests
      
      * change in java tests
      
      * solved problems
      
      * solved problems
      
      * change in java and python tests
      
      * change in python tests
      
      * change in python tests
      
      * change in python tests
      
      * change in methods name
      
      * deleted sample qrcode_multi, change in qrcode.cpp
      
      * change in perf tests
      
      * change in objdetect.hpp
      
      * deleted code duplication in sample qrcode.cpp
      
      * returned spaces
      
      * added spaces
      
      * deleted draw function
      
      * change in qrcode.cpp
      
      * change in qrcode.cpp
      
      * deleted all draw functions
      
      * objdetect(QR): extractVerticalLines
      
      * objdetect(QR): whitespaces
      
      * objdetect(QR): simplify operations, avoid duplicated code
      
      * change in interface, additional checks in java and python tests, added new key in sample for saving original image from camera
      
      * fix warnings and errors in python test
      
      * fix
      
      * write in file with space key
      
      * solved error with empty mat check in python test
      
      * correct path to test image
      
      * deleted spaces
      
      * solved error with check empty mat in python tests
      
      * added check of empty vector of points
      
      * samples: rework qrcode.cpp
      
      * objdetect(QR): fix API, input parameters must be first
      
      * objdetect(QR): test/fix points layout
      acc089ca
  11. 07 6月, 2019 1 次提交
  12. 05 6月, 2019 1 次提交
  13. 28 5月, 2019 1 次提交
  14. 05 4月, 2019 1 次提交
  15. 02 3月, 2019 2 次提交
  16. 19 12月, 2018 1 次提交
  17. 18 11月, 2018 1 次提交
  18. 01 9月, 2018 2 次提交
  19. 25 8月, 2018 1 次提交
  20. 17 7月, 2018 1 次提交
  21. 28 2月, 2018 1 次提交
  22. 14 2月, 2018 1 次提交
  23. 13 1月, 2018 3 次提交
  24. 16 11月, 2017 1 次提交
  25. 16 6月, 2017 1 次提交
  26. 02 5月, 2017 1 次提交
  27. 05 4月, 2017 1 次提交
  28. 02 3月, 2017 1 次提交
  29. 31 1月, 2017 1 次提交
  30. 31 12月, 2016 1 次提交
  31. 15 10月, 2016 1 次提交
  32. 13 10月, 2016 1 次提交
  33. 12 10月, 2016 1 次提交
  34. 11 10月, 2016 1 次提交
  35. 08 10月, 2016 1 次提交
    • A
      java: fix Ptr<> code generation · 714db4cf
      Alexander Alekhin 提交于
      Before:
          Ptr<Dictionary>((cv::aruco::Dictionary*)dictionary_nativeObj)
      After:
          Ptr<cv::aruco::Dictionary>((cv::aruco::Dictionary*)dictionary_nativeObj)
      714db4cf