1. 15 6月, 2023 1 次提交
  2. 14 6月, 2023 1 次提交
  3. 11 6月, 2023 1 次提交
  4. 08 6月, 2023 1 次提交
  5. 05 6月, 2023 1 次提交
  6. 02 6月, 2023 1 次提交
  7. 22 5月, 2023 1 次提交
    • C
      Merge pull request #23612 from cpoerschke:3.4-issue-21532 · d00a9631
      Christine Poerschke 提交于
      QRCodeDetector: don't floodFill with outside-of-image seedPoint #23612
      
      Fixes #21532.
      
      ### Pull Request Readiness Checklist
      
      See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request
      
      - [X] I agree to contribute to the project under Apache 2 License.
      - [X] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV
      - [X] The PR is proposed to the proper branch
      - [X] There is a reference to the original bug report and related work
      - [ ] There is accuracy test, performance test and test data in opencv_extra repository, if applicable
            Patch to opencv_extra has the same branch name.
      - [ ] The feature is well documented and sample code can be built with the project CMake
      d00a9631
  8. 04 5月, 2023 1 次提交
  9. 27 4月, 2023 1 次提交
  10. 18 4月, 2023 1 次提交
  11. 17 4月, 2023 1 次提交
    • K
      Merge pull request #23436 from siilats:patch-2 · 8512deb3
      keith siilats 提交于
      Fix python bindings for setCharucoParameters #23436
      
      setCharucoParameters fails in python
      Fixes: https://github.com/opencv/opencv/issues/23440
      
      ### Pull Request Readiness Checklist
      
      See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request
      
      - [x] I agree to contribute to the project under Apache 2 License.
      - [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV
      - [x] The PR is proposed to the proper branch
      - [x] There is a reference to the original bug report and related work
      - [x] There is accuracy test, performance test and test data in opencv_extra repository, if applicable
            Patch to opencv_extra has the same branch name.
      - [x] The feature is well documented and sample code can be built with the project CMake
      8512deb3
  12. 15 4月, 2023 1 次提交
  13. 11 4月, 2023 1 次提交
  14. 29 3月, 2023 1 次提交
    • A
      fix test · c643af0b
      Alex 提交于
      c643af0b
  15. 24 3月, 2023 1 次提交
  16. 21 3月, 2023 1 次提交
  17. 20 3月, 2023 1 次提交
  18. 17 2月, 2023 1 次提交
  19. 06 2月, 2023 1 次提交
  20. 27 1月, 2023 1 次提交
  21. 09 1月, 2023 1 次提交
    • C
      Merge pull request #23108 from crackwitz:issue-23107 · a64b51dd
      Christoph Rackwitz 提交于
      Usage of imread(): magic number 0, unchecked result
      
      * docs: rewrite 0/1 to IMREAD_GRAYSCALE/IMREAD_COLOR in imread()
      
      * samples, apps: rewrite 0/1 to IMREAD_GRAYSCALE/IMREAD_COLOR in imread()
      
      * tests: rewrite 0/1 to IMREAD_GRAYSCALE/IMREAD_COLOR in imread()
      
      * doc/py_tutorials: check imread() result
      a64b51dd
  22. 28 12月, 2022 1 次提交
    • A
      Merge pull request #22986 from AleksandrPanov:move_contrib_charuco_to_main_objdetect · 12103487
      Alexander Panov 提交于
      merge with https://github.com/opencv/opencv_contrib/pull/3394
      
      move Charuco API from contrib to main repo:
      
      - add CharucoDetector:
      ```
      CharucoDetector::detectBoard(InputArray image, InputOutputArrayOfArrays markerCorners, InputOutputArray markerIds, 
                                   OutputArray charucoCorners, OutputArray charucoIds) const // detect charucoCorners and/or markerCorners
      CharucoDetector::detectDiamonds(InputArray image, InputOutputArrayOfArrays _markerCorners,
                                      InputOutputArrayOfArrays _markerIds, OutputArrayOfArrays _diamondCorners,
                                      OutputArray _diamondIds) const
      ```
      
      - add `matchImagePoints()` for `CharucoBoard`
      - remove contrib aruco dependencies from interactive-calibration tool
      - move almost all aruco tests to objdetect
      
      ### Pull Request Readiness Checklist
      
      See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request
      
      - [x] I agree to contribute to the project under Apache 2 License.
      - [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV
      - [x] The PR is proposed to the proper branch
      - [x] There is a reference to the original bug report and related work
      - [x] There is accuracy test, performance test and test data in opencv_extra repository, if applicable
            Patch to opencv_extra has the same branch name.
      - [x] The feature is well documented and sample code can be built with the project CMake
      12103487
  23. 23 12月, 2022 1 次提交
  24. 21 12月, 2022 1 次提交
  25. 16 12月, 2022 1 次提交
    • A
      Merge pull request #22368 from AleksandrPanov:move_contrib_aruco_to_main_objdetect · b4b35cff
      Alexander Panov 提交于
      Megre together with https://github.com/opencv/opencv_contrib/pull/3325
      
      1. Move aruco_detector, aruco_board, aruco_dictionary, aruco_utils to objdetect
      1.1 add virtual Board::draw(), virtual ~Board()
      1.2 move `testCharucoCornersCollinear` to Board classes (and rename to `checkCharucoCornersCollinear`)
      1.3 add wrappers to keep the old api working
      3. Reduce inludes
      4. Fix java tests (add objdetect import)
      5. Refactoring
      
      ### Pull Request Readiness Checklist
      
      See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request
      
      - [x] I agree to contribute to the project under Apache 2 License.
      - [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV
      - [x] The PR is proposed to the proper branch
      - [x] There is a reference to the original bug report and related work
      - [x] There is accuracy test, performance test and test data in opencv_extra repository, if applicable
            Patch to opencv_extra has the same branch name.
      - [x] The feature is well documented and sample code can be built with the project CMake
      
      ```
      **WIP**
      force_builders=linux,win64,docs,Linux x64 Debug,Custom
      Xbuild_contrib:Docs=OFF
      
      build_image:Custom=ubuntu:22.04
      build_worker:Custom=linux-1
      ```
      b4b35cff
  26. 15 12月, 2022 1 次提交
  27. 10 12月, 2022 1 次提交
  28. 28 11月, 2022 1 次提交
  29. 16 11月, 2022 1 次提交
  30. 19 10月, 2022 1 次提交
  31. 29 9月, 2022 1 次提交
  32. 20 9月, 2022 1 次提交
  33. 25 8月, 2022 1 次提交
  34. 16 8月, 2022 1 次提交
  35. 07 8月, 2022 1 次提交
  36. 12 7月, 2022 1 次提交
    • R
      Make objdetect/test C++11-compliant and reproducible · 31350631
      Rong Mantle Bao 提交于
      - Add conditional compilation directives to replace deprecated std::random_shuffle with new std::shuffle when C++11 is available.
      
      - Set random seed to a fixed value before shuffling containers to ensure reproducibility.
      
      Resolves opencv/opencv#22209.
      31350631
  37. 06 7月, 2022 1 次提交
  38. 04 6月, 2022 1 次提交
  39. 31 5月, 2022 1 次提交
    • K
      Merge pull request #22030 from Kumataro:3.4-fix22029 · 1a24e316
      Kumataro 提交于
      * objdetect: qrcode_encoder: fix to missing timing pattern
      
      * objdetect: qrcode_encoder: Add SCOPED_TRACE() and replace CV_Assert() to ASSERT_EQ().
      
      - Add SCOPED_TRACE() for version loop.
      
      - Replace CV_Assert() to ASSERT_EQ().
      
      - Rename expect_msg to msg.
      1a24e316
  40. 21 2月, 2022 1 次提交