annotate Problems/private/countcover.m @ 10:207a6ae9a76f version1.0

(none)
author idamnjanovic
date Mon, 22 Mar 2010 15:06:25 +0000
parents
children 41a5a3c26961
rev   line source
idamnjanovic@10 1 function cnt = countcover(sz,blocksize,stepsize)
idamnjanovic@10 2 %COUNTCOVER Covering of signal samples by blocks
idamnjanovic@10 3 % CNT = COUNTCOVER(SZ,BLOCKSIZE,STEPSIZE) assumes a p-dimensional signal
idamnjanovic@10 4 % of size SZ=[N1 N2 ... Np] covered by (possibly overlapping) blocks of
idamnjanovic@10 5 % size BLOCKSIZE=[M1 M2 ... Mp]. The blocks start at position (1,1,..,1)
idamnjanovic@10 6 % and are shifted between them by steps of size STEPSIZE=[S1 S2 ... Sp].
idamnjanovic@10 7 % COUNTCOVER returns a matrix the same size as the signal, containing in
idamnjanovic@10 8 % each entry the number of blocks covering that sample.
idamnjanovic@10 9
idamnjanovic@10 10
idamnjanovic@10 11 % Ron Rubinstein
idamnjanovic@10 12 % Computer Science Department
idamnjanovic@10 13 % Technion, Haifa 32000 Israel
idamnjanovic@10 14 % ronrubin@cs
idamnjanovic@10 15 %
idamnjanovic@10 16 % August 2008
idamnjanovic@10 17
idamnjanovic@10 18
idamnjanovic@10 19 cnt = ones(sz);
idamnjanovic@10 20 for k = 1:length(sz)
idamnjanovic@10 21
idamnjanovic@10 22 % this code is modified from function NDGRID, so it computes one
idamnjanovic@10 23 % output argument of NDGRID at a time (to conserve memory)
idamnjanovic@10 24 ids = (1:sz(k))';
idamnjanovic@10 25 s = sz; s(k) = [];
idamnjanovic@10 26 ids = reshape(ids(:,ones(1,prod(s))),[length(ids) s]);
idamnjanovic@10 27 ids = permute(ids,[2:k 1 k+1:length(sz)]);
idamnjanovic@10 28
idamnjanovic@10 29 cnt = cnt .* max( min(floor((ids-1)/stepsize(k)),floor((sz(k)-blocksize(k))/stepsize(k))) - ...
idamnjanovic@10 30 max(ceil((ids-blocksize(k))/stepsize(k)),0) + 1 , 0 );
idamnjanovic@10 31 end