Saving 3D image after segmentation
I have a 3D image rock that I preformed segmentation on using this code
RA = imread(‘BB258_6_A_2um_1600x3_8bit.tif’);
threshold_calc = multithresh(RA, 2); %two is the number of thresholds so we are expecting to have 3 classes
image_segmented = imquantize(RA, threshold_calc);
imshow(image_segmented , []);
what I want to do is to save the 3D image as tif can you please help meI have a 3D image rock that I preformed segmentation on using this code
RA = imread(‘BB258_6_A_2um_1600x3_8bit.tif’);
threshold_calc = multithresh(RA, 2); %two is the number of thresholds so we are expecting to have 3 classes
image_segmented = imquantize(RA, threshold_calc);
imshow(image_segmented , []);
what I want to do is to save the 3D image as tif can you please help me I have a 3D image rock that I preformed segmentation on using this code
RA = imread(‘BB258_6_A_2um_1600x3_8bit.tif’);
threshold_calc = multithresh(RA, 2); %two is the number of thresholds so we are expecting to have 3 classes
image_segmented = imquantize(RA, threshold_calc);
imshow(image_segmented , []);
what I want to do is to save the 3D image as tif can you please help me save, image processing, image segmentation MATLAB Answers — New Questions