How to recombine a color image divided into blocks?
2 ビュー (過去 30 日間)
古いコメントを表示
Dear sir, i used the following code to divide a color image into 4 blocks:
img4x4 = mat2cell( org_img, size(org_img,1)/2 * ones(1,2), size(org_img,2)/2 * ones(1,2), size(org_img,3) );
Kindly tell m e how to reconstruct original image from the 4 different blocks?
0 件のコメント
回答 (1 件)
Walter Roberson
2015 年 12 月 1 日
img2x2 = mat2cell( org_img, size(org_img,1)/2 * ones(1,2), size(org_img,2)/2 * ones(1,2), size(org_img,3) );
reconstructed = cell2mat(img2x2);
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!