Skip to main content

This is a interfile to dicom converter created by Mateusz Kruk and Rafal Maselek.

Project description

j-pet-format-converter

version 2.0.2

Author: Rafał Masełek, Mateusz Kruk

Email: rafal.maselek@ncbj.gov.pl, mateusz64.kruk@student.uj.edu.pl

Modifications: Wojciech Krzemien

This script enables converting Interfile files to DICOM file format and importing meta-data from external file.

Installation:

Prerequisites:

  • Python (vers. 3.X.X recommended)
  • Numpy (python library)
  • pyDicom (python library)
  • dicomgenerator
  • setuptools >= 42
  • wheel (python library)

If you use Debian/Ubuntu/Linux Mint you can install python3 using 'apt-get install' command:

sudo apt-get install python3 

To install a package, type following:

pip install JPET-format-converter

To download the required modules, please run:

pip install -r Requirements.txt

Where "Requirements.txt" is in the repository.

Usage:

Package provides an API for converting Interfile file into Dicom files. Interfile is specified by two files:

  • header file (.hdr), that has CASToRv3.1 keyset
  • image file (specified in the header)

To convert a file/files using a command line, run the converter.py file, for example:

python3 converter.py header.hdr -o dicom.dcm

Using a --help flag will show all available commands.

Viewing the results:

There are many applications to visualize images in DICOM files. Personally, I recommend using Amide:

http://amide.sourceforge.net/

To open a .dcm file use the FILE menu:
File > Import File(specify) > DICOM 3.0 via (X)MedCon.

Amide uses a very useful tool called (X)MedCon, which can be downloaded from project's website or system's repositories, and it can be used alone to open DICOM files (but Amide provides better visualization).

To install (X)MedCon on Debian/Ubuntu/Linux Mint from repositories:

sudo apt-get install xmedcon

In order to open DICOM file from Terminal, use command:

xmedcon -f name_of_file.dcm

(X)MedCon has many other options and supported formats, see project's documentation for details.

binary2DICOM (deprecated)

This section talks about previous binary2DICOM module, made by Rafał Masałek. In this version it's still partially used by the module, but it's deprecated and does not work correctly. It can still convert raw binary data into a dicom file, but it doesn't have mandatory tags.

Usage example: This is an example command used to convert Gate output to DICOM format. File with simulated data is called in this example collimator_20.

python3 binary2DICOM.py --meta meta.txt collimator_20 collimator_20-conv.dcm 256 256 256 -bpp 4 -int -bo little

  • python3 binary2DICOM.py uses python3 to run the script
  • --meta meta.txt specifies that external file with meta data is used; it is called 'meta.txt' and is located in the same directory as the binary2DICOM.py script
  • collimator_20 name of the binary image file (input file for script)
  • collimator_20-conv.dcm name of the output file, note the '.dcm' extension
  • 256 256 256 X, Y and Z(no of frames) dimensions of encoded images (size in pixels)
  • -bpp 4 defines that 4 bytes were used to encode every pixel of input data (if you don't know encoding type, then ask the maker of the input file)
  • -int specifies that signed integers were used to encode input image (use '-uint' for unsigned integers)
  • -bo little specifies the byte order used to encode binary image; supported are little/big

Not all parameters are necessary, optional ones have default values. You can get more information by using --help flag.

Supported encodings:

The script is capable of reading binary images encoded using signed or unsigned integers, 1/2/4/8 bytes per pixel. In the future it might be developed to manage file encoded using floating point numbers.

External meta data file:

External file with metadata must have apropriate format (see meta.txt): You have to specify: group tag, element tag, VR and value. All these elements have to be separated using comma. String values need to be inside ' characters. Dot is used as a decimal delimiter. You can write comments using hash symbol (#) -- following characters are ignored.

Using binary2DICOM as module:

The script can be used as a python module in external program. To use it you have to import binary2DICOM to your script:

from binary2DICOM import convert

Then you have to call convert() method, providing special dictionary as an argument. The dictionary must have the following structure:

{'meta': (meta_data_file_path, STRING),
'in_file': (input_data_file_path, STRING),
'out_file': (output_data_file_path, STRING),
'width': (INT),
'height': (INT),
'frames': (INT),
'is_signed': (BOOL),
'byte_order': ('little' OR 'big'),
'bytes_per_pix': (INT),
'is_float': (BOOL)}

Key-value pairs in the dictionary correspond to input parameters. You code should look like this:

convert({'meta': 'meta.txt', 'width': 256, 'is_signed': True, 'in_file': 'collimator_20', 'byte_order': 'little', 'height': 256, 'frames': 256, 'bytes_per_pix': 4, 'out_file': 'collimator_20-conv.dcm', 'is_float': False})

Of course you can store dictionary in a variable and pass this variable to the convert() function.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

JPET-format-converter-2.0.2.tar.gz (8.1 kB view hashes)

Uploaded Source

Built Distribution

JPET_format_converter-2.0.2-py3-none-any.whl (7.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page