view util/sparco utils/scalarToRGB.m @ 119:5356a6e13a25 sup_163_ssim_IMG_T_dependeny

New version of ssim index - IMP toolbox dependencies removed
author Ivan Damnjanovic lnx <ivan.damnjanovic@eecs.qmul.ac.uk>
date Tue, 24 May 2011 16:16:36 +0100
parents 62f20b91d870
children
line wrap: on
line source
function s = scalarToRGB(x,colors)
% input values are assumed to lie between 0 and 1

%   Copyright 2008, Ewout van den Berg and Michael P. Friedlander
%   http://www.cs.ubc.ca/labs/scl/sparco
%   $Id: scalarToRGB.m 1040 2008-06-26 20:29:02Z ewout78 $

l  = size(colors,1);
m  = size(x,1);
n  = size(x,2);
s  = zeros(m,n,3);

for i=1:m
  for j=1:n
     idx = max(1,min(l,1+floor((l-1) * x(i,j))));
     s(i,j,:) = colors(idx,:);
  end
end