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 CHANGED
@@ -8,8 +8,8 @@
8
8
 
9
9
  ## Dicom Image Toolkit for CornerstoneJS
10
10
 
11
- ### Current version: 2.0.2
12
- ### Latest Published Release: 2.0.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
 
@@ -3,6 +3,7 @@ export type MetaDataReadable = {
3
3
  larvitarSeriesInstanceUID?: string;
4
4
  seriesUID?: string;
5
5
  instanceUID?: string;
6
+ sopClassUID?: string;
6
7
  studyUID?: string;
7
8
  accessionNumber?: string;
8
9
  studyDescription?: string;
@@ -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 DICOM series' metadata using sha256
6
+ * Anonymize a series by replacing all metadata with random values
8
7
  * @function anonymize
9
- * @param {Object} series - Cornerstone series object
10
- * @returns {Object} anonymized_series: Cornerstone anonymized series object
8
+ * @param {Series} series - series to anonymize
9
+ * @returns {Series} anonymized series
11
10
  */
12
11
  export declare const anonymize: (series: Series) => Series;