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

2 次查看(过去 30 天)
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?

采纳的回答

DGM
DGM 2021-8-23
编辑:DGM 2021-8-23
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]);

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Convert Image Type 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by