Skip to content

Instantly share code, notes, and snippets.

@YCAyca
Created September 28, 2021 09:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save YCAyca/9aa8e1581e9720d9119b178afdfed17e to your computer and use it in GitHub Desktop.
Save YCAyca/9aa8e1581e9720d9119b178afdfed17e to your computer and use it in GitHub Desktop.
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