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 corr2) を使用してそれらを比較したいのですが、最大偏差測定はどのように行うのですか?
お願い助けて
一方が他方の用途の縮小版であるかどうかは、次のように異なります。
B = imresize(A, [numrows numcols])
したがって、それらは同じサイズです。
一方が他方よりも大きい場合は、画像をパディングします。
B = padarray(A, padsize)
その後、機能を使用できるようになります。