ivmartel
ivmartel
DICOM defines a json format for tags: [dicom-json-format](https://dicom.nema.org/medical/dicom/current/output/chtml/part18/chapter_F.html). It must be used to export tags from the API (instead of the locally defined format).
Decoders are copied as is in the release bundle. They must be minified and provided as part of one bundle. This would still allow the flexibility of loading them if...
The current code saves presentation and drawing information in a json state file. This storage is not standard and cannot be shared easily. DICOM storage must be studied to replace...
The CR/DX/MG/XA image modalities should come with a value for the Imager Pixel Spacing (0018,1164). This value should be used to measure distances. This will give the size at the...
The user must be able to provide pixel spacing calibration for data that do not provide it as part of the DICOM meta data.
DICOM Presentation States ([part03/sect_A.33](http://dicom.nema.org/medical/dicom/current/output/chtml/part03/sect_A.33.html)) could be a replacement to the current json states.
Sequences can contain implicit and explicit items, see standard [part05.html#sect_7.5.2](https://dicom.nema.org/medical/dicom/current/output/html/part05.html#sect_7.5.2). The parser must handle this case. Originates from #973.
The JPG decoders (jpg, jpg2000) code is a bit outdated. This issue is to check for updates and possible other options.
The current code (v0.30), when anonymising, tries to write data using the input character encoding. This is not supported by the web 'TextEncoder' that only writes data as UTF-8. The...