how to reconstruct original image from subimages?

3 views (last 30 days)
hi...
i have an image which is cropped into a number of subimages using the Boundingbox..the subimages are processed and saved...
i want to reconstruct the original image from these subimages... is there a way to do that?please help !!
i used 'regionprops' to get the boundingbox and other parameters.

Answers (1)

Image Analyst
Image Analyst on 22 Feb 2013
Stitch them together:
sideBySide = [imageLeft, imageRight];
topAndBottom = [imageTop; imageBottom];
Do as many times as necessary. You can put multiple images inside the brackets.
  5 Comments
Image Analyst
Image Analyst on 14 Feb 2019
blockproc() processes images one block at a time. It does not split images up into separate blocks - separate variables or image files. So you don't "reconstruct" images from 100x100 blocks after using blockproc because there are no 100x100 images to be had.
Ade Aulya
Ade Aulya on 14 Feb 2019
so, is it mean i can't stitch its or reconstruct its or put it back together, like the original images, those blocks / tiles anymore, sir ?
is there another way to put it back again ?

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!