Questions tagged [dicom]

Digital Imaging and Communications in Medicine (DICOM) standard defines formats for storing and communicating medical images. Non-programming specific questions about DICOM are off-topic for Stack Overflow. For questions related to a specific tool-kit, use a more specific tag in addition to, or instead of, this tag.

Digital Imaging and Communications in Medicine (DICOM) standard defines formats for storing and communicating medical images. It's used to enable interoperability between applications from multiple manufacturers which store or communicate medical images.

Further details can be found at the DICOM Wikipedia page or DICOM Homepage.

1158 questions
-1
votes
2 answers

Access Reading Violation when writing a DICOM with vtkDICOMWriter

I'm trying to write vtkImageData as a DICOM. I keep getting an "Access Reading Violation" when I try to write the image. Unhandled exception at 0x00007FFDA30ECA50 : 0xC0000005: Access violation reading location 0x000001BD38D5C000 Here is my code:…
Lambda1010
  • 369
  • 2
  • 3
  • 13
-1
votes
1 answer

How to display a specific dicom image (Papaya)?

I am using the rii-mango/Papaya to display dicom-files. I upload a folder containing 243 dicom files. It always starts in the middle of the files (here image 121) but I want to start with image 243. Is there a function to display a specific image? I…
P Star
  • 67
  • 2
  • 13
-1
votes
1 answer

Can we modify the transfer syntax UID tag of a DICOM image?

While importing MRI image sets in Varian Eclipse Planning System, Error occured: Objects conversion unsupported 'Transfer Syntax UID' (0002,0010) 'JPEG Lossless Hier 14
-1
votes
1 answer

How to differentiate CT images from two different manufacturers using DCMTK commands?

I am trying to pull images from a server. I am interested in pulling CT images for a specific patient. I am executing the following DCMTK commands from the command prompt (windows): 1) I get the Study Instance UID of my Patient ID…
jorge
  • 364
  • 3
  • 8
-1
votes
1 answer

display image by using uint16array data

I am doing a DICOM project using XTK library. Now I need to create a list of thumbnails from input DICOM files (output images could be PNG or JPG). During the rendering process, XTK provides an array of pixel data in an Uint16Array of each DICOM…
-1
votes
1 answer

How to delphi send and receive command c-echo, c-get dicom communication pacs or modality

How do I get the message from any pacs server Delphi and display this message ASCII format in memo1 is it possible to use could this indy component. This is an example code from http://sourceforge.net/projects/indy10clieservr/ Send C-ECHO Command…
cvg
  • 31
  • 1
  • 7
-1
votes
1 answer

Cannot import dicom images in SPM

I have some dicom images which SPM cannot import them, for each dcm file I see the below error: S11956_I11604.dcm" does not seem to have positional information. It seems my dcm files do not have DimensionIndexSequence field. I tried to convert them…
ahp
  • 1
  • 2
-1
votes
1 answer

How to invoke C-STORE when trying to query from SCP

I've been using the following code, which is from the pynetdicom library to query and store some images from a remote server SCP, on my machine(SCU). """ Query/Retrieve SCU AE example. This demonstrates a simple application entity that support the…
Samimoti
  • 19
  • 5
-1
votes
1 answer

Unable to login to ClearCanvas, "Attempted to read or write protected memory. This is often an indication that other memory is corrupt"

enter image description here Hi, We always encounter this error on every Clearcanvas Server on my company. We tried to restart both mssql and clearcanvas service on Services.msc, and yet the error is reccurring. Our last resort is to restart the…
-1
votes
1 answer

Fo-Dicom addupdate,delete and search Header Tages

Is there anyone who can help me to add update,delete and search functionality in Dicom header with fo-dicom. i want to save image pixel data in dicom header. im working in https://github.com/fo-dicom/fo-dicom In desktop c#
-1
votes
1 answer

How to use XTK read arrayBuffer data

I would like to know how to read arrayBuffer data (DICOM arrayBuffer) by using XTK library. I have already tried lots methods, but do not work.
-1
votes
1 answer

Subtracting image background defined by segmentation masks in python

I want to segment the liver from medical images in python. My approach is organizing the images into folders (one folder for every patient ID) and combining every 2D image with its corresponding mask. The resulting image should be written so the…
user8827512
-1
votes
1 answer

Download Multiple Images with ahref as Zip in jquery

Iam working with dicom images using dcm4che. Iam setting wado request to ahref in order to download the images but iam not getting it. This is my html code with wado request:
user7378606
-1
votes
1 answer

Has anyone used the Papyrus toolkit in an iPhone / iPad application to view DICOM images?

Does anyone have any experience integrating the Papyrus toolkit in an iPhone / iPad application in order to display DICOM medical images? I have the Papyrus toolkit integrated with my Objective-C code, but I am struggling to get it to display a…
rick
  • 45
  • 2
  • 9
-1
votes
1 answer

How access the binary data of a file?

ifstream fp; fp.open(path, ios::in | ios::binary); //path is the path of the DICOM file I want to read fstream output; output.open("C:\\Users\\Z00\\dump.txt", ios::in | ios::out | ios::trunc | ios::binary); if (fp.is_open()) { while…