Export image from image segmenter and maintain the original image
8 次查看(过去 30 天)
显示 更早的评论
I want to export this image from image segmenter to my computer while maintain the original image. what should I do?
0 个评论
回答(1 个)
Subhadeep Koley
2020-12-16
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');
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!