필터 지우기
필터 지우기

How to transform matrix into image without data loss?

조회 수: 2 (최근 30일)
Kibong Kang
Kibong Kang 2019년 5월 13일
답변: Jyotish Kumar 2019년 5월 21일
I want to save a matrix information using a image.
First, I transformed a matrix A=[0,255;255,0] into a image "1.jpg" using function "imwrite".
Second, I transformed the image "1.jpg" into "A_new" matrix using function "imread".
However, "A_new" matrix = [7,241;244,13] is not the same as "A" matrix.
How can I save and load the matrix information using the image without data loss?

답변 (2개)

Prathamesh Degwekar
Prathamesh Degwekar 2019년 5월 21일
Hi,
As far as I understand it, when imwrite converts your data array into an image, it has to use the "jpg" standard which changes the data of the array for various reasons like compression etc. Therefore when you convert the image from the matrix A into the image, that is when the data is changing into [7, 241; 244, 13].
Therefore if you want no data loss, maybe look at storing it as a bitmap image (bmp) or a raw image.
Hope this helps.
Cheers.

Jyotish Kumar
Jyotish Kumar 2019년 5월 21일
JPG format compresses the file while conversion, so it changes the value. Try with another Image format like PNG which is more intact while conversion.

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by