How can i convert the chest x-ray images from JSRT database into png format?

1 vue (au cours des 30 derniers jours)
Rida Memon
Rida Memon le 27 Jan 2020
How can i convert the chest x-ray images from JSRT database into png format?
Link for the database: http://db.jsrt.or.jp/eng.php
  3 commentaires
Rida Memon
Rida Memon le 27 Jan 2020
fid = fopen('JPCLN001.img','r','b');
oneSlice = fread(fid, [2048 2048], '*uint16','b');
img = mat2gray(oneSlice, [0,4096]);
imshow(img);
fclose(fid);
I have this code for conversion. But i want to permenantly save this image. Is that possible?
Walter Roberson
Walter Roberson le 27 Jan 2020
Modifié(e) : Walter Roberson le 27 Jan 2020
im8 = im2uint8(img);
imwrite(im8, 'OutputFileName.png')

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Biomedical Imaging dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by