Spaces:
Paused
Paused
File size: 536 Bytes
7857181 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/bin/bash
# Start the orthanc service
# nginx &
Orthanc &
for i in ls datasets/Task09_Spleen/imagesTs/*.nii.gz; do plastimatch convert --patient-id patient1 --input $i --output-dicom test; done && \
python -m pynetdicom storescu 127.0.0.1 4242 test -aet MONAILABEL -r && \
# # Start the monailabel service
monailabel start_server --app apps/radiology --studies http://127.0.0.1:8042/dicom-web --conf models deepedit
# monailabel start_server --app apps/radiology --studies datasets/Task09_Spleen/imagesTr --conf models deepedit
|