Skip to content

Files

Latest commit

6431b93 · May 16, 2024

History

History
20 lines (14 loc) · 643 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 643 Bytes

dicom_processing

Simple flask application to manipulate DICOM format imaging files

Starting the microservice

from terminal: python micro_service.py

Sample calls

Upload File

from terminal: curl -X POST -F 'file=@IM000003' http://127.0.0.1:5000/upload

Search by Tag:

http://127.0.0.1:5000/header/IM000001?tag=(0028,0004)

Convert to Image

http://127.0.0.1:5000/convert/IM000001

References:

  • I referenced here to troubleshoot with IM000003 turning out all white after conversion.