how to open .bim image file

6 visualizaciones (últimos 30 días)
nuclear medicine
nuclear medicine el 9 de Jun. de 2022
Comentada: Ashish Uthama el 27 de Mzo. de 2023
want to read and comvert .bim image file to png
  2 comentarios
Ashish Uthama
Ashish Uthama el 27 de Mzo. de 2023
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.
Ashish Uthama
Ashish Uthama el 27 de Mzo. de 2023

Iniciar sesión para comentar.

Respuestas (1)

Chandrika
Chandrika el 13 de Jun. de 2022
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 comentario
nuclear medicine
nuclear medicine el 23 de Mzo. de 2023
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

Iniciar sesión para comentar.

Etiquetas

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by