Skip to content

Commit

Permalink
feat(multiframe): fix the build for the multiframe (#524)
Browse files Browse the repository at this point in the history
  • Loading branch information
sedghi authored Apr 1, 2023
1 parent a10e369 commit b8092fc
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ function getImageTypeSubItemFromDataset(dataSet, index) {
* Extracts the orientation from NM multiframe dataset, if image type
* equal to RECON TOMO or RECON GATED TOMO
* @param {*} dataSet
* @returns
*/
function extractOrientationFromNMMultiframeDataset(dataSet) {
let imageOrientationPatient;
Expand All @@ -50,7 +49,6 @@ function extractOrientationFromNMMultiframeDataset(dataSet) {
* Extracts the position from NM multiframe dataset, if image type
* equal to RECON TOMO or RECON GATED TOMO
* @param {*} dataSet
* @returns
*/
function extractPositionFromNMMultiframeDataset(dataSet) {
let imagePositionPatient;
Expand Down Expand Up @@ -78,7 +76,6 @@ function extractPositionFromNMMultiframeDataset(dataSet) {
* from the Detector Information Sequence (for NM images) if image type equal
* to RECON TOMO or RECON GATED TOMO
* @param {*} dataSet
* @returns
*/
function extractOrientationFromDataset(dataSet) {
let imageOrientationPatient = getNumberValues(dataSet, 'x00200037', 6);
Expand Down Expand Up @@ -109,7 +106,6 @@ function extractOrientationFromDataset(dataSet) {
* from the Detector Information Sequence (for NM images) if image type equal
* to RECON TOMO or RECON GATED TOMO
* @param {*} dataSet
* @returns
*/
function extractPositionFromDataset(dataSet) {
let imagePositionPatient = getNumberValues(dataSet, 'x00200032', 3);
Expand All @@ -136,7 +132,6 @@ function extractPositionFromDataset(dataSet) {
* Extract the pixelSpacing information. If exists, extracts this information
* from Pixel Measures Sequence
* @param {*} dataSet
* @returns
*/
function extractSpacingFromDataset(dataSet) {
let pixelSpacing = getNumberValues(dataSet, 'x00280030', 2);
Expand All @@ -158,7 +153,6 @@ function extractSpacingFromDataset(dataSet) {
* Extract the sliceThickness information. If exists, extracts this information
* from Pixel Measures Sequence
* @param {*} dataSet
* @returns
*/
function extractSliceThicknessFromDataset(dataSet) {
let sliceThickness;
Expand Down

0 comments on commit b8092fc

Please sign in to comment.