MATLAB: How can convert matrix of image from douple to single

digital image processingimage processingimage segmentation

i have matrix 3D of image need to convert frome douple to singlr

Best Answer

If imageDouble is the original image, use
imageSingle = single(imageDouble);
Related Question