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.
2つの画像があり、その画像を分割する必要があります。手動エラーのため、画像の領域は同じではありません。ピクセルごとに正確に除算を実行するために、matlabを使用して自動的に修正するにはどうすればよいですか?
A両方の画像ファイルを変数、たとえばとに読み込んだら、実際に必要なサイズの画像と変更したいサイズの画像が含まれているとB仮定すると、次を使用できます。AB
A
B
[numrows numcols] = size(A); A = imresize(A, [numrows numcols]);