Effacer les filtres
Effacer les filtres

How do I fuse together 4 images (of the same dimensions) together in a checkerboard-like fashion?

2 vues (au cours des 30 derniers jours)
I am aware of the imfuse 'checkerboard' arguement, but imfuse can only take 2 images to checkerboard. I want to make something very similar but instead alternate rectangles by 4 images instead of 2. Is there an easy way to do this?

Réponse acceptée

DGM
DGM le 23 Août 2021
Modifié(e) : DGM le 23 Août 2021
Consider the example:
% generate test images
% this part uses MIMT from FEX, but it's otherwise not needed
inpict = imread('cameraman.tif'); % raw single-channel source
A = uint8(repmat(double(inpict),[1 1 3]).*permute([1 0.3 0.8],[1 3 2]));
B = imtweak(A,'lchab',[1 1 0.25]);
C = imtweak(A,'lchab',[1 1 0.50]);
D = imtweak(A,'lchab',[1 1 0.75]);
% make mask
sout = size(inpict);
squaresize = [32 32];
xx = mod(0:(sout(2)-1),squaresize(2)*2)<squaresize(2);
yy = mod(0:(sout(1)-1),squaresize(1)*2)<squaresize(1);
m = uint8(xx & yy');
% combine images
outpict = A.*m + B.*circshift(m,squaresize.*[1 0]) ...
+ C.*circshift(m,squaresize.*[0 1]) ...
+ D.*circshift(m,squaresize.*[1 1]);
  1 commentaire
Mia Grahn
Mia Grahn le 23 Août 2021
Thanks so much for your help! I ended up utilizing your second method, and it worked very well, thank you!

Connectez-vous pour commenter.

Plus de réponses (0)

Produits


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by