zero pad to resize an image
古いコメントを表示
How to add zeros by comparing the file sizes of the two images?
Suppose the first image is 240x152 and the second image is 240x168
And i need to resize the first image using zeros to the same as the bigger one that is 240x168
so how is it possible to do the same?
回答 (2 件)
Himanshu tripathi
2019 年 6 月 28 日
Try this
I = rand(240,152) ; // first image
iwant = zeros(240,168) ;
iwant(1:240,1:152) = I ;
3 件のコメント
Pravita Lekshmanan
2019 年 6 月 28 日
Himanshu tripathi
2019 年 6 月 28 日
Are you looking for this?
zero_matrix = zeros(240,168-152);
I = [zero_matrix,I]
Pravita Lekshmanan
2019 年 6 月 28 日
AISWARYA SUBRAMANIAN
2019 年 6 月 28 日
編集済み: AISWARYA SUBRAMANIAN
2019 年 6 月 28 日
0 投票
I would suggest you to look through the following link:
カテゴリ
ヘルプ センター および File Exchange で Startup and Shutdown についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!