How to convert binartized image back to original image

조회 수: 6 (최근 30일)
i have binarized the image using the following code.
orgImage = imread('coins.png');
binImage = imbinarize(orgImage);
How to get back my orgImage from binimage?

채택된 답변

Image Analyst
Image Analyst 2021년 5월 23일
What do you mean by "get back"? You still have it. Just because you passed it in to imbinarize(), that did not change or delete the original image. It is still there in your program (the workspace of your script or function).
If you somehow manually deleted it, then you cannot recover the original image because lots of gray scale images could give rise to the same binary image.
  댓글 수: 3
Image Analyst
Image Analyst 2021년 5월 24일
It is not possible. For example, you could multiply the original image by 2 and imbinarize would give you the same binary image. Therefore to "reconstruct" the original gray scale image, how would it know to give you the original image, or the one that had values twice as big? It could not know which to give you.
Saravanakumar Chandrasekaran
Saravanakumar Chandrasekaran 2021년 5월 28일
Thank you image analyst.. i got the concept

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by