Skip to content
This repository was archived by the owner on May 18, 2022. It is now read-only.

Supporting Routine Docs

Allison Penko edited this page Mar 28, 2017 · 3 revisions

makeLCPFromCaltech.m

Written by: Allison Penko 28 mar 17

Loads the Calib_Results.mat file generated from the Caltech toolbox and saves the distortion coefficients to a structure named lcp

Can be loaded and used instead of

meta.globals.lcp = makeLCPP3(inputs.stationStr,NU,NV);

in sampleAerielleVideoDemo.m with the commands:

load(inputs.lcp_file); % make generic lcp input (name in demoInputFile)

meta.globals.lcp = lcp;

with the file name being set in demoInputFile:

inputs.lcp_file=[pwd, filesep,'lpc.mat'];

Clone this wiki locally