How to insert a disc and centered around the dot?

1 回表示 (過去 30 日間)
Sara
Sara 2020 年 2 月 10 日
コメント済み: Sara 2020 年 2 月 10 日
Hi,
I have A = zeros(100,100) materix which I added a while pixel (dots) in this zeros materix randomly. I have also another disc materix as follows
disk = strel('disk', 10);
D = disk.Neighborhood;
what I want to do is insert the disc and centered around the pixel ( white pixel)

採用された回答

Walter Roberson
Walter Roberson 2020 年 2 月 10 日
A(appropriate_row:appropriate_row+99, appropriate_column:appropriate_column+99) = ...
A(appropriate_row:appropriate_row+99, appropriate_column:appropriate_column+99) | D;
  3 件のコメント
Walter Roberson
Walter Roberson 2020 年 2 月 10 日
The +99 should be +9
Protection needs to be added for the case that the location is near an edge.
Sara
Sara 2020 年 2 月 10 日
Thank you for your reply. I did fix this as you says. it should be less than the disc raduis which is 10 in my case.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeComputer Vision with Simulink についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by