Use imwrite to save tif images

82 ビュー (過去 30 日間)
Angela
Angela 2018 年 10 月 2 日
コメント済み: Puja Bharti 2018 年 10 月 5 日
I want to save a 3 color image as a lossless tif image. When i tried
imwrite(image,'test.tif','Mode','lossless')
I got an error message. Is there any way to save an image as a lossless tif? Thank you.

採用された回答

Guillaume
Guillaume 2018 年 10 月 5 日
編集済み: Guillaume 2018 年 10 月 5 日
"I got an error message" is a useless statement if you don't give us said error message. Thankfully, you've finally given it in a comment to Image Analyst's answer.
'Mode' is indeed not a valid option for TIF. Probably, the nearest available option would be Compression. However, note that the default compression method for colour images is 'packbits' which is lossless anyway. In fact, the only compression mode that is lossy is 'jpeg' which you'd have to set explicitly. So really, for lossless TIF,
imwrite(im2uint16(NewImage), 'test.tif')
is all that is needed.
  1 件のコメント
Angela
Angela 2018 年 10 月 5 日
Thank you Guillaume.

サインインしてコメントする。

その他の回答 (1 件)

Image Analyst
Image Analyst 2018 年 10 月 3 日
Yes. Do NOT call your image variable image since that is the name of a built in function. Try
imwrite(yourImage,'test.tif');
  6 件のコメント
Guillaume
Guillaume 2018 年 10 月 5 日
@Puja Bharti, are your comments in any way related to Angela question or did you just try to highjack somebody's else question? If so, then please start your own question.
Puja Bharti
Puja Bharti 2018 年 10 月 5 日
Sorry Guillaume and Angela. I had no such intensions. I just want the solution to my problem. Please help me at:
https://in.mathworks.com/matlabcentral/answers/422212-enhanced-image-is-not-getting-saved-as-it-values-get-changed-after-imwrite

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeImage Filtering and Enhancement についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by