File size: 37,037 Bytes
8b1bf91 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 | {
"tasks": [
{
"task_overview": "View the Sample study in image viewer from browser menu",
"steps": [
{
"step_id": 1,
"image_path": "Images/DICOMscope/Screenshot_201.png",
"instruction": "Select the study that you want to view",
"actions": [
{
"type": "click",
"target": "View the sample study",
"bbox": [
2.68,
15.87,
15.51,
2.18
]
}
]
},
{
"step_id": 2,
"image_path": "Images/DICOMscope/Screenshot_202.png",
"instruction": "Select the particular section of the 'Study'",
"actions": [
{
"type": "click",
"target": "View the 'series OT' study",
"bbox": [
4.13,
17.46,
6.58,
2.38
]
}
]
},
{
"step_id": 3,
"image_path": "Images/DICOMscope/Screenshot_204.png",
"instruction": "Click on the report you want to view",
"actions": [
{
"type": "click",
"target": "view the OT study report",
"bbox": [
5.02,
22.02,
4.58,
1.79
]
}
]
},
{
"step_id": 4,
"image_path": "Images/DICOMscope/Screenshot_205.png",
"instruction": "Select the presentation state",
"actions": [
{
"type": "click",
"target": "Selecting the presentation state of the selected study",
"bbox": [
13.39,
25.79,
12.72,
2.18
]
}
]
},
{
"step_id": 5,
"image_path": "Images/DICOMscope/Screenshot_206.png",
"instruction": "Click on the OK button to close the 'Presentation state selection' dialogue",
"actions": [
{
"type": "click",
"target": "Confirming selection of the Presentation state of the selected study.",
"bbox": [
16.41,
42.06,
2.57,
2.98
]
}
]
}
]
},
{
"task_overview": "Flip the content of the Image viewer",
"steps": [
{
"step_id": 1,
"image_path": "Images/DICOMscope/Screenshot_207.png",
"instruction": "Click on the 'Flip' widget from the Processing tools",
"actions": [
{
"type": "click",
"target": "Flip the report or DICOM in the viewer",
"bbox": [
37.5,
38.89,
1.9,
3.17
]
}
]
},
{
"step_id": 2,
"image_path": "Images/DICOMscope/Screenshot_208.png",
"instruction": "Click on the 'Flip' widget from the Processing tools",
"actions": [
{
"type": "click",
"target": "Flip the report or DICOM in the viewer",
"bbox": [
37.61,
38.89,
1.67,
2.78
]
}
]
}
]
},
{
"task_overview": "Rotate the content of the Image viewer",
"steps": [
{
"step_id": 1,
"image_path": "Images/DICOMscope/Screenshot_209.png",
"instruction": "Click on the 'Rotate' widget from the processing tools",
"actions": [
{
"type": "click",
"target": "Rotate the DICOM or report currently in the viewer",
"bbox": [
39.73,
38.89,
1.79,
3.17
]
}
]
},
{
"step_id": 2,
"image_path": "Images/DICOMscope/Screenshot_210.png",
"instruction": "Rotate the Report in the viewer by clicking on the rotate widget from the processing tools",
"actions": [
{
"type": "click",
"target": "Rotate the DICOM or report currently in the viewer",
"bbox": [
39.73,
39.09,
1.56,
2.58
]
}
]
}
]
},
{
"task_overview": "Invert the color of the DICOM or Report in Image viewer",
"steps": [
{
"step_id": 1,
"image_path": "Images/DICOMscope/Screenshot_211.png",
"instruction": "Invert the colors of the current DICOM or Report by clicking on the invert widget from the processing tools",
"actions": [
{
"type": "click",
"target": "Inverting the color of the DICOM or Report",
"bbox": [
41.74,
39.48,
1.67,
2.58
]
}
]
},
{
"step_id": 2,
"image_path": "Images/DICOMscope/Screenshot_212.png",
"instruction": "Invert the colors of the current DICOM or Report by clicking on the invert widget from the processing tools",
"actions": [
{
"type": "click",
"target": "Inverting the colors of the DICOM or Report",
"bbox": [
41.85,
39.29,
1.45,
2.78
]
}
]
}
]
},
{
"task_overview": "Import DICOM data and view it in the Image viewer.",
"steps": [
{
"step_id": 1,
"image_path": "Images/DICOMscope/Screenshot_213.png",
"instruction": "Load the 'Image File' into the DICOM viewer",
"actions": []
},
{
"step_id": 2,
"image_path": "Images/DICOMscope/Screenshot_214.png",
"instruction": "Select the '.dcm' file from local storage",
"actions": [
{
"type": "click",
"target": "Load the '.dcm' file",
"bbox": [
40.62,
46.43,
6.14,
1.98
]
}
]
},
{
"step_id": 3,
"image_path": "Images/DICOMscope/Screenshot_215.png",
"instruction": "Open the selected DICOM file",
"actions": [
{
"type": "click",
"target": "View the selected DICOM file",
"bbox": [
56.03,
66.27,
4.46,
2.58
]
}
]
}
]
},
{
"task_overview": "Use presentation LUT processing tool",
"steps": [
{
"step_id": 1,
"image_path": "Images/DICOMscope/Screenshot_216.png",
"instruction": "Select the Presentation LUT from the processing tools",
"actions": [
{
"type": "click",
"target": "Changing the presentation of the DICOM viewer",
"bbox": [
43.75,
39.09,
1.79,
2.98
]
}
]
},
{
"step_id": 2,
"image_path": "Images/DICOMscope/Screenshot_217.png",
"instruction": "Select the 'Darken Image' from the Presentation LUT menu",
"actions": [
{
"type": "click",
"target": "View the DICOM in 'Darken Image' presentation style",
"bbox": [
43.75,
47.42,
13.06,
2.58
]
}
]
}
]
},
{
"task_overview": "View the DICOM in different resolutions in the Image viewer",
"steps": [
{
"step_id": 1,
"image_path": "Images/DICOMscope/Screenshot_218.png",
"instruction": "Click on the 'Fit Image' Icon from the zoom utilities",
"actions": [
{
"type": "click",
"target": "Fit the Image to the DICOM viewer resolution",
"bbox": [
38.73,
48.21,
1.56,
2.78
]
}
]
},
{
"step_id": 2,
"image_path": "Images/DICOMscope/Screenshot_219.png",
"instruction": "Click on the 'Zoom Image 1:1' from the zoom utilities",
"actions": [
{
"type": "click",
"target": "View the DICOM in 1:1 zoom",
"bbox": [
41.07,
48.02,
1.67,
2.98
]
}
]
}
]
},
{
"task_overview": "Change the Presentation state of the DICOM in the image viewer",
"steps": [
{
"step_id": 1,
"image_path": "Images/DICOMscope/Screenshot_220.png",
"instruction": "Change the 'Presentation state' of the current DICOM by clicking on the 'Presentation state' Icon from the Processing tools.",
"actions": [
{
"type": "click",
"target": "Changing the Presentation state of the current DICOM",
"bbox": [
45.65,
39.09,
1.79,
2.78
]
}
]
}
]
},
{
"task_overview": "Import the study and view it in Rectangular shutter in 1:1 Zoom",
"steps": [
{
"step_id": 1,
"image_path": "Images/DICOMscope/Screenshot_222.png",
"instruction": "Import the 'Study' into the DICOM viewer",
"actions": [
{
"type": "click",
"target": "View the study in the DICOM viewer",
"bbox": [
5.36,
26.39,
16.52,
1.98
]
}
]
},
{
"step_id": 2,
"image_path": "Images/DICOMscope/Screenshot_223.png",
"instruction": "Select the 'Rectangular Shutter' from the shutter tools",
"actions": [
{
"type": "click",
"target": "View the 'Study' through rectangular shutter in the DICOM viewer.",
"bbox": [
86.16,
14.29,
1.56,
2.98
]
}
]
},
{
"step_id": 3,
"image_path": "Images/DICOMscope/Screenshot_224.png",
"instruction": "Select the 'Zoom image 1:1' to view the study report clearly",
"actions": [
{
"type": "click",
"target": "View the study report in Zoom 1:1",
"bbox": [
88.95,
45.04,
1.45,
2.98
]
}
]
}
]
},
{
"task_overview": "Import the sample study from browser menu and view it in Image viewer",
"steps": [
{
"step_id": 1,
"image_path": "Images/DICOMscope/Screenshot_225.png",
"instruction": "Click on the required study that needs to be imported from the Browser section",
"actions": [
{
"type": "click",
"target": "Importing DICOM study",
"bbox": [
3.01,
25.4,
18.42,
2.18
]
}
]
},
{
"step_id": 2,
"image_path": "Images/DICOMscope/Screenshot_226.png",
"instruction": "Click on the 'Series CT' section from the drop-down of the study",
"actions": [
{
"type": "click",
"target": "Importing the CT report of the Study.",
"bbox": [
3.91,
27.58,
6.25,
2.38
]
}
]
},
{
"step_id": 3,
"image_path": "Images/DICOMscope/Screenshot_227.png",
"instruction": "Double click the CT report that needs to be imported",
"actions": [
{
"type": "double_click",
"target": "Importing the CT report into the Viewer",
"bbox": [
5.36,
29.76,
5.13,
2.78
]
}
]
}
]
},
{
"task_overview": "View the DICOM in polygonal shutter",
"steps": [
{
"step_id": 1,
"image_path": "Images/DICOMscope/Screenshot_229.png",
"instruction": "Select the Polygonal shutter from the shutter options",
"actions": [
{
"type": "click",
"target": "View the DICOM using the polygonal shutter",
"bbox": [
90.18,
14.29,
1.67,
2.98
]
}
]
},
{
"step_id": 2,
"image_path": "Images/DICOMscope/Screenshot_230.png",
"instruction": "Draw on the DICOM using the polygonal shutter",
"actions": [
{
"type": "click",
"target": "View the DICOM using the polygonal shutter",
"bbox": [
28.35,
34.92,
11.05,
19.84
]
}
]
}
]
},
{
"task_overview": "Delete the Drawing from the DICOM",
"steps": [
{
"step_id": 1,
"image_path": "Images/DICOMscope/Screenshot_231.png",
"instruction": "Right click on the drawing to view the drawing options",
"actions": [
{
"type": "click",
"target": "Delete the drawing from the DICOM",
"bbox": [
25.67,
31.75,
11.72,
23.81
]
}
]
},
{
"step_id": 2,
"image_path": "Images/DICOMscope/Screenshot_232.png",
"instruction": "From the options menu, select the 'Delete' option",
"actions": [
{
"type": "click",
"target": "Delete the selected drawing from the DICOM",
"bbox": [
31.58,
38.1,
3.68,
2.58
]
}
]
}
]
},
{
"task_overview": "Painting the DICOM using rectangle tool",
"steps": [
{
"step_id": 1,
"image_path": "Images/DICOMscope/Screenshot_233.png",
"instruction": "Select the rectangle tool from the paint tools",
"actions": [
{
"type": "click",
"target": "Paint the DICOM in rectangular manner",
"bbox": [
88.17,
20.44,
1.67,
3.17
]
}
]
},
{
"step_id": 2,
"image_path": "Images/DICOMscope/Screenshot_234.png",
"instruction": "Select the paint layer and confirm the layer properties",
"actions": [
{
"type": "click",
"target": "Paint in a layer over the DICOM",
"bbox": [
56.81,
81.94,
1.79,
3.17
]
}
]
},
{
"step_id": 3,
"image_path": "Images/DICOMscope/Screenshot_235.png",
"instruction": "use mouse to draw over the DICOM",
"actions": [
{
"type": "drag",
"target": "Draw in a layer over DICOM",
"bbox": [
12.72,
41.27,
22.54,
28.57
]
}
]
}
]
},
{
"task_overview": "Paint over DICOM in a separate layer",
"steps": [
{
"step_id": 1,
"image_path": "Images/DICOMscope/Screenshot_236.png",
"instruction": "Select the Point tool from the paint tools",
"actions": [
{
"type": "click",
"target": "Paint over the DICOM in a new layer",
"bbox": [
90.29,
20.63,
1.56,
3.17
]
}
]
},
{
"step_id": 2,
"image_path": "Images/DICOMscope/Screenshot_237.png",
"instruction": "Draw over the image",
"actions": [
{
"type": "click",
"target": "Paint over the DICOM in a new layer",
"bbox": [
36.16,
34.72,
3.24,
4.96
]
}
]
}
]
},
{
"task_overview": "Configure the graphic layer properties",
"steps": [
{
"step_id": 1,
"image_path": "Images/DICOMscope/Screenshot_238.png",
"instruction": "Select the layer tool from the paint tools",
"actions": [
{
"type": "click",
"target": "Configure the paint layer properties",
"bbox": [
94.2,
24.6,
1.67,
2.78
]
}
]
},
{
"step_id": 2,
"image_path": "Images/DICOMscope/Screenshot_239.png",
"instruction": "Edit the current graphic layer using the 'edit' button from the layer manager",
"actions": [
{
"type": "click",
"target": "Configure the graphic layer properties",
"bbox": [
32.25,
71.43,
2.12,
2.78
]
}
]
},
{
"step_id": 3,
"image_path": "Images/DICOMscope/Screenshot_241.png",
"instruction": "Change the color of the paintings in the current graphic layer",
"actions": [
{
"type": "type",
"target": "Configure the current Graphic layer properties",
"bbox": [
51.23,
47.02,
3.68,
2.38
]
}
]
},
{
"step_id": 4,
"image_path": "Images/DICOMscope/Screenshot_242.png",
"instruction": "Confirm the changes by clicking the 'OK' button",
"actions": [
{
"type": "click",
"target": "Changing the graphic layer properties",
"bbox": [
52.46,
71.03,
2.01,
2.98
]
}
]
}
]
},
{
"task_overview": "Add new layer to the graphic layers of the current DICOM",
"steps": [
{
"step_id": 1,
"image_path": "Images/DICOMscope/Screenshot_243.png",
"instruction": "Select the layer from the paint tools",
"actions": [
{
"type": "click",
"target": "To add a new layer to the graphic layers of the current DICOM",
"bbox": [
94.2,
24.8,
1.56,
2.58
]
}
]
},
{
"step_id": 2,
"image_path": "Images/DICOMscope/Screenshot_244.png",
"instruction": "Click on the 'New' button to add a new graphic layer",
"actions": [
{
"type": "click",
"target": "To add a new layer to the graphic layers of the current DICOM",
"bbox": [
47.32,
50.79,
2.23,
3.37
]
}
]
},
{
"step_id": 3,
"image_path": "Images/DICOMscope/Screenshot_245.png",
"instruction": "Confirm selection of the layer properties of the new layer",
"actions": [
{
"type": "click",
"target": "To add a new layer to the graphic layers of the current DICOM",
"bbox": [
52.34,
85.91,
2.12,
3.17
]
}
]
},
{
"step_id": 4,
"image_path": "Images/DICOMscope/Screenshot_246.png",
"instruction": "Close the layer manager menu",
"actions": [
{
"type": "click",
"target": "Closing the layer manager",
"bbox": [
44.08,
81.35,
2.9,
3.17
]
}
]
}
]
},
{
"task_overview": "View process logs of different active processes",
"steps": [
{
"step_id": 1,
"image_path": "Images/DICOMscope/Screenshot_247.png",
"instruction": "Select the process log to view the current processes and their status",
"actions": [
{
"type": "click",
"target": "View process logs",
"bbox": [
11.16,
9.13,
5.02,
2.78
]
}
]
},
{
"step_id": 2,
"image_path": "Images/DICOMscope/Screenshot_248.png",
"instruction": "Select a particular process from the process log",
"actions": [
{
"type": "click",
"target": "To check the status of the selected process",
"bbox": [
0.33,
14.29,
99.22,
1.98
]
}
]
},
{
"step_id": 3,
"image_path": "Images/DICOMscope/Screenshot_249.png",
"instruction": "Select a particular process from the process log menu ",
"actions": [
{
"type": "click",
"target": "To check the status of the selected process",
"bbox": [
0.22,
16.07,
99.44,
1.98
]
}
]
}
]
},
{
"task_overview": "Delete the selected study from the browser menu",
"steps": [
{
"step_id": 1,
"image_path": "Images/DICOMscope/Screenshot_250.png",
"instruction": "Select a study from the 'Browser' menu",
"actions": [
{
"type": "click",
"target": "Delete the selected study",
"bbox": [
2.68,
15.48,
11.05,
2.38
]
}
]
},
{
"step_id": 2,
"image_path": "Images/DICOMscope/Screenshot_251.png",
"instruction": "Click on the 'Delete' Icon from the toolbar ",
"actions": [
{
"type": "click",
"target": "Delete the selected study",
"bbox": [
9.38,
5.75,
1.67,
2.98
]
}
]
},
{
"step_id": 3,
"image_path": "Images/DICOMscope/Screenshot_252.png",
"instruction": "Confirm the deletion of the selected study",
"actions": [
{
"type": "click",
"target": "Delete the selected study",
"bbox": [
47.21,
52.38,
2.34,
2.98
]
}
]
}
]
},
{
"task_overview": "Modify c/w values of the current window",
"steps": [
{
"step_id": 1,
"image_path": "Images/DICOMscope/Screenshot_253.png",
"instruction": "Click the 'c/w' icon from the window settings menu",
"actions": [
{
"type": "click",
"target": "To modify the c, w values of the current window",
"bbox": [
84.04,
50,
1.67,
3.17
]
}
]
},
{
"step_id": 2,
"image_path": "Images/DICOMscope/Screenshot_254.png",
"instruction": "Confirm the c and w values for the current window",
"actions": [
{
"type": "click",
"target": "Changing the c and w values for the current window",
"bbox": [
31.81,
92.86,
3.12,
2.98
]
}
]
},
{
"step_id": 3,
"image_path": "Images/DICOMscope/Screenshot_255.png",
"instruction": "Applying the changed c and w values ",
"actions": [
{
"type": "click",
"target": "Changing c and w value for the current window",
"bbox": [
40.51,
92.86,
4.24,
2.98
]
}
]
}
]
},
{
"task_overview": "Change the position of the DICOM in the Image viewer",
"steps": [
{
"step_id": 1,
"image_path": "Images/DICOMscope/Screenshot_256.png",
"instruction": "Select the horizontal slider in the image viewer and drag to change the view of the DICOM",
"actions": [
{
"type": "drag",
"target": "Change the position of the DICOM in the viewer",
"bbox": [
56.81,
88.49,
4.24,
2.78
]
}
]
},
{
"step_id": 2,
"image_path": "Images/DICOMscope/Screenshot_257.png",
"instruction": "Select the vertical slider in the image viewer",
"actions": [
{
"type": "drag",
"target": "Change the position of the DICOM in the viewer",
"bbox": [
82.03,
59.72,
1.0,
6.94
]
}
]
}
]
},
{
"task_overview": "Change the appearance of the DICOM",
"steps": [
{
"step_id": 1,
"image_path": "Images/DICOMscope/Screenshot_258.png",
"instruction": "Select the 'Presets' from the window settings",
"actions": [
{
"type": "click",
"target": "Change the appearance of the DICOM by changing the presets of the current window",
"bbox": [
86.27,
50,
1.67,
3.37
]
}
]
},
{
"step_id": 2,
"image_path": "Images/DICOMscope/Screenshot_259.png",
"instruction": "Select the 'Min-Max' preset for the current window",
"actions": [
{
"type": "click",
"target": "Change the appearance of the DICOM by changing the presets of the current window",
"bbox": [
83.48,
53.97,
15.62,
2.38
]
}
]
}
]
},
{
"task_overview": "Change the presets for the current window",
"steps": [
{
"step_id": 1,
"image_path": "Images/DICOMscope/Screenshot_260.png",
"instruction": "select the presets from the window settings ",
"actions": [
{
"type": "click",
"target": "Change the presets for the current window",
"bbox": [
86.16,
50,
1.9,
3.17
]
}
]
},
{
"step_id": 2,
"image_path": "Images/DICOMscope/Screenshot_261.png",
"instruction": "Select 'create VOI LUT with Gamma' from the presets menu",
"actions": [
{
"type": "click",
"target": "Change the presets for the current window",
"bbox": [
83.48,
64.68,
16.07,
2.38
]
}
]
},
{
"step_id": 3,
"image_path": "Images/DICOMscope/Screenshot_262.png",
"instruction": "select the gamma value of the current window ",
"actions": [
{
"type": "type",
"target": "Change the Gamma value of the VOI LUT",
"bbox": [
51.0,
55.95,
7.03,
1.98
]
}
]
},
{
"step_id": 4,
"image_path": "Images/DICOMscope/Screenshot_263.png",
"instruction": "Confirm the selection of new gamma value",
"actions": [
{
"type": "click",
"target": "Change the presets of the current image viewer window",
"bbox": [
51.56,
59.33,
1.9,
2.58
]
}
]
}
]
},
{
"task_overview": "Save the image to the local storage",
"steps": [
{
"step_id": 1,
"image_path": "Images/DICOMscope/Screenshot_264.png",
"instruction": "Click on 'save to file' icon from the toolbar",
"actions": [
{
"type": "click",
"target": "Save the image to the local storage",
"bbox": [
9.04,
5.55,
1.67,
3.17
]
}
]
},
{
"step_id": 2,
"image_path": "Images/DICOMscope/Screenshot_265.png",
"instruction": "Type the name of the file",
"actions": [
{
"type": "type",
"target": "Save the image to the local storage",
"bbox": [
39.73,
58.73,
25.45,
1.79
]
}
]
},
{
"step_id": 3,
"image_path": "Images/DICOMscope/Screenshot_266.png",
"instruction": "Save the file to the local directory",
"actions": [
{
"type": "click",
"target": "Save the file to the local storage",
"bbox": [
55.92,
66.67,
4.46,
2.58
]
}
]
},
{
"step_id": 4,
"image_path": "Images/DICOMscope/Screenshot_267.png",
"instruction": "Confirm the presentation state of the file to be saved",
"actions": [
{
"type": "click",
"target": "Save the presentation state to the file",
"bbox": [
57.7,
72.42,
2.12,
3.17
]
}
]
}
]
},
{
"task_overview": "Save the image viewer screen to the file",
"steps": [
{
"step_id": 1,
"image_path": "Images/DICOMscope/Screenshot_268.png",
"instruction": "click on the 'save screen to file' icon from the toolbar",
"actions": [
{
"type": "click",
"target": "save the image viewer screen to the file",
"bbox": [
10.94,
5.56,
1.45,
2.98
]
}
]
},
{
"step_id": 2,
"image_path": "Images/DICOMscope/Screenshot_269.png",
"instruction": "Type the name of the file ",
"actions": [
{
"type": "type",
"target": "save the image viewer screen to the file with a specific name",
"bbox": [
39.62,
58.33,
25.78,
2.38
]
}
]
},
{
"step_id": 3,
"image_path": "Images/DICOMscope/Screenshot_270.png",
"instruction": "Click the save button to save the current screen as DICOM file ",
"actions": [
{
"type": "click",
"target": "Save the image viewer screen as DICOM file",
"bbox": [
55.92,
66.27,
4.69,
2.78
]
}
]
},
{
"step_id": 4,
"image_path": "Images/DICOMscope/Screenshot_271.png",
"instruction": "Choose the VR value by clicking on the OK button",
"actions": [
{
"type": "click",
"target": "Save the image viewer screen as DICOM file",
"bbox": [
17.3,
38.29,
2.12,
2.98
]
}
]
}
]
},
{
"task_overview": "Add the current screen of the Image viewer to the print job queue",
"steps": [
{
"step_id": 1,
"image_path": "Images/DICOMscope/Screenshot_272.png",
"instruction": "Click on the 'add to print' icon from the toolbar",
"actions": [
{
"type": "click",
"target": "Add the current screen to the print job queue",
"bbox": [
12.5,
5.56,
1.79,
3.17
]
}
]
},
{
"step_id": 2,
"image_path": "Images/DICOMscope/Screenshot_273.png",
"instruction": "Confirm adding the current image to the print job",
"actions": [
{
"type": "click",
"target": "Add the current screen to the print job queue",
"bbox": [
47.21,
53.77,
2.57,
3.17
]
}
]
}
]
}
]
} |