Skip to content

Commit 1572bee

Browse files
committed
modified function introduction
1 parent 5da0137 commit 1572bee

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

eightPoint.m

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
% eMatrix - the computed essential matrix
1818

1919
% Author: Frederic Zhang
20-
% Last modified: 18 June 2017
21-
% Version: 2.2
20+
% Last modified: 5 Jun. 2018
21+
% Version: 3.0
2222
% -------------------------------------------------------------------------
2323

2424
% 8-point algorithm
@@ -36,8 +36,8 @@
3636
% Arrange data
3737
p1 = transpose([matchedPoints1(1: 8, :), ones(8, 1)]);
3838
p2 = transpose([matchedPoints2(1: 8, :), ones(8, 1)]);
39-
norm1 = getNormalizationMatrix(p1);
40-
norm2 = getNormalizationMatrix(p2);
39+
norm1 = getNormMat2d(p1);
40+
norm2 = getNormMat2d(p2);
4141

4242
% Normalisation
4343
p1 = norm1 * p1;

0 commit comments

Comments
 (0)