How to combine blocks of image into single image?
1 回表示 (過去 30 日間)
古いコメントを表示
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 件のコメント
Jan
2015 年 5 月 30 日
What is the connection between the question and the tags "coder" and "compiler"?
回答 (1 件)
Image Analyst
2015 年 5 月 30 日
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 件のコメント
Image Analyst
2018 年 1 月 28 日
Please don't say you have a hundred thousand separately named variables!
shital shinde
2020 年 2 月 14 日
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
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!