Class RequestedStudy
Details of a DICOM study to be retrieved for an inference request.
Namespace: Nvidia.Clara.DicomAdapter.API.Rest
Assembly: Nvidia.Clara.Dicom.API.dll
Syntax
public class RequestedStudy : object
Remarks
StudyInstanceUid>
is required.
If Series>
is not specified, the entire study is retrieved.
Examples
{
...
"studies" : [
"StudyInstanceUID": "1.2.3.4.555.6666.7777",
"series": [
"SeriesInstanceUID": "1.2.3.4.55.66.77.88",
"instances": [
"SOPInstanceUID": [
"1.2.3.4.5.6.7.8.99.1",
"1.2.3.4.5.6.7.8.99.2",
"1.2.3.4.5.6.7.8.99.3",
...
]
]
]
]
...
}
Properties
| Improve this Doc View SourceSeries
Gets or sets a list of DICOM series to be retrieved.
Declaration
public IList<RequestedSeries> Series { get; set; }
Property Value
Type | Description |
---|---|
IList<RequestedSeries> |
StudyInstanceUid
Gets or sets the Study Instance UID to be retrieved.
Declaration
public string StudyInstanceUid { get; set; }
Property Value
Type | Description |
---|---|
String |