define boundaries and merge two objects
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Walaa
el 8 de Oct. de 2022
Comentada: Image Analyst
el 8 de Oct. de 2022
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 comentarios
Respuesta aceptada
Image Analyst
el 8 de Oct. de 2022
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 comentario
Image Analyst
el 8 de Oct. de 2022
Más respuestas (0)
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!