view arrows/dsp/adct.m @ 61:eff6bddf82e3 tip

Finally implemented perceptual brightness thing.
author samer
date Sun, 11 Oct 2015 10:20:42 +0100
parents ae596261e75f
children
line wrap: on
line source
% adct - arrow for DCT
%
% adct :: M:natural -> arrow({[[N]]}, {[[M]]}, empty).
%
% Produces only the first M DCT coefficients
function o=adct(M)
	I=1:M;
	o=arrf(@mkdct,1,1);

	function f=mkdct(sizes_in)
		% take DCT size from size(1) of first input
		%W=row(dct(eye(sizes_in{1}(1))),M);
		f=@(x)row(dct(x),I);
	end
end