Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/grailbio/go-dicom

DICOM parser for golang
https://github.com/grailbio/go-dicom

bioinformatics dicom golang medical-imaging

Last synced: 27 days ago
JSON representation

DICOM parser for golang

Lists

README

        

-------

**This project is no longer maintained.**

Please see [suyashkumar/dicom](https://github.com/suyashkumar/dicom/) for an
alternative, or consider one of the forks of this project.

This project was originally a fork of
[gillesdemey/go-dicom](https://github.com/gillesdemey/go-dicom). with some
fixes which have since been incorporated in the alternative referenced above.

-------

[![GoDoc](https://godoc.org/github.com/grailbio/go-dicom?status.svg)](https://godoc.org/github.com/grailbio/go-dicom) [![Build Status](https://travis-ci.org/grailbio/go-dicom.svg?branch=master)](https://travis-ci.org/grailbio/go-dicom.svg?branch=master)

# DICOM parser in Go

This is a fork of github.com/gillesdemey/go-dicom. Changes are:

- Many bug fixes, especially around handling of sequences.
- Handle non-ASCII characters more properly.
- Simplify the API. All the functions are synchronous.
- Better library supports around tags & uids.
- Rudimentary support for writing DICOM files. This part is not complete yet.
- Adds fuzz tests and tests that ensure compatibility with pydicom.

TODO:
- Implement mixed-coding-system files more properly. We currently botch
patient-name (PN) elements that mixes coding systems.

- A multi-image file. Functionality is almost there, but I haven't had time to complete it.

- Native pixeldata format. It'll be parsed as just []byte.

See doc.go for usage. dicomutil contains a sample program that dumps DICOM
elements in a file.

### Acknowledgements

I'd like to thank my friend [Seppe Stas](https://github.com/Bitbored/) for helping me get through the horrific DICOM image specification and some of the harder parts of the parser.

Some more inspiration and helpful resource that brought this library to life (in no particular order):

DWV by ivmartel https://github.com/ivmartel/dwv/

dicomParser by Chris Hafey https://github.com/chafey/dicomParser

http://www.dicomlibrary.com

http://dicom.nema.org/medical/dicom/current/output/pdf/part05.pdf