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.
画像全体の線形プロファイルを取得したいと考えています。画像Imgは 800x800 の double 配列です (一部の要素は NaN です)。パスをインタラクティブに使用improfileおよび定義すると、必要なプロファイルが得られます。
Img
improfile
私が書くとき:
C=improfile(Img, [1 1], [700 700]);
C には NaN 要素が 1 つしか含まれていません。
誰かが助けることができますか?
Matlab は行列を 0 ではなく 1 でインデックス付けするため、入力座標は無効です。
次のようなことを試してください:
C = improfile(Img, [1 800], [1 800]);