mirror of
https://github.com/opencv/opencv_contrib.git
synced 2025-10-16 05:17:39 +08:00
Merge remote-tracking branch 'upstream/3.4' into merge-3.4
This commit is contained in:
@@ -156,7 +156,7 @@ In this case the margin is 10.
|
|||||||
|
|
||||||
The output image will be something like this:
|
The output image will be something like this:
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
A full working example of board creation is included in the `create_board.cpp` inside the `modules/aruco/samples/`.
|
A full working example of board creation is included in the `create_board.cpp` inside the `modules/aruco/samples/`.
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
@@ -88,7 +88,7 @@ In this case the margin is 10.
|
|||||||
|
|
||||||
The output image will be something like this:
|
The output image will be something like this:
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
A full working example is included in the `create_board_charuco.cpp` inside the `modules/aruco/samples/`.
|
A full working example is included in the `create_board_charuco.cpp` inside the `modules/aruco/samples/`.
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
@@ -30,7 +30,7 @@ values of the two squares with the picker tool.
|
|||||||
|
|
||||||
In this image I've cropped a little piece of the A and B squares and I've put them side-by-side.
|
In this image I've cropped a little piece of the A and B squares and I've put them side-by-side.
|
||||||
It should be quite evident they have the same luminance.
|
It should be quite evident they have the same luminance.
|
||||||

|

|
||||||
|
|
||||||
It's worth to know that this illusion works because the checkerboard image, as you may see it
|
It's worth to know that this illusion works because the checkerboard image, as you may see it
|
||||||
on your laptop, casts on your retina with dimensions that cause the retina local adaptation to take
|
on your laptop, casts on your retina with dimensions that cause the retina local adaptation to take
|
||||||
|
@@ -5613,8 +5613,8 @@ int EdgeDrawingImpl::inverse(double** TB, double** InvB, int N)
|
|||||||
void EdgeDrawingImpl::DeallocateMatrix(double** m, int noRows)
|
void EdgeDrawingImpl::DeallocateMatrix(double** m, int noRows)
|
||||||
{
|
{
|
||||||
for (int i = 0; i < noRows; i++)
|
for (int i = 0; i < noRows; i++)
|
||||||
delete m[i];
|
delete[] m[i];
|
||||||
delete m;
|
delete[] m;
|
||||||
}
|
}
|
||||||
|
|
||||||
void EdgeDrawingImpl::AperB_T(double** A_, double** B_, double** _res, int _righA, int _colA, int _righB, int _colB)
|
void EdgeDrawingImpl::AperB_T(double** A_, double** B_, double** _res, int _righA, int _colA, int _righB, int _colB)
|
||||||
|
Reference in New Issue
Block a user