1 2 3 4 5 6 7 8
function [output] = ind2gray(img,colormap) image = mattolist(img); a = opencv_ind2gray(image,colormap) d = size(a); for i=1:d output(:,:,i) = a(i); end endfunction