dicom-anonymizer icon indicating copy to clipboard operation
dicom-anonymizer copied to clipboard

Tool to anonymize DICOM files according to the DICOM standard

Results 19 dicom-anonymizer issues
Sort by recently updated
recently updated
newest added

I faced errors while trying to anonymize dicoms that had an element with VR of `SQ` that included an element with VR of `UN`. In this PR, I replace the...

Part 15 E.1-1 table differs greatly between the [2013 standard](http://dicom.nema.org/dicom/2013/output/chtml/part15/chapter_E.html#table_E.1-1) (referenced in the [README.md](https://github.com/KitwareMedical/dicom-anonymizer/blob/master/README.md?plain=1#L4) and listed in [dicomfields.py](https://github.com/KitwareMedical/dicom-anonymizer/blob/master/dicomanonymizer/dicomfields.py)) and the [current standard](http://dicom.nema.org/medical/dicom/current/output/chtml/part15/chapter_E.html#table_E.1-1): * 2013: 249 rows * current: 475 rows...

enhancement

[Part 16 CID 7050](http://dicom.nema.org/medical/dicom/current/output/chtml/part16/sect_CID_7050.html) lists various De-identification Methods: Apart from the methods that impact pixel data cleaning, the rest of the methods are documented in the Application Level Confidentiality Profile...

enhancement

Currently, tags in the meta information header (0x0002 group) are not applied. This fixes that by applying the action to the file_meta dataset instead. #18

- Remove the calls to `eval` with a user input that were a big security flaw - Refactor CLI system to add new actions easily - Add a `replace_with_value` action...

Despite all my researches and tries, it seems Python3.6 cannot build the package without a setup.py file. Also take into account the importlib_metadata name change.

The following code in `examples/anonymize_extra_rules.py` encourages incorrect anonymization by not removing series description. That tag should be removed! We should create the example using a different tag: ``` def setup_series_description(dataset,...

Fixes issues #67 Changed the example for extra rules to patient's birth date. Only the year is retained, per [Methods of De-identification of PHI | HHS.gov](https://www.hhs.gov/hipaa/for-professionals/privacy/special-topics/de-identification/index.html). Both python code in...

Hi, I'm just starting to investigate the use of this tool as we have been relying on https://mircwiki.rsna.org/index.php?title=MIRC_CTP_Articles for years now, but it has some shortcomings that have led me...

I found this while looking at pytest failures for "color3d_jpeg_baseline.dcm" file from `pydicom`'s test files. The element [(0020,0244)](https://dicom.innolitics.com/ciods/segmentation/general-series/00400244) was not getting deleted. The tag is listed in `X_TAGS`. The code...