Borrar filtros
Borrar filtros

how to create and solve an image puzzle?

3 visualizaciones (últimos 30 días)
mohamad k
mohamad k el 29 de Jun. de 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

Respuestas (0)

Categorías

Más información sobre Just for fun en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by