Skip to content

Commit

Permalink
Add badges for build/codecov; Mention existence of tag macro
Browse files Browse the repository at this point in the history
  • Loading branch information
notZaki authored Jan 12, 2019
1 parent da3c0f3 commit 60dff94
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

Julia interface for parsing/writing DICOM files

[![Build Status](https://travis-ci.org/JuliaIO/DICOM.jl.svg?branch=master)](https://travis-ci.org/JuliaIO/DICOM.jl)
[![Code Coverage](https://codecov.io/gh/JuliaIO/DICOM.jl/branch/master/graphs/badge.svg?)](https://codecov.io/gh/JuliaIO/DICOM.jl/branch/master)

## Usage

**Installation**
Expand All @@ -24,7 +27,7 @@ Read a DICOM file by
julia> dcmData = dcm_parse("path/to/dicom/file")
```
The data in `dcmData` is structured as a dictionary, and individual DICOM elements can be accessed by their hex tag.
For example, the hex tag of "Pixel Data" is `7FE0,0010`, and it can be accessed in Julia by `dcmData[(0x7FE0,0x0010)]`.
For example, the hex tag of "Pixel Data" is `7FE0,0010`, and it can be accessed in Julia by `dcmData[(0x7FE0,0x0010)]` or by `dcmData[tag"Pixel Data"]`.

**Writing Data**

Expand Down

0 comments on commit 60dff94

Please sign in to comment.