define boundaries and merge two objects
2 次查看(过去 30 天)
显示 更早的评论
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!