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.
でピクセルの4つの隣接ピクセルを選択するにはどうすればよいmatlabですか?
matlab
ありがとう。
画像がimgで、現在のピクセル インデックスがiおよびjの場合、4 つの近傍は次のようになります。
img
i
j
img(i-1,j); img(i+1,j); img(i,j-1); img(i,j+1);