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.

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ