Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

how do i divide image into subblocks in 1:2:1 proportion like shown in the figure

1 visualización (últimos 30 días)
please help me with this

Respuestas (1)

Walter Roberson
Walter Roberson el 31 de En. de 2018
[r, c, p] = size(YourImage);
rq = floor(r/4); rh = floor(r/2); rq3 = r - rq - rh;
rparts = [rq rh rq3];
cq = floor(c/4); ch = floor(c/2); cq3 = c - cq - ch;
cparts = [cq ch cq3];
blocks = mat2cell(YourImage, rparts, cparts, p);
I do operations this way because of the possibility that the size is not exactly divisible by 4, and wanting to be sure that we do not get an off-by-one due to round-off.

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by