Send DICOM files via HTTPS

0

I want to send DICOM files via HTTPS to an image recognition model hosted on ECS.

The idea is that clients can send their DICOM files to the model's endpoint and get back the model's prediction.

Is it possible to do so? Is there a better alternative?

2 回答
1

DICOM files are typically quite large (in MBs). A better approach would be to upload it to an Amazon S3 bucket and then have your recognition model read it from S3. A bit of wiring will be require on your client side to sequence the multiple API calls together.

See: https://docs.aws.amazon.com/AmazonS3/latest/userguide/PresignedUrlUploadObject.html

AWS
dsp
已回答 1 年前
0

As suggested in previous answers I had to use a pre-signed URL to upload large objects. I followed the architecture mentioned in this video.

It is essentially a serverless architecture where a Lambda function (behind and API endpoint) requests for a pre-signed URL, then returns it to the client and the client then uploads his object into an S3 bucket.

apssg
已回答 1 年前
  • excellent! if you could pls mark my answer as accepted so others will benefit as well.

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则