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 Risposte
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
con risposta un anno fa
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
con risposta un anno fa
  • excellent! if you could pls mark my answer as accepted so others will benefit as well.

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande