@@ -23,7 +23,6 @@ function getImageTypeSubItemFromDataset(dataSet, index) {
2323 * Extracts the orientation from NM multiframe dataset, if image type
2424 * equal to RECON TOMO or RECON GATED TOMO
2525 * @param {* } dataSet
26- * @returns
2726 */
2827function extractOrientationFromNMMultiframeDataset ( dataSet ) {
2928 let imageOrientationPatient ;
@@ -50,7 +49,6 @@ function extractOrientationFromNMMultiframeDataset(dataSet) {
5049 * Extracts the position from NM multiframe dataset, if image type
5150 * equal to RECON TOMO or RECON GATED TOMO
5251 * @param {* } dataSet
53- * @returns
5452 */
5553function extractPositionFromNMMultiframeDataset ( dataSet ) {
5654 let imagePositionPatient ;
@@ -78,7 +76,6 @@ function extractPositionFromNMMultiframeDataset(dataSet) {
7876 * from the Detector Information Sequence (for NM images) if image type equal
7977 * to RECON TOMO or RECON GATED TOMO
8078 * @param {* } dataSet
81- * @returns
8279 */
8380function extractOrientationFromDataset ( dataSet ) {
8481 let imageOrientationPatient = getNumberValues ( dataSet , 'x00200037' , 6 ) ;
@@ -109,7 +106,6 @@ function extractOrientationFromDataset(dataSet) {
109106 * from the Detector Information Sequence (for NM images) if image type equal
110107 * to RECON TOMO or RECON GATED TOMO
111108 * @param {* } dataSet
112- * @returns
113109 */
114110function extractPositionFromDataset ( dataSet ) {
115111 let imagePositionPatient = getNumberValues ( dataSet , 'x00200032' , 3 ) ;
@@ -136,7 +132,6 @@ function extractPositionFromDataset(dataSet) {
136132 * Extract the pixelSpacing information. If exists, extracts this information
137133 * from Pixel Measures Sequence
138134 * @param {* } dataSet
139- * @returns
140135 */
141136function extractSpacingFromDataset ( dataSet ) {
142137 let pixelSpacing = getNumberValues ( dataSet , 'x00280030' , 2 ) ;
@@ -158,7 +153,6 @@ function extractSpacingFromDataset(dataSet) {
158153 * Extract the sliceThickness information. If exists, extracts this information
159154 * from Pixel Measures Sequence
160155 * @param {* } dataSet
161- * @returns
162156 */
163157function extractSliceThicknessFromDataset ( dataSet ) {
164158 let sliceThickness ;
0 commit comments