필터 지우기
필터 지우기

Image zero Padding row, column

조회 수: 2 (최근 30일)
MD RESHAD UL HOQUE
MD RESHAD UL HOQUE 2017년 11월 9일
답변: KSSV 2017년 11월 9일
I have an image[1102 x 1290]. But I need to resize this image so that it will be [1108 x 1300] in shape. How can I do that with zero padding?

채택된 답변

KSSV
KSSV 2017년 11월 9일
I = rand(1102,1290) ;
iwant = zeros(1108,1300) ;
iwant(1:1102,1:1290) = I ;

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by