@@ -6,12 +6,11 @@ import ImageListCard from '@/src/components/ImageListCard.vue';
6
6
import { createVTKImageThumbnailer } from ' @/src/core/thumbnailers/vtk-image' ;
7
7
import { useSegmentGroupStore } from ' @/src/store/segmentGroups' ;
8
8
import {
9
- DataSelection ,
10
- ImageSelection ,
9
+ isRegularImage ,
10
+ type DataSelection ,
11
11
selectionEquals ,
12
12
} from ' @/src/utils/dataSelection' ;
13
13
import { useImageStore } from ' ../store/datasets-images' ;
14
- import { useDICOMStore } from ' ../store/datasets-dicom' ;
15
14
import { useDatasetStore } from ' ../store/datasets' ;
16
15
17
16
import { useMultiSelection } from ' ../composables/useMultiSelection' ;
@@ -29,39 +28,32 @@ export default defineComponent({
29
28
},
30
29
setup() {
31
30
const imageStore = useImageStore ();
32
- const dicomStore = useDICOMStore ();
33
31
const dataStore = useDatasetStore ();
34
32
const layersStore = useLayersStore ();
35
33
const segmentGroupStore = useSegmentGroupStore ();
36
34
37
35
const primarySelection = computed (() => dataStore .primarySelection );
38
36
39
37
const nonDICOMImages = computed (() =>
40
- imageStore .idList .filter ((id ) => ! (id in dicomStore . imageIDToVolumeKey ))
38
+ imageStore .idList .filter ((id ) => isRegularImage (id ))
41
39
);
42
40
43
41
const images = computed (() => {
44
42
const { metadata } = imageStore ;
45
43
46
44
const layerImages = layersStore
47
45
.getLayers (primarySelection .value )
48
- .filter (({ selection }) => selection .type === ' image' );
49
- const layerImageIDs = layerImages .map (
50
- ({ selection }) => (selection as ImageSelection ).dataID
51
- );
46
+ .filter (({ selection }) => isRegularImage (selection ));
47
+ const layerImageIDs = layerImages .map (({ selection }) => selection );
52
48
const loadedLayerImageIDs = layerImages
53
49
.filter (({ id }) => id in layersStore .layerImages )
54
- .map (({ selection }) => ( selection as ImageSelection ). dataID );
50
+ .map (({ selection }) => selection );
55
51
56
52
const selectedImageID =
57
- primarySelection .value ?.type === ' image' &&
58
- primarySelection .value ?.dataID ;
53
+ isRegularImage (primarySelection .value ) && primarySelection .value ;
59
54
60
55
return nonDICOMImages .value .map ((id ) => {
61
- const selectionKey = {
62
- type: ' image' ,
63
- dataID: id ,
64
- } as DataSelection ;
56
+ const selectionKey = id as DataSelection ;
65
57
const isLayer = layerImageIDs .includes (id );
66
58
const layerLoaded = loadedLayerImageIDs .includes (id );
67
59
const layerLoading = isLayer && ! layerLoaded ;
@@ -136,10 +128,7 @@ export default defineComponent({
136
128
137
129
function convertToLabelMap(key : string ) {
138
130
if (primarySelection .value ) {
139
- segmentGroupStore .convertImageToLabelmap (
140
- { type: ' image' , dataID: key },
141
- primarySelection .value
142
- );
131
+ segmentGroupStore .convertImageToLabelmap (key , primarySelection .value );
143
132
}
144
133
}
145
134
@@ -261,9 +250,9 @@ export default defineComponent({
261
250
image.layerable ? convertToLabelMap(image.id) : null
262
251
"
263
252
>
264
- <v-icon v-if =" !image.layerable" class =" mr-1"
265
- > mdi-alert</ v-icon
266
- >
253
+ <v-icon v-if =" !image.layerable" class =" mr-1" >
254
+ mdi-alert
255
+ </ v-icon >
267
256
Convert to Segment Group
268
257
<v-tooltip
269
258
activator =" parent"
0 commit comments