Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ピクセルに関して画像サイズを大きくしたい、つまり、サイズが 150x225 の画像を 250x250 に変更する必要があります。Matlabでそれを行うにはどうすればよいですか?
matlab 関数を使用できますimresize。
imresize
たとえば、サイズ (150x225) の初期画像はB = imresize(A, [250 250]); どこにありますか。A
B = imresize(A, [250 250]);
A