Skip to content

Commit b8092fc

Browse files
authored
feat(multiframe): fix the build for the multiframe (#524)
1 parent a10e369 commit b8092fc

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/imageLoader/wadouri/metaData/extractPositioningFromDataset.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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
*/
2827
function 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
*/
5553
function 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
*/
8380
function 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
*/
114110
function 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
*/
141136
function 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
*/
163157
function extractSliceThicknessFromDataset(dataSet) {
164158
let sliceThickness;

0 commit comments

Comments
 (0)