I am trying to divide an image with plane background into sub images based upon their background and non background levels and i equalised sub images individually and combined all equalised sub images to get output .how can i do it? pls help me

3 ビュー (過去 30 日間)
/*i am getting wrong output because its PSNR value is less compare to equalised image of original input image i have attached file with code below . pls tell me where i did wrong in that code*/
  2 件のコメント
Image Analyst
Image Analyst 2014 年 3 月 31 日
Put comments in your code so we can figure out what it's doing. Looks like a random alphabet soup right now!
Mahesh Kumar
Mahesh Kumar 2014 年 4 月 18 日
編集済み: Mahesh Kumar 2014 年 4 月 18 日
i have divided an image into background and non background sub images and i have to combine those sub images.How can i combine those sub images? please any one can help me (all sub images are different dimensions)

サインインしてコメントする。

回答 (1 件)

Image Analyst
Image Analyst 2014 年 4 月 18 日
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!

Translated by