define boundaries and merge two objects

조회 수: 4 (최근 30일)
Walaa
Walaa 2022년 10월 8일
댓글: Image Analyst 2022년 10월 8일
I have these both segemented objects and I want to define their boundaries by drawing a perfect circle after that I want to merge these objects in one image . could you help?

채택된 답변

Image Analyst
Image Analyst 2022년 10월 8일
Assuming they both have the same number of rows and columns, you can do
maskBoth = mask1 | mask2; % Merge -- make union of the two binary images.
  댓글 수: 1
Image Analyst
Image Analyst 2022년 10월 8일
You can use viscircles to draw perfect circles into the overlay above the image.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by