Turki
Turki

Reputation: 71

Convert tiff to dicom using Matlab

I have a series of dicom images and did change the HUs in the images using MATLAB scripts, then I imported them in ImageJ for display. Then I realised I can modify the images using ImageJ gui (which much easier, just moving the mouse). However, when I saved the modified images in ImageJ, they were saved in tiff format. My question is that, is there a way to save images in imageJ as dicom format ? or is there away to convert tiff format to dicom using MATLAB ?

Any suggestion ?

Upvotes: 0

Views: 4063

Answers (2)

Jan Eglinger
Jan Eglinger

Reputation: 4090

The following plugins allow writing DICOM files directly from ImageJ:

Upvotes: 2

Damià Obrador
Damià Obrador

Reputation: 46

You can convert tiff format to dicom with dicomwrite:

dicomwrite( imread('input_image.tif'), 'output_image.dcm')

Upvotes: 3

Related Questions