Questions tagged [evil-dicom]

Evil Dicom is a lightweight library written in C# enabling the inspection and manipulation of DICOM files. In its current implementation, it does not handle imaging or DIMSE networking.

git: https://github.com/rexcardan/Evil-DICOM home: http://evildicom.rexcardan.com/

Since recent changes in the last 6 months to the API, most discussion resources for Evil Dicom are now irrelevant.

21 questions
0
votes
1 answer

How to get the value with VR=FL, VM=2 in Evil DICOM

I tried to get the Tag value by using: var vSAD = sel.VirtualSourceAxisDistance.Data; I also tried var vSAD = dcm.FindAll("300A030A"); And it only returned one number (suppose to have 2). Then I tried to read elements and save to another dicom…
0
votes
1 answer

Evil DICOM -destination array was not long enough check destindex and length and the array's lower bounds

I am using EVIL DICOM image reader, it works well with some files, but some files give me this error: destination array was not long enough check destindex and length and the array's lower bounds I can't find the original website where I have…
hncl
  • 2,295
  • 7
  • 63
  • 129
0
votes
1 answer

Adding single dimension float array values

I have two questions regarding the Evil Dicom library. I know with the floats function, all of the pixel data is contained as float elements in a one dimensional array. My question here is how can I add up the individual elements to get one…
Adolf
  • 23
  • 3
-1
votes
1 answer

Reading DICOM file formats

I have used Evil DICOM library to read a DICOM file.It is displaying the Raw DICOM file correctly but it is not displaying the other formats.Plz suggest me solution or suggest me any other C# library which reads all the formats correctly.
Mahtab
  • 265
  • 2
  • 5
  • 14
-1
votes
1 answer

ROI info in DICOM Images using Evil Dicom

Currently I am able to open, display and do some image processing on DICOM images. I can also use the mouse to draw polygons. Can someone give me an indication on how I can make the inside of the polygon 1's and the outside 0's. What I would like to…
Adolf
  • 23
  • 3
-2
votes
1 answer

How to sort a tag with evil-DICOM?

I need to add a tag 'Dose Rate Set', but when i add the tag with this code. var dcm = DICOMObject.Read(nom_du_fichier); var refDoseRate = new DecimalString { Tag = TagHelper.DoseRateSet, Data =…
Pierre G
  • 3
  • 3
1
2