how to write a headerless flat binary file into tiff using matlab
2 次查看(过去 30 天)
显示 更早的评论
I have header less flat binary files(they have no extension). I want to convert those into tiff. is it possible with MATLAB
0 个评论
采纳的回答
Image Analyst
2014-9-15
Yes. Use fread(), then use imwrite().
3 个评论
David Young
2014-9-17
You can use reshape(). Since the binary input is headerless, the image dimensions are not stored there, so you have to input them some other way.
Image Analyst
2014-9-17
fread() can give you a 2D matrix if the size is a 2D matrix. And no reshape is needed. For example:
oneSlice = fread(fileHandle, [rows, columns], '*uint8');
Read the documentation on sizeA in fread() again.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Processing Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!