How to insert a disc and centered around the dot?
조회 수: 1 (최근 30일)
이전 댓글 표시
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)
댓글 수: 0
채택된 답변
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
2020년 2월 10일
The +99 should be +9
Protection needs to be added for the case that the location is near an edge.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Computer Vision with Simulink에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!