how to open .bim image file

2 vues (au cours des 30 derniers jours)
nuclear medicine
nuclear medicine le 9 Juin 2022
Commenté : Ashish Uthama le 27 Mar 2023
want to read and comvert .bim image file to png
  2 commentaires
Ashish Uthama
Ashish Uthama le 27 Mar 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 le 27 Mar 2023

Connectez-vous pour commenter.

Réponses (1)

Chandrika
Chandrika le 13 Juin 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 commentaire
nuclear medicine
nuclear medicine le 23 Mar 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

Connectez-vous pour commenter.

Catégories

En savoir plus sur Introduction to Installation and Licensing dans Help Center et File Exchange

Tags

Produits


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by