Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
e1378aad
Commit
e1378aad
authored
Mar 27, 2012
by
Ilya Lysenkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a check that Q reprojects to the same 3D points as reconstructed by triangulation (#1575)
parent
bc7b517e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
47 additions
and
0 deletions
+47
-0
test_cameracalibration.cpp
modules/calib3d/test/test_cameracalibration.cpp
+47
-0
No files found.
modules/calib3d/test/test_cameracalibration.cpp
View file @
e1378aad
...
@@ -1496,6 +1496,53 @@ void CV_StereoCalibrationTest::run( int )
...
@@ -1496,6 +1496,53 @@ void CV_StereoCalibrationTest::run( int )
ts
->
set_failed_test_info
(
cvtest
::
TS
::
FAIL_INVALID_OUTPUT
);
ts
->
set_failed_test_info
(
cvtest
::
TS
::
FAIL_INVALID_OUTPUT
);
}
}
//check that Q reprojects the same points as reconstructed by triangulation
const
float
minCoord
=
-
300.0
f
;
const
float
maxCoord
=
300.0
f
;
const
float
minDisparity
=
0.1
f
;
const
float
maxDisparity
=
600.0
f
;
const
int
pointsCount
=
500
;
const
float
requiredAccuracy
=
1e-3
;
RNG
&
rng
=
ts
->
get_rng
();
Mat
projectedPoints_1
(
2
,
pointsCount
,
CV_32FC1
);
Mat
projectedPoints_2
(
2
,
pointsCount
,
CV_32FC1
);
Mat
disparities
(
1
,
pointsCount
,
CV_32FC1
);
rng
.
fill
(
projectedPoints_1
,
RNG
::
UNIFORM
,
minCoord
,
maxCoord
);
rng
.
fill
(
disparities
,
RNG
::
UNIFORM
,
minDisparity
,
maxDisparity
);
projectedPoints_2
.
row
(
0
)
=
projectedPoints_1
.
row
(
0
)
-
disparities
;
Mat
ys_2
=
projectedPoints_2
.
row
(
1
);
projectedPoints_1
.
row
(
1
).
copyTo
(
ys_2
);
const
int
dimension
=
4
;
Mat
points4d
(
dimension
,
pointsCount
,
CV_32FC1
);
CvMat
cvPoints4d
=
points4d
;
CvMat
cvP1
=
P1
;
CvMat
cvP2
=
P2
;
CvMat
cvPoints1
=
projectedPoints_1
;
CvMat
cvPoints2
=
projectedPoints_2
;
cvTriangulatePoints
(
&
cvP1
,
&
cvP2
,
&
cvPoints1
,
&
cvPoints2
,
&
cvPoints4d
);
Mat
homogeneousPoints4d
=
points4d
.
t
();
homogeneousPoints4d
=
homogeneousPoints4d
.
reshape
(
dimension
);
Mat
triangulatedPoints
;
convertPointsFromHomogeneous
(
homogeneousPoints4d
,
triangulatedPoints
);
Mat
sparsePoints
;
sparsePoints
.
push_back
(
projectedPoints_1
);
sparsePoints
.
push_back
(
disparities
);
sparsePoints
=
sparsePoints
.
t
();
sparsePoints
=
sparsePoints
.
reshape
(
3
);
Mat
reprojectedPoints
;
perspectiveTransform
(
sparsePoints
,
reprojectedPoints
,
Q
);
if
(
norm
(
triangulatedPoints
-
reprojectedPoints
)
/
sqrt
(
pointsCount
)
>
requiredAccuracy
)
{
ts
->
printf
(
cvtest
::
TS
::
LOG
,
"Points reprojected with a matrix Q and points reconstructed by triangulation are different, testcase %d
\n
"
,
testcase
);
ts
->
set_failed_test_info
(
cvtest
::
TS
::
FAIL_INVALID_OUTPUT
);
}
// rectifyUncalibrated
// rectifyUncalibrated
CV_Assert
(
imgpt1
.
size
()
==
imgpt2
.
size
()
);
CV_Assert
(
imgpt1
.
size
()
==
imgpt2
.
size
()
);
Mat
_imgpt1
(
total
,
1
,
CV_32FC2
),
_imgpt2
(
total
,
1
,
CV_32FC2
);
Mat
_imgpt1
(
total
,
1
,
CV_32FC2
),
_imgpt2
(
total
,
1
,
CV_32FC2
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment