dicom icon indicating copy to clipboard operation
dicom copied to clipboard

⚡High Performance DICOM Medical Image Parser in Go.

Results 133 dicom issues
Sort by recently updated
recently updated
newest added

When refactoring consider incorporating a tool like [GolangCI-Lint](https://github.com/golangci/golangci-lint) This would improve/enforce the readability for new-comers. Apart from that, excellent project BTW, its either this or https://github.com/Enet4/dicom-rs

This PR is adapted from the [previous one](https://github.com/suyashkumar/dicom/pull/234). The main new addition it makes to this existing `s/read-un-as-sq` branch is treating unknown elements* as bytes not strings. It also contains...

- For heavy imaging modalities, it is expensive to load the pixel data into memory, and for many use cases, unnecessary. This new option allows users to parse the other...

enhancement

Sometimes, the VL of pixel data does not match with calculated value. (I can not provide the sample file to test this) - In this case, we want to return...

Hello, I find a problem when I use it to parsing dicom file. The problem occurs when parsing a dicom file with SQ of undefined length, which has an Item...

I can't load this dicom, buy pydicom can with "force=True" parameter. Does there have any hotfix for this kind dicom? err message read.go:534: error reading value unexpected EOF [test-dicom.dcm.zip](https://github.com/suyashkumar/dicom/files/8249417/test-dicom.dcm.zip)

I'm trying to update/de-identify some of the metadata tags (such as Patient ID). Is there a way to update the file directly without reading the file and writing back to...

Hello everyone, dicom.Parse requires to provide the bytes to read. This is rather unpractical if the caller has a io.Reader at hand. The only way to handle this is buffering...