Info

This question is closed. Reopen it to edit or answer.

how to combine sub images which are different dimensions ? pls help me

1 view (last 30 days)
i have divided an image into sub-images which are all different dimensions and i applied histogram equalization on those sub-images and i want to combine all equalized sub images.how can i do it?

Answers (1)

Image Analyst
Image Analyst on 18 Apr 2014
To stitch together left and right
image3 = [leftImage, rightImage]; % Use comma
To stitch together top and bottom;
image3 = [topImage; bottomImage]; % Use semicolon

Community Treasure Hunt

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

Start Hunting!