We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5da0137 commit 1572beeCopy full SHA for 1572bee
eightPoint.m
@@ -17,8 +17,8 @@
17
% eMatrix - the computed essential matrix
18
19
% Author: Frederic Zhang
20
-% Last modified: 18 June 2017
21
-% Version: 2.2
+% Last modified: 5 Jun. 2018
+% Version: 3.0
22
% -------------------------------------------------------------------------
23
24
% 8-point algorithm
@@ -36,8 +36,8 @@
36
% Arrange data
37
p1 = transpose([matchedPoints1(1: 8, :), ones(8, 1)]);
38
p2 = transpose([matchedPoints2(1: 8, :), ones(8, 1)]);
39
-norm1 = getNormalizationMatrix(p1);
40
-norm2 = getNormalizationMatrix(p2);
+norm1 = getNormMat2d(p1);
+norm2 = getNormMat2d(p2);
41
42
% Normalisation
43
p1 = norm1 * p1;
0 commit comments