Image zero Padding row, column
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
MD RESHAD UL HOQUE
am 9 Nov. 2017
Beantwortet: KSSV
am 9 Nov. 2017
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?
0 Kommentare
Akzeptierte Antwort
KSSV
am 9 Nov. 2017
I = rand(1102,1290) ;
iwant = zeros(1108,1300) ;
iwant(1:1102,1:1290) = I ;
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Image Segmentation and Analysis finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!