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: about 2 months ago
JSON representation
DICOM parser for golang
- Host: GitHub
- URL: https://github.com/grailbio/go-dicom
- Owner: grailbio
- License: mit
- Archived: true
- Created: 2017-10-26T16:22:13.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2021-11-05T19:35:21.000Z (about 3 years ago)
- Last Synced: 2024-08-03T01:14:31.573Z (5 months ago)
- Topics: bioinformatics, dicom, golang, medical-imaging
- Language: Go
- Size: 25.2 MB
- Stars: 53
- Watchers: 22
- Forks: 37
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-bio-go - go-dicom
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