Patch image using mat2tiles and back to original image

조회 수: 2 (최근 30일)
dinial utami
dinial utami 2019년 7월 14일
편집: Image Analyst 2019년 7월 14일
I used the Mat2tiles function for patching the input image, but how do I combine the patch images back to the original image?
My code is like this.
close all;
clear all;
img = imread('rice.png');
patches = mat2tiles(img,[64,64]);
[m n] = size(patches);
i = m * n;
for j = 1:i
b = patches{j};
figure,imshow(patches{j});
file_B = strcat('F:\IMG',num2str(j),'.png');
imwrite(b,file_B);
end

답변 (0개)

카테고리

Help CenterFile Exchange에서 Polygons에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by