Image / Matrix binning with sum of each bin

47 visualizaciones (últimos 30 días)
omri r
omri r el 5 de En. de 2022
Editada: omri r el 6 de En. de 2022
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.

Respuesta aceptada

DGM
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)
A = 10×10
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
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)
B = 5×5
4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4
  6 comentarios
DGM
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
A = 6×6
1 1 3 3 5 5 1 1 3 3 5 5 2 2 4 4 8 8 2 2 4 4 8 8 3 3 6 6 9 9 3 3 6 6 9 9
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)
B = 3×3
4 12 20 8 16 32 12 24 36
That should be quite a bit faster than using cell operations, even if it's pretty opaque to read.
omri r
omri r el 6 de En. de 2022
Editada: omri r el 6 de En. de 2022
Thank you very much!
I found another way.
Seems even a bit faster for larege matrices (~2000x2000):
(BTW, that is matters in terms of performance single/multi line codes?)
A = 1:2100^2;
A = reshape(A,2100,[]);
binSize = 3;
% multi line code
tic
C = reshape(A,binSize,[]);
C = sum(C);
C = reshape(C,size(A,1) / binSize,[]);
C = C';
C = reshape(C,binSize,[]);
C = sum(C);
C = reshape(C,size(A,2) / binSize,[]);
C = C';
% combined line code
C = sum(reshape(A,binSize,[]));
C = reshape(C,size(A,1) / binSize,[])';
C = sum(reshape(C,binSize,[]));
C = reshape(C,size(A,2) / binSize,[])';

Iniciar sesión para comentar.

Más respuestas (0)

Productos


Versión

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by