How to combine blocks of image into single image?

3 vues (au cours des 30 derniers jours)
Anushka
Anushka le 30 Mai 2015
Commenté : shital shinde le 14 Fév 2020
I have divided an image of size 256*256 into blocks of size 32*32 and changed the pixel values.Now I want to join this blocks with changed pixel value into one image.
  2 commentaires
Walter Roberson
Walter Roberson le 30 Mai 2015
How did you store them?
Jan
Jan le 30 Mai 2015
What is the connection between the question and the tags "coder" and "compiler"?

Connectez-vous pour commenter.

Réponses (1)

Image Analyst
Image Analyst le 30 Mai 2015
Just use indexing to assign them, or else stitch them together:
wideImage1 = [image1, image2, image3, ..... image32];
tallImage = [wideImage1; wideImage2, ..... wideImage32];
I don't know what form your individual images are stored in so I can't do more without guessing.
  4 commentaires
Image Analyst
Image Analyst le 28 Jan 2018
Please don't say you have a hundred thousand separately named variables!
shital shinde
shital shinde le 14 Fév 2020
any body please tell me or give the code that show how to divide image into multiple blocks and then merge them to get original image.
thank you

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by