How to keep the pixel values same for writing an image

조회 수: 6 (최근 30일)
Shamim
Shamim 2017년 12월 17일
답변: rcjr15 2018년 2월 19일
In attach picture the pixel matrix D is written as an image but if i read the same image from the written one I found that all pixel values except zero are converted to 255. Why this is happening? Is there any solution to keep the pixel values same after writing it?

채택된 답변

Walter Roberson
Walter Roberson 2017년 12월 17일
imwrite(uint8(D), 'd.png')

추가 답변 (1개)

rcjr15
rcjr15 2018년 2월 19일
Hi Shamim, Try using this: imwrite(YourImage, 'YourFile.jpg', 'mode', 'lossless') if you want to write it as JPEG file.
Or you can use PNG or TIFF extension which are lossless compression standards.

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by