필터 지우기
필터 지우기

How can I convert a lena.bmp image to lena.tif?

조회 수: 15 (최근 30일)
tina jain
tina jain 2016년 5월 7일
답변: Image Analyst 2016년 5월 7일
Is there any function in MATLAB which convert the image type? If i rename the name of the image manually from "lena.bmp" to "lena.tif" than will it work?
  댓글 수: 1
Stephen23
Stephen23 2016년 5월 7일
The file type is not determined by the file extension (in fact on linux files are not even required to have a file extension). You cannot just change an image file format by changing its file extension. You need to use MATLAB or any reputable image viewer/editor to convert from one format to another.

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

답변 (3개)

CS Researcher
CS Researcher 2016년 5월 7일
Read the image in
I = imread(name.bmp);
h = imshow(I);
saveas(h,name,'tif');
In you case name is 'lena'. Hope this helps!

Stephen23
Stephen23 2016년 5월 7일
The file type is not determined by the file extension (in fact on linux files are not even required to have a file extension). You cannot just change an image file format by changing its file extension. You can use MATLAB:
Or it would likely be much easier to simply use any reputable image viewer/editor, such as MS Paint, or Irfanview.

Image Analyst
Image Analyst 2016년 5월 7일
Use strrep (or fileparts), and imread() and imwrite(). Simply change the filename.
inputFileName = 'C:/whatever folder/lena.bmp'
outputFileName = strrep(inputFileName, '.bmp', '.tif')
theImage = imread(inputFileName);
imwrite(theImage, outputFileName);

카테고리

Help CenterFile Exchange에서 Import, Export, and Conversion에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by