- https://in.mathworks.com/help/matlab/import_export/exporting-to-images.html#br_c_iz-1 (Exporting to Images)
- https://download.osgeo.org/libtiff/doc/TIFF6.pdf (TIFF DOC)
Best image format for further analysis
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi all,
This may be a no-brainer for some but I need your help.
I generate complex valued images and would like to save of the imaginary part of the images as separate images.
For example,
-----------------------------------------------------------------------------------
A = 1024x1024 complex valued image
B = angle (A);
I save B in matlab format then generate an image which I typically save as TIFF.
figure;imagesc(B);axis equal off;colormap gray;
saveas(gcf,strcat('B_phase',num2str(i),'.tif'));
-----------------------------------------------------------------------------------
Do I lose any information by saving these images in tif format?
Furthermore, I generate images that are double precision initially and save them as tif.
Is there a loss of information and what is the best format to save these images in?
Thank you for your assistance,
Arthur
댓글 수: 0
채택된 답변
Prabhan Purwar
2020년 3월 26일
Hi,
TIFF is currently the best format to save images with least loss (best of my knowledge).
For further understanding kindly have a look at the following documents:
Hope it helps!!
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Import, Export, and Conversion에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!