larvitar 2.0.2 → 2.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/imaging/MetaDataReadable.d.ts +1 -0
- package/dist/imaging/imageAnonymization.d.ts +3 -4
- package/dist/larvitar.js +106 -1192
- package/dist/larvitar.js.map +1 -1
- package/imaging/MetaDataReadable.ts +1 -0
- package/imaging/imageAnonymization.ts +114 -165
- package/imaging/imageParsing.ts +1 -0
- package/imaging/imageTags.ts +2 -2
- package/imaging/tools/main.ts +1 -1
- package/imaging/tools/types.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
|
|
9
9
|
## Dicom Image Toolkit for CornerstoneJS
|
|
10
10
|
|
|
11
|
-
### Current version: 2.0.
|
|
12
|
-
### Latest Published Release: 2.0.
|
|
11
|
+
### Current version: 2.0.4
|
|
12
|
+
### Latest Published Release: 2.0.4
|
|
13
13
|
|
|
14
14
|
This library provides common DICOM functionalities to be used in web-applications: it's wrapper that simplifies the use of cornerstone-js environment.
|
|
15
15
|
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
/** @module imaging/imageAnonymization
|
|
2
2
|
* @desc This file provides anonymization functionalities on DICOM images
|
|
3
|
-
* following http://dicom.nema.org/medical/dicom/current/output/html/part15.html#chapter_E
|
|
4
3
|
*/
|
|
5
4
|
import { Series } from "./types";
|
|
6
5
|
/**
|
|
7
|
-
* Anonymize
|
|
6
|
+
* Anonymize a series by replacing all metadata with random values
|
|
8
7
|
* @function anonymize
|
|
9
|
-
* @param {
|
|
10
|
-
* @returns {
|
|
8
|
+
* @param {Series} series - series to anonymize
|
|
9
|
+
* @returns {Series} anonymized series
|
|
11
10
|
*/
|
|
12
11
|
export declare const anonymize: (series: Series) => Series;
|