DBA Data[Home] [Help]

ORDSYS.ORD_DICOM dependencies on XMLTYPE

Line 70: RETURN SYS.XMLTYPE;

66: FUNCTION extractMetadata (
67: data IN BLOB,
68: extractOption IN VARCHAR2 DEFAULT DEFAULT_EXTRACT_OPTION,
69: docName IN VARCHAR2 DEFAULT DEFAULT_MAPPING_DOC)
70: RETURN SYS.XMLTYPE;
71:
72: --
73: -- Description: Get DICOM metadata in XML for a given XML metadata schema.
74: -- Input:

Line 91: RETURN SYS.XMLTYPE;

87: FUNCTION extractMetadata (
88: data IN BFILE,
89: extractOption IN VARCHAR2 DEFAULT DEFAULT_EXTRACT_OPTION,
90: docName IN VARCHAR2 DEFAULT DEFAULT_MAPPING_DOC)
91: RETURN SYS.XMLTYPE;
92:
93: --
94: -- Description: Get DICOM metadata in XML for a given XML metadata schema.
95: -- Input:

Line 112: RETURN SYS.XMLTYPE;

108: FUNCTION extractMetadata (
109: data IN ORDSYS.ORDImage,
110: extractOption IN VARCHAR2 DEFAULT DEFAULT_EXTRACT_OPTION,
111: docName IN VARCHAR2 DEFAULT DEFAULT_MAPPING_DOC)
112: RETURN SYS.XMLTYPE;
113:
114: --
115: -- Description: Write/modify the current DICOM binary data with the provided
116: -- metadata by making a copy of the existing DICOM binary data and creating a

Line 122: -- metadata: The DICOM metadata in XMLTYPE. It should have all the

118: -- The destination DICOM binary data's attributes will be from the input XML
119: -- metadata.
120: -- Input:
121: -- src: The input DICOM binary data stored in BLOB.
122: -- metadata: The DICOM metadata in XMLTYPE. It should have all the
123: -- standard attributes and private attributes. The SOP instance
124: -- UID in the metadata must ensure the global uniqueness for the
125: -- destination DICOM binary data.
126: -- dest: BLOB to store the new DICOM binary data with the new metadata.

Line 131: metadata IN SYS.XMLTYPE,

127: -- Exception: None.
128: --
129: PROCEDURE writeMetadata (
130: src IN BLOB,
131: metadata IN SYS.XMLTYPE,
132: dest IN OUT NOCOPY BLOB);
133:
134: --
135: -- Description: Write/modify the current DICOM binary data with the provided

Line 142: -- metadata: The DICOM metadata in XMLTYPE. It should have all the

138: -- The destination DICOM binary data's attributes will be from the input XML
139: -- metadata.
140: -- Input:
141: -- src: The input DICOM binary data stored in BFILE.
142: -- metadata: The DICOM metadata in XMLTYPE. It should have all the
143: -- standard attributes and private attributes. The SOP instance
144: -- UID in the metadata must ensure the global uniqueness for the
145: -- destination DICOM binary data.
146: -- dest: BLOB to store the new DICOM binary data with the new metadata.

Line 151: metadata IN SYS.XMLTYPE,

147: -- Exception: None.
148: --
149: PROCEDURE writeMetadata (
150: src IN BFILE,
151: metadata IN SYS.XMLTYPE,
152: dest IN OUT NOCOPY BLOB);
153:
154: --
155: -- Description: Write/modify the current DICOM binary data with the provided

Line 162: -- metadata: The DICOM metadata in XMLTYPE. It should have all the

158: -- The destination DICOM binary data's attributes will be from the input XML
159: -- metadata.
160: -- Input:
161: -- src: The input DICOM binary data stored in ORDSYS.ORDImage object.
162: -- metadata: The DICOM metadata in XMLTYPE. It should have all the
163: -- standard attributes and private attributes. The SOP instance
164: -- UID in the metadata must ensure the global uniqueness for the
165: -- destination DICOM binary data.
166: -- dest: BLOB to store the new DICOM binary data with the new metadata.

Line 171: metadata IN SYS.XMLTYPE,

167: -- Exception: None.
168: --
169: PROCEDURE writeMetadata (
170: src IN ORDSYS.ORDImage,
171: metadata IN SYS.XMLTYPE,
172: dest IN OUT NOCOPY BLOB);
173:
174: --
175: -- Description: Process and copy the input DICOM image data into a raster

Line 250: metadata IN SYS.XMLTYPE DEFAULT NULL);

246: src IN BLOB,
247: command IN VARCHAR2,
248: dest_SOP_INSTANCE_UID IN VARCHAR2,
249: dest IN OUT NOCOPY BLOB,
250: metadata IN SYS.XMLTYPE DEFAULT NULL);
251:
252: --
253: -- Description: Process and copy the input DICOM image into a
254: -- new DICOM image/raster image. The input DICOM image is not changed.

Line 274: metadata IN SYS.XMLTYPE DEFAULT NULL);

270: src IN BFILE,
271: command IN VARCHAR2,
272: dest_SOP_INSTANCE_UID IN VARCHAR2,
273: dest IN OUT NOCOPY BLOB,
274: metadata IN SYS.XMLTYPE DEFAULT NULL);
275:
276: --
277: -- Description: Process and copy the input DICOM image into a
278: -- new DICOM image/raster image. The input DICOM image is not changed.

Line 298: metadata IN SYS.XMLTYPE DEFAULT NULL);

294: src IN ORDSYS.ORDImage,
295: command IN VARCHAR2,
296: dest_SOP_INSTANCE_UID IN VARCHAR2,
297: dest IN OUT NOCOPY BLOB,
298: metadata IN SYS.XMLTYPE DEFAULT NULL);
299:
300: --
301: -- Description: Create a DICOM image from a source raster image and
302: -- DICOM metadata.

Line 305: -- metadata: DICOM metadata in XMLTYPE. It should have all the standard

301: -- Description: Create a DICOM image from a source raster image and
302: -- DICOM metadata.
303: -- Input:
304: -- src: The source raster image stored in BLOB.
305: -- metadata: DICOM metadata in XMLTYPE. It should have all the standard
306: -- and private attributes. It should have a new SOP instance
307: -- UID for the destination DICOM image.
308: -- dest: A DICOM image created from the source image and metadata.
309: -- Exception: None.

Line 313: metadata IN SYS.XMLTYPE,

309: -- Exception: None.
310: --
311: PROCEDURE createDICOMImage (
312: src IN BLOB,
313: metadata IN SYS.XMLTYPE,
314: dest IN OUT NOCOPY BLOB);
315:
316: --
317: -- Description: Create a DICOM image from a source raster image and

Line 321: -- metadata: DICOM metadata in XMLTYPE. It should have all the standard

317: -- Description: Create a DICOM image from a source raster image and
318: -- DICOM metadata.
319: -- Input:
320: -- src: The source raster image stored in BFILE.
321: -- metadata: DICOM metadata in XMLTYPE. It should have all the standard
322: -- and private attributes. It should have a new SOP instance
323: -- UID for the destination DICOM image.
324: -- dest: A DICOM image created from the source image and metadata.
325: -- Exception: None.

Line 329: metadata IN SYS.XMLTYPE,

325: -- Exception: None.
326: --
327: PROCEDURE createDICOMImage (
328: src IN BFILE,
329: metadata IN SYS.XMLTYPE,
330: dest IN OUT NOCOPY BLOB);
331:
332: --
333: -- Description: Create a DICOM image from a source raster image and

Line 337: -- metadata: DICOM metadata in XMLTYPE. It should have all the standard

333: -- Description: Create a DICOM image from a source raster image and
334: -- DICOM metadata.
335: -- Input:
336: -- src: The source raster image stored in ORDImage object.
337: -- metadata: DICOM metadata in XMLTYPE. It should have all the standard
338: -- and private attributes. It should have a new SOP instance
339: -- UID for the destination DICOM image.
340: -- dest: A DICOM image created from the source image and metadata.
341: -- Exception: None.

Line 345: metadata IN SYS.XMLTYPE,

341: -- Exception: None.
342: --
343: PROCEDURE createDICOMImage (
344: src IN ORDSYS.ORDImage,
345: metadata IN SYS.XMLTYPE,
346: dest IN OUT NOCOPY BLOB);
347:
348: --
349: -- Description: Make the source DICOM binary data anonymous after copying