Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 34951d18 authored by DIB Elian's avatar DIB Elian
Browse files

Added disparity parameters as output

parent 5743baad
No related branches found
No related tags found
No related merge requests found
function [SRXq,SRYq,SRDisp] = getQueryCoordsAffine(LFRef,LFDisp)
function [SRXq,SRYq,SRDisp,dispParams] = getQueryCoordsAffine(LFRef,LFDisp)
%GETQUERYCOORDSAFFINE Summary of this function goes here
% Detailed explanation goes here
%%
......@@ -74,6 +74,12 @@ for lab = 1:numLab
SRDisp{lab} = ones(size(SRXq{lab})).*D_;
end
p00 = cellfun(@(x) x.p00,s);
p01 = cellfun(@(x) x.p01,s);
p10 = cellfun(@(x) x.p10,s);
dispParams = [p00;p10;p01];
function progress(msg,varargin)
persistent sz
if isempty(sz); sz = 0; end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment