]> AND Private Git Repository - these_gilles.git/blob - quality_RGB.m
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
relecture vlad de 0 a 70
[these_gilles.git] / quality_RGB.m
1 function [ psnrtab, sfftab ] = quality_RGB( repref, rep, suffixe, deb, fin, W )
2 %UNTITLED3 Summary of this function goes here
3 %   Detailed explanation goes here
4
5 psnrtab=zeros(fin-deb+1,1);
6 sfftab=zeros(fin-deb+1,1);
7 for i=deb:fin
8     if i<10
9         avant=strcat('I0', int2str(i));
10     else
11         avant=strcat('I', int2str(i));
12     end
13        
14     reffile=strcat(repref,'/',avant, '.ppm');
15     candfile=strcat(rep,'/',avant, suffixe, '.ppm');
16     
17     psnrtab(i) = PSNRCal(reffile, candfile) ;
18     sfftab(i) = SFF(im2double(imread(reffile)), im2double(imread(candfile)), W);
19 end
20
21 end
22