This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
clear all; | |
close all; | |
clc; | |
format short | |
%% DLT | |
% Loading 3D World Points and 2D projected points (Ground Truth Points for projection)coming from previous lab | |
World_PTS = load('pts3D.txt'); | |
GT_PTS = load('PTS_.txt'); | |
total_point_count = 6; % We will use 6 points to do the DLT Calibrations | |
DLT(World_PTS, GT_PTS,total_point_count); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment