how to reconstruct an image?
Show older comments
hi.. can you help me? I've these code, example :
I=imread('filename');
image_top_left = I(1:256,1:256);
image_top_right = I(1:256,257:512);
image_bottom_left = I(257:512,1:256);
image_bottom_right = I(257:512,257:512);
then i'll change its position, example :
image_top_left=image_bottom_left;
image_top_right=image_bottom_right;
after all, i want it'll be show as one image again...how can i get it? thank you
Accepted Answer
More Answers (1)
Matt J
on 4 May 2013
You would do things like this:
I(1:256,257:512)=image_bottom_right; %image_top_right=image_bottom_right
Categories
Find more on Read, Write, and Modify Image in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!