Skip to content

Commit 60dff94

Browse files
authored
Add badges for build/codecov; Mention existence of tag macro
1 parent da3c0f3 commit 60dff94

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
Julia interface for parsing/writing DICOM files
44

5+
[![Build Status](https://travis-ci.org/JuliaIO/DICOM.jl.svg?branch=master)](https://travis-ci.org/JuliaIO/DICOM.jl)
6+
[![Code Coverage](https://codecov.io/gh/JuliaIO/DICOM.jl/branch/master/graphs/badge.svg?)](https://codecov.io/gh/JuliaIO/DICOM.jl/branch/master)
7+
58
## Usage
69

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

2932
**Writing Data**
3033

0 commit comments

Comments
 (0)