init
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
/**
|
||||
* DicomElement.js
|
||||
* Version 0.5
|
||||
* Author: BabuHussain<babuhussain.a@raster.in>
|
||||
*/
|
||||
function DicomElement(name,vr,vl,group,element,value,offset) {
|
||||
this.vr_type=vr;
|
||||
// Element Value
|
||||
this.value=value;
|
||||
// Element code
|
||||
this.code;
|
||||
this.length=vl;
|
||||
this.header;
|
||||
this.group=group;
|
||||
this.element=element;
|
||||
this.offset=offset;
|
||||
this.name=name;
|
||||
this.transfer_syntax;
|
||||
}
|
||||
Reference in New Issue
Block a user