Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
46e94a2
Update atuco calibration tutorials and faq
stopmosk Jan 4, 2023
f149f26
-Wunused-but-set-variable warnings fix after XCode update with clang …
asmorkalov Feb 1, 2023
b9f0ffd
Typo fix in ximageproc BrightEdges
asmorkalov Feb 2, 2023
04d8492
Merge pull request #3434 from asmorkalov:as/xcode_warning_supression
asmorkalov Feb 2, 2023
2abfef7
3.4: -Wunused-but-set-variable warnings fix after XCode update with c…
asmorkalov Feb 6, 2023
c60fde0
Merge pull request #3435 from asmorkalov:as/xcode_warning_supression3.4
alalek Feb 6, 2023
c56efb9
Fix clang 14 warnings
mshabunin Feb 6, 2023
226fd73
Merge pull request #3436 from mshabunin:fix-clang-warnings
alalek Feb 8, 2023
ed1873b
Merge remote-tracking branch 'upstream/3.4' into merge-3.4
alalek Feb 11, 2023
9199b22
changed CAP_OPENNI flag to CAP_OPENNI2 in linemod sample
vovka643 Mar 1, 2023
82e2792
cudacodec: ensure output frame resolution is display not coded size
cudawarped Mar 6, 2023
9d4b93a
Merge pull request #3451 from vovka643:4.x_deprecated_backends
asmorkalov Mar 15, 2023
42fc489
text: change default char_whitelist parameter.
Kumataro Mar 21, 2023
16f0719
Typo in viz3d doc
LaurentBerger Mar 22, 2023
6ebb38d
Merge pull request #3463 from LaurentBerger:typo_in_viz
asmorkalov Mar 24, 2023
191ccdd
moved aruco_dict_utils.cpp from opencv_contrib to opencv
vovka643 Mar 29, 2023
04ae7db
hough segment detector fix
747bis Mar 28, 2023
33c7030
Fix flipped image in documentation
smeng9 Apr 11, 2023
fd411e7
Merge pull request #3469 from smeng9:patch-aruco-doc
asmorkalov Apr 11, 2023
853144e
Merge pull request #3465 from 747:hough-segment-fix
asmorkalov Apr 11, 2023
d996792
cudacodec: fix nv12 to bgr/bgra conversion
cudawarped Mar 8, 2023
bd546fa
Merge pull request #3468 from cudawarped:cudacodec_fix_colour_conversion
asmorkalov Apr 17, 2023
298fc7b
Merge pull request #3470 from cudawarped:cudacodec_fix_display_size
asmorkalov Apr 17, 2023
f852576
Merge pull request #3462 from Kumataro:3.4-fixc3457
asmorkalov Apr 17, 2023
960b3f6
Merge remote-tracking branch 'origin/3.4' into merge-3.4
asmorkalov Apr 20, 2023
ccc2772
fix(wechat_qrcode): Init nBytes after the count value is determined (…
Konano Apr 26, 2023
e05c63a
add perfomance tests for wechat qrcode
Apr 26, 2023
2b62ff6
fix(wechat_qrcode): fixed memory leaks
Konano Apr 27, 2023
ec406fa
Merge pull request #3484 from Konano:patch-2
asmorkalov Apr 28, 2023
21c9dd0
Code review fixes.
asmorkalov May 3, 2023
c07438c
Merge pull request #3410 from stopmosk:fix-aruco-charuco-calib-tutori…
asmorkalov May 3, 2023
2cab657
fixes
May 3, 2023
d4f7f5f
Promote cv::VideoCapture properties in VideoReader.
asmorkalov Apr 27, 2023
be0850b
fix data path
May 3, 2023
3a2ed1c
Merge pull request #3483 from SinM9:wechat_qrcode_perf_tests
asmorkalov May 4, 2023
e59b737
Merge pull request #3485 from asmorkalov:as/cuda_codec_get
asmorkalov May 16, 2023
deb2255
Merge pull request #3464 from vovka643:4.x_generate_charuco
asmorkalov May 19, 2023
82cb030
barcode perf tests (#3482)
MaximMilashchenko May 24, 2023
8dfeed7
Merge pull request #3496 from mshabunin:add-editorconfig
mshabunin May 24, 2023
ec51e4f
Merge branch '4.x' into 5.x-merge-4.x-origin
asmorkalov May 31, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# https://editorconfig.org/

root = true

[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
indent_size = 4

[{CMakeLists.*,*.cmake}]
indent_style = space
indent_size = 2

[Makefile]
indent_style = tab

[*.{bat,cmd,cmd.*}]
end_of_line = crlf
indent_style = space
indent_size = 2

[*.{ps1,ps1.*}]
end_of_line = crlf
indent_style = space
indent_size = 4

[*.{md,markdown}]
indent_size = 2
4 changes: 2 additions & 2 deletions modules/aruco/include/opencv2/aruco/aruco_calib.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ enum PatternPositionType {
* (markerLength/2, -markerLength/2, 0), (-markerLength/2, -markerLength/2, 0).
*
* These pattern points define this coordinate system:
* ![Image with axes drawn](tutorials/images/singlemarkersaxes.jpg)
* ![Image with axes drawn](tutorials/images/singlemarkersaxes2.jpg)
*/
ARUCO_CCW_CENTER,
/** @brief The marker coordinate system is centered on the top-left corner of the marker.
Expand All @@ -36,7 +36,7 @@ enum PatternPositionType {
* (markerLength, markerLength, 0), (0, markerLength, 0).
*
* These pattern points define this coordinate system:
* ![Image with axes drawn](tutorials/images/singlemarkersaxes2.jpg)
* ![Image with axes drawn](tutorials/images/singlemarkersaxes.jpg)
*
* These pattern dots are convenient to use with a chessboard/ChArUco board.
*/
Expand Down
268 changes: 0 additions & 268 deletions modules/aruco/samples/aruco_dict_utils.cpp

This file was deleted.

Loading