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.
一連の境界点を取得するためにピクセルの近傍を取得する必要があるため、私の計画は次のとおりです:-
MATLAB で隣接するピクセルを取得するにはどうすればよいですか?
常に変位ベクトルを定義できます
d = [ 1 0; -1 0; 1 1; 0 1; -1 1; 1 -1; 0 -1; -1 -1];
次に、位置の近傍loc =[i j]は
loc =[i j]
neighbors = d+repmat(loc,[8 1]);
希望はあなたに役立ちます...