Create Small Neighborhood of image
6 ビュー (過去 30 日間)
古いコメントを表示
Yohanes Setiawan
2020 年 2 月 3 日
コメント済み: Vinai Datta Thatiparthi
2020 年 2 月 21 日
I want to make small neighborhood of every pixel x. The small neighborhood has center x (pixel x be the center) in radius w.
Suppose w=5, so I have 5x5 small neighborhood with pixel x is the center of neighborhood.
How can I make it?
Thank you.
0 件のコメント
採用された回答
Vinai Datta Thatiparthi
2020 年 2 月 7 日
Hello Yohanes,
val = imread(' ... '); % Your input matrix/image
[xCoOrd, yCoOrd] = [ ... ] % Co-Ordinates of the center pixel
nbh = 5; % Neighborhood Size
For a square neighborhood, the variable roi will hold the intensity values of neighboring pixels.
limit = floor(nbh/2);
roi = val(xCoOrd-limit:xCoOrd+limit, yCoOrd-limit:yCoOrd+limit);
Additionally, if you want the positions of the neighbors in subscripts,
rowLen = [xCoOrd - limit: xCoOrd + limit]'; % Range of Rows
colLen = [yCoOrd - limit: yCoOrd + limit]; % Range of Columns
rowIdx = meshgrid(rowLen, 1:nbh)'; % All the X coordinates of neighbors
colIdx = meshgrid(colLen, 1:nbh); % All the Y coordinates of neighbors
Hope this helps!
4 件のコメント
Vinai Datta Thatiparthi
2020 年 2 月 21 日
Hey Yohanes,
Yes, this approach could work as well. Simple if-else statements checking for edge cases, and then assigning the neighbors (the ones that are beyond scope) NaN values.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!