Export image from image segmenter and maintain the original image
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hazwani Mohmad Ramli
el 16 de Dic. de 2020
Comentada: Hazwani Mohmad Ramli
el 18 de Dic. de 2020
I want to export this image from image segmenter to my computer while maintain the original image. what should I do?
0 comentarios
Respuestas (1)
Subhadeep Koley
el 16 de Dic. de 2020
1) Click on the "Export" button and then click on "Export Images"
2) Save the Final Segmentation mask with the name BW, click on "OK"
3) Go to MATLAB command window and execute
overlayedImg = imoverlay(originalImg, BW); % Here originalImg contains your original image data
4) Write the overlayedImg to your computer using
imwrite(overlayedImg, 'overlayedImage.png');
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!