Image / Matrix binning with sum of each bin
88 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi,
I'm trying to downsample an image/matrix by binning.
What I want to achieve is that each output pixel would be the sum of it's parts.
From what I understood, using the imresize would only be possible with some kind of weighted average and not summing.
Is there a bulit in function that would allow for binning with summing?
If not, what would be the best approach to do that?
Thanks!
O.
0 comentarios
Respuesta aceptada
DGM
el 5 de En. de 2022
Avoiding any sort of weighting suggests to me that this is strictly integer-factor downsampling. If that's the case, then one way might be something like this.
blocksize = [2 2]; % downsampling ratio [h w]
A = ones(10) % test array (geometry must be integer-divisible by blocksize)
B = mat2cell(A,repmat(blocksize(1),[1 size(A,1)/blocksize(1)]),...
repmat(blocksize(2),[1 size(A,2)/blocksize(2)]));
B = cellfun(@(x) sum(x,'all'),B)
6 comentarios
DGM
el 6 de En. de 2022
Editada: DGM
el 6 de En. de 2022
It always takes me forever to make reshape do what I want, but this might work.
A = kron([1 3 5; 2 4 8; 3 6 9],ones(2)) % makes it easy to follow the numbers
s = size(A);
bs = [2 2]; % blocksize
B = reshape(A.',bs(1),s(1)/bs(1),[]);
B = reshape(permute(B,[1 3 2]),bs(1),bs(2),[]);
B = sum(sum(B,1),2);
B = reshape(B,s./bs)
That should be quite a bit faster than using cell operations, even if it's pretty opaque to read.
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!