Effacer les filtres
Effacer les filtres

how to create and solve an image puzzle?

2 vues (au cours des 30 derniers jours)
mohamad k
mohamad k le 29 Juin 2018
below code create a 3*3 image puzzle
%%load and crop image
imdata = imread('Cars HD (17).jpg');
new_dims = size(imdata) - rem(size(imdata), 3)
imdata = imdata(1:new_dims(1),1:new_dims(2), :);
%%Arrange into 3x3 cell
block_dims = new_dims./[3 3 1];
blocks = mat2cell(imdata, block_dims(1)*ones(3,1), block_dims(2)*ones(3,1), block_dims(3));
%%Rearrange randomly
blocks(1:9) = blocks(randperm(9));
%%Set one block to zero
blocks(ceil(9*rand(1))) = {zeros(block_dims, class(imdata))};
%%Return to image
puzzle = cell2mat(blocks);
%%Plot input and output
figure(1)
image(imdata)
figure(2)
image(puzzle)
but in addition i need to solve it through displacing blocks via clicking .could you help me how to displace two blocks via clicking on them? thanks

Réponses (0)

Catégories

En savoir plus sur Just for fun dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by