How to copy one image to another (blank) pixel by pixel?
이전 댓글 표시
Xc = imread('IM1.jpg');
tam = size(Xc)
sizex = tam(1);
sizey = tam(2);
blank = ones(sizex,sizey,3);
for i=1:sizex
for j=1:sizey
for d=1:3
blank(i,j,d)=Xc(i,j,d);
end
end
end
imshow(blank);
why isn't it working? any ideas?
채택된 답변
추가 답변 (1개)
Jonathan Sullivan
2013년 6월 26일
You should try this:
Xc = imread('IM1.jpg');
blank = Xc;
imshow(blank);
카테고리
도움말 센터 및 File Exchange에서 Image Category Classification에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!