Mentions légales du service

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

Added projection function

parent 3f3f0334
No related branches found
No related tags found
No related merge requests found
function C = project(LFRef,LFB)
%PROJECT Summary of this function goes here
% Detailed explanation goes here
LFSize = size(LFRef);
ImgSize = LFSize(1:3);
ImgRes = LFSize(4:end);
LFRef = reshape(LFRef,prod(ImgSize),prod(ImgRes));
LFB = reshape(LFB ,prod(ImgSize),[]);
C = pinv(LFB)*LFRef;
end
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment