define boundaries and merge two objects
1 回表示 (過去 30 日間)
古いコメントを表示
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1149145/image.jpeg)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1149150/image.jpeg)
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?
0 件のコメント
採用された回答
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
2022 年 10 月 8 日
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!