how to convert the binarized image to the original gray image
2 views (last 30 days)
Show older comments
Khaing Zin Htwe
on 20 May 2016
Commented: Emerson Nithiyaraj
on 20 May 2019
Dear all, Hello good morning,
Could you please share your experience how to convert the binarized image to the original image with gray vlaues? THank all.
0 Comments
Accepted Answer
Walter Roberson
on 21 May 2016
You probably want
maskedImage = binaryImage .* originalImage;
3 Comments
Image Analyst
on 22 May 2016
For the future, this operation is called "masking", not "converting" of a binary image to a gray scale image. If original image is an integer, you need to cast binary image to the same class of integer, like
maskedImage = uint8(binaryImage) .* originalImage;
Or initialize and then use the binary image as indexes:
maskedImage = originalImage; % Initialize
maskedImage(~binaryImage) = 0; % Mask
More Answers (1)
Image Analyst
on 21 May 2016
Try this:
binaryImage = grayImage;
Your (formerly) binary image will now be converted into the same array as your gray scale image, so it's now a gray scale image, not a binary image anymore.
See Also
Categories
Find more on Modify Image Colors in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!