images !
18 次查看(过去 30 天)
显示 更早的评论
[EDIT: Thu May 12 22:58:48 UTC 2011 Duplicate Removed - MKF]
i am working on a project named water marking using super resolution .. i want to ask a small question .. how can i take the photo size 256*256 (host image) .. resize it to make it 64*48 then put the resized image down the host image using NPT (logo image) .. so finally the host image will be resized to 256*244 and down it the logo image will be 64*48 ! please help me with its code !
采纳的回答
Sean de Wolski
2011-5-4
I = imread('cameraman.tif'); %sample
I(end-63:end,1:48) = imresize(I,[64 48]); %engine
imtool(I) %view
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!