Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
sedghi committed Jan 21, 2025
1 parent 4efb3e7 commit 9e272dd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ function createSecondStageLayout({

addSliderToToolbar({
id: 'fpsSlider',
title: ` Time points per second: ${initialFramesPerSecond}`,
title: ` Frames per second: ${initialFramesPerSecond}`,
range: [1, 100],
defaultValue: initialFramesPerSecond,
container: firstRowEl,
onSelectedValueChange: (value) => {
onFramesPerSecondUpdated(value);
},
updateLabelOnChange: (value, label) => {
label.innerText = ` Time points per second: ${value}`;
label.innerText = `Frames per second: ${value}`;
},
});

Expand Down
6 changes: 2 additions & 4 deletions packages/tools/examples/dynamicCINETool/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,10 +236,8 @@ async function createVolume(numDimensionGroups: number): Promise<any> {
}

let imageIds = await createImageIdsAndCacheMetaData({
StudyInstanceUID:
'1.3.6.1.4.1.12842.1.1.14.3.20220915.105557.468.2963630849',
SeriesInstanceUID:
'1.3.6.1.4.1.12842.1.1.22.4.20220915.124758.560.4125514885',
StudyInstanceUID: '2.25.232704420736447710317909004159492840763',
SeriesInstanceUID: '2.25.16992883200578135914239363565496792012',
wadoRsRoot: 'https://d14fa38qiwhyfd.cloudfront.net/dicomweb',
});

Expand Down

0 comments on commit 9e272dd

Please sign in to comment.