Filter löschen
Filter löschen

how to open .bim image file

3 Ansichten (letzte 30 Tage)
nuclear medicine
nuclear medicine am 9 Jun. 2022
Kommentiert: Ashish Uthama am 27 Mär. 2023
want to read and comvert .bim image file to png
  2 Kommentare
Ashish Uthama
Ashish Uthama am 27 Mär. 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 am 27 Mär. 2023

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Chandrika
Chandrika am 13 Jun. 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 Kommentar
nuclear medicine
nuclear medicine am 23 Mär. 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

Melden Sie sich an, um zu kommentieren.

Tags

Produkte


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by