how to open .bim image file

10 次查看(过去 30 天)
nuclear medicine
nuclear medicine 2022-6-9
want to read and comvert .bim image file to png
  2 个评论
Ashish Uthama
Ashish Uthama 2023-3-27
What is a '.bim' image?
Could you please add more information? e.g A link to the format specificationw would be ideal, if not - things like where you got thie file from (A site/A device?), what its expected to contain, and what other software can create/read this format might help net a helpful answer.

请先登录,再进行评论。

回答(1 个)

Chandrika
Chandrika 2022-6-13
As per my understanding, you want to read and convert a blocked image into png file format.
In MATLAB, you can do this using the 'images.blocked.PNGBlocks' adapter. It creates a 'PNGBlocks' object which reads and writes 2-D blocked image data in the PNG format.
If 'bim' is your blocked image, first write it to files using 'images.blocked.PNGBlocks' as the adapter.
wa = images.blocked.PNGBlocks();
write(bim, "dirOfPNGs", "Adapter", wa);
Here, 'dirOfPNGs' corresponds to the folder of images created. Next, to create a blocked image file having Blockformat as 'png', refer to the following command:
bpng = blockedImage("dirOfPNGs");
disp(bpng.Adapter)
For a better understanding, please follow the documentation on PNGBlocks https://www.mathworks.com/help/images/ref/images.blocked.pngblocks.html
Hope it helps!
  1 个评论
nuclear medicine
nuclear medicine 2023-3-23
first how to read .bim format image in matlab
a=imread("result3.int")
Error using imread>get_format_info
Unable to determine the file format.
Error in imread (line 395)
fmt_s = get_format_info(fullname);
this is error i am getting

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息

标签

产品


版本

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by