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
1 次查看(过去 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
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!
回答(1 个)
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
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Histograms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!