DBA Data[Home] [Help]

ORDSYS.ORD_DICOM dependencies on ORDIMAGE

Line 96: -- data: The input DICOM binary data stored in ORDSYS.ORDImage object.

92:
93: --
94: -- Description: Get DICOM metadata in XML for a given XML metadata schema.
95: -- Input:
96: -- data: The input DICOM binary data stored in ORDSYS.ORDImage object.
97: -- extractOption:
98: -- 'ALL': Default. Extract all attributes from the DICOM binary data.
99: -- 'MAPPED': Extract only mapped attributes.
100: -- 'STANDARD': Extract only DICOM Standard attributes and mapped

Line 109: data IN ORDSYS.ORDImage,

105: -- Return: Metadata encoded in XML (not schema-validated)
106: -- Exception: None.
107: --
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:

Line 161: -- src: The input DICOM binary data stored in ORDSYS.ORDImage object.

157: -- new DICOM binary data. The original DICOM binary data is not changed.
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.

Line 170: src IN ORDSYS.ORDImage,

166: -- dest: BLOB to store the new DICOM binary data with the new metadata.
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: --

Line 214: -- src: The input DICOM image data stored in the source ORDImage object.

210: --
211: -- Description: Process and copy the input DICOM image data into a raster
212: -- image. The input DICOM image is not changed.
213: -- Input:
214: -- src: The input DICOM image data stored in the source ORDImage object.
215: -- command: The command could have following verbs:
216: -- fileformat, frameNumber (default 0), contentformat,
217: -- compressionformat, cut, scale, rotate, etc.
218: -- Refer to "Oracle Multimedia Reference Guide" process command

Line 224: src IN ORDSYS.ORDImage,

220: -- dest: The destination image stored in the destination BLOB.
221: -- Exception: None.
222: --
223: PROCEDURE processCopy (
224: src IN ORDSYS.ORDImage,
225: command IN VARCHAR2,
226: dest IN OUT NOCOPY BLOB);
227:
228: --

Line 280: -- src: The input DICOM image stored in the source ORDImage object.

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.
279: -- Input:
280: -- src: The input DICOM image stored in the source ORDImage object.
281: -- command: The command could have following verbs:
282: -- frameNumber (default 0),
283: -- contentformat, compressionformat, cut, scale, rotate.
284: -- Refer to "Oracle Multimedia Reference Guide" process command

Line 294: src IN ORDSYS.ORDImage,

290: -- image.
291: -- Exception: None.
292: --
293: PROCEDURE processCopy (
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);

Line 336: -- src: The source raster image stored in ORDImage object.

332: --
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.

Line 344: src IN ORDSYS.ORDImage,

340: -- dest: A DICOM image created from the source image and metadata.
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: --

Line 389: -- src: The input DICOM binary data in the source ORDImage object.

385: -- Description: Make the source DICOM binary data anonymous after copying
386: -- into another DICOM binary data. How to make the DICOM binary data
387: -- anonymous is determined by the parameter anonymityDocName.
388: -- Input:
389: -- src: The input DICOM binary data in the source ORDImage object.
390: -- dest_SOP_INSTANCE_UID: The SOP instance UID of the destination
391: -- DICOM binary data.
392: -- dest: The anonymous DICOM binary data in the destination BLOB.
393: -- anonymityDocName: The name of the anonymity definition document.

Line 397: src IN ORDSYS.ORDImage,

393: -- anonymityDocName: The name of the anonymity definition document.
394: -- Exception: None.
395: --
396: PROCEDURE makeAnonymous (
397: src IN ORDSYS.ORDImage,
398: dest_SOP_INSTANCE_UID IN VARCHAR2,
399: dest IN OUT NOCOPY BLOB,
400: anonymityDocName IN VARCHAR2 DEFAULT DEFAULT_ANONYMITY_DOC);
401:

Line 436: -- src: The input DICOM binary data in the source ORDImage object.

432: --
433: -- Description: Check if a DICOM binary data is anonymous according to the
434: -- anonymity definition document.
435: -- Input:
436: -- src: The input DICOM binary data in the source ORDImage object.
437: -- anonymityDocName: The name of the anonymity definition document.
438: -- Return: 0: not anonymous,
439: -- 1: anonymous.
440: -- Exception: None.

Line 443: src IN ORDSYS.ORDImage,

439: -- 1: anonymous.
440: -- Exception: None.
441: --
442: FUNCTION isAnonymous(
443: src IN ORDSYS.ORDImage,
444: anonymityDocName IN VARCHAR2 DEFAULT DEFAULT_ANONYMITY_DOC)
445: RETURN INTEGER;
446:
447: --

Line 481: -- src: The input DICOM binary data in the source ORDImage object.

477: --
478: -- Description: Check if a DICOM binary data conforms to a certain set of
479: -- constraint rules identified by the parameter constraintDocName.
480: -- Input:
481: -- src: The input DICOM binary data in the source ORDImage object.
482: -- constraintDocName: The name of the constraint.
483: -- Return: 0: invalid,
484: -- 1: valid.
485: -- Exception: None.

Line 488: src IN ORDSYS.ORDImage,

484: -- 1: valid.
485: -- Exception: None.
486: --
487: FUNCTION isConformanceValid (
488: src IN ORDSYS.ORDImage,
489: constraintName IN VARCHAR2
490: ) RETURN INTEGER;
491:
492: --Name: getMappingXPath