Digital Imaging and Communications in Medicine (DICOM) is a standard for the exchange, storage and other handling of medical images and other associated data, such as patient information.
0
votes
1answer
18 views
Convert mouse coordinates to bitmap coordinates in DICOM imaging
I am rendering a DICOM image on my PC. During the process, I felt the need of calculating Hounsfield Units.For that, when i move my mouse over the image, it should get automatically converted to the ...
-1
votes
1answer
20 views
Draw ECG Graph from ECG (Dicom) Modality
How to draw ECG Graph from ECG (Dicom) Modality.
which tags are use to draw intervals or scale on X.Y axis
and
How to draw X,Y co-ordinate over the X.Y axis i.e. to plot the points over the graph ...
0
votes
0answers
17 views
ECG Dicom Modality Graphical Data Display
The (5400,0100) Waveform Sequence Tag having various child element such as Item(FFFE,E000) in ECG Modality. and this item tag contains also some sub tags mainly
TAG ...
1
vote
1answer
35 views
How to use jai image io tools in my project?
I'm trying to read some JPEG2000 images and show in my project. by the way, these images are DICOM file. After recognizing type of image, I wrote this code:
if ...
1
vote
0answers
23 views
itk dcmtk how to read multiframe images
I am trying to read multi-frame dicom image (single file with multiple frames inside) with itkDCMTKImageIO class. Sample code can be seen below:
typedef char PixelType;
...
0
votes
1answer
30 views
Plotting the Graph against ECG Modality
ECG
I have no previous experience in plotting the Graph. I want to plot ECG Graph w.r.to their Waveform Sequence How it can be achieve and below are some points that also i need to ask....
1)I want ...
0
votes
1answer
25 views
DICOM to grayscale in matlab
How can I convert a DICOM image into a grayscale image in matlab?
Thanks.
-2
votes
0answers
23 views
What is a good database tool to point to and manage multiple medical imaging file types, and associated metadata? [closed]
I'm working on a large preclinical imaging project, and have multiple file types associated with each experimental subject for different image modalities. The goal is to turn this collection of data ...
0
votes
0answers
27 views
Tranbsformation of client point to bitmap point
I m rendering dicom image in picturebox i got succeed in rendering. now I am calculating HU value from pixelvalue, for that I want.
"How to convert mouse coordinates(i.e location when mouse clicked) ...
0
votes
1answer
44 views
c# converting list of BMP to array of DICOM files
I can convert bitmap to DICOM using the following:
Bitmap bmp = new Bitmap(System.Drawing.Image.FromFile(System.Web.HttpContext.Current.Server.MapPath("~/FileName)));
Color c = ...
0
votes
3answers
41 views
Add new tags on dcm4chee
I'm working with dcm4chee now,and I have the demand to add some custom fields,for example patient's ID card number,mobile fhone number and address.
After googling some related information,I am still ...
0
votes
0answers
24 views
Calculating voxel volume from PixelSpacing and SliceThickness in DICOM files
To calculate the physical volume of an isometric voxel, should you make a multiplication of the two values noted under the dicom tag PixelSpacing and the single value noted under the dicom tag ...
0
votes
1answer
31 views
Display marker over dicom image from CADSR file that are necessary to show
I am trying to read an CADSR file I get an various marker from "Graphics Data Tag" I want to show only those marker over the Dicom file that are necessary so let me know what criteria is required to ...
0
votes
2answers
27 views
How can adding jar to build path affect code even if I don't use any of classes included at it
I had a situation of adding .dic file (DICOM: Digital Imaging and Communications in Medicine Format) into a swing java application and I had Dicom.jar to recognize the .dic
extentions
once I added ...
0
votes
2answers
53 views
Why my pixel value of DICOM is beyond 'Largest Image Pixel Value' attribute?
I'm using dcmtk to fetch image data from dicom data. Now I have following information for a sample image:
(0028,0002) Samples per Pixel: 1
(0028,0004) Photometric Interpretation: MONOCHROME2
...
0
votes
1answer
64 views
How to show legally DICOM 16 unsigned integer on the device are supporting 8 bit unsigned integer?
I'm working on a Medical app on iOS. The iOS devices just support GL_UNSIGNED_BYTE with GL_LUMINANCE or generally just support 8 bit per component. Now I have some grayscale images are 16 bit unsigned ...
0
votes
1answer
37 views
CAD SR Marker over Dicom Image [closed]
I have referred to various sites for CAD SR Marker to draw marker notation over a DICOM MG Image. On some sites I found a bunch of markers has a different meaning to one marker drawn at a ...
0
votes
1answer
44 views
What is the difference between a DICOM viewer vs a PACS system or RIS
I have installed OsiriX is my computer which is an open source DICOM viewer. I was wondering what would make this different from a PACS (Picture archiving and communication system) or RIS (Radiology ...
0
votes
2answers
54 views
Export Dicom images to tif format
using (Bitmap bmp = (Bitmap)Bitmap.FromFile(C:\Users\112\AppData\Local\Temp\113837.dcm))
{
// obtain the XResolution and YResolution TIFFTAG values
PropertyItem piXRes = ...
0
votes
3answers
60 views
What are some common practices for implementing a DICOM local data store in Windows? [closed]
I am developing a Windows DICOM viewer kind of application, using Visual C++/MFC and dcmtk, and would like to implement a local data store for images that I have retrieved from a PACS server. My first ...
0
votes
1answer
48 views
Need some sample dcm files for structure report(Ultrasound)
I need some sample dcm files for structure report(Ultrasound). Could anyone please help me?
0
votes
1answer
61 views
JavaScript loop - Ajax image animation asp.net MVC
My application is asp.net MVC, I am using the following script to change Z axis of a 3D image and display the resulted images as animation:
for (var i = 1; i < 202 * sThickness; i++) {
...
0
votes
1answer
42 views
Android development: how to open a .dcm file as a bitmap?
I'm currently trying to make an android dicom app
Following code opens pictures drom res/drawable in "ussual" image formats, but it doesn't work with .dcm
public class BitmapView extends View
{
...
0
votes
1answer
62 views
Superimpose images MATLAB(grey with color)
I have two matrices, the first is the ROI from an dicom image (grey scale) and the second is a matrix with values between 0-1.
In the second matrix I did a thresholding and kept only the values of a ...
0
votes
0answers
56 views
DICOM JavaScript - images loop
My application is asp.net MVC, I am generating the DICOM images using image handler as follows:
...
objImage = im.Bitmap(outputSize, PixelFormat.Format24bppRgb, m);
...
0
votes
1answer
104 views
asp.net MVC memory stream DICOM image to session variable
I am generating images on fly from DICOM files using:
public ActionResult Generatemage()
{
FileContentResult data;
.....
objImage = im.Bitmap(outputSize, ...
0
votes
2answers
77 views
Programming with GDCM in Windows and changing pixel data with VTK?
I have two questions.
First: I haven't got any definite documentation on how to use the GDCM library in Windows. Is it at all possible to use GDCM library in Visual Studio in windows? If so, could ...
0
votes
0answers
103 views
Rotate DICOM MPR image using mouse position in asp.net MVC C# - Ajax
Currently I am displaying the DICOM image in the view using the following:
Controller script:
public ActionResult GenerateImage1(float pX = 0 , float pY = 0, float pZ = 0)
{
......
...
0
votes
1answer
94 views
Displaying DICOM MPR image in asp.net MVC view c#
My application is asp.net MVC3; currently I can display DCIOM MPR images using image handler and storing the image in the session using:
objImage = im.Bitmap(outputSize, ...
0
votes
1answer
79 views
Sorting dicom dataset in Matlab
Hi have about 5000 2d images from multiple CT-scans and need to get them sorted. The dataset is directly imported from a GE workstation.
Right now the images are in bunches of about 10 sorted images ...
1
vote
0answers
91 views
change window center and window width of canvas image Html5
I have jpg images(from DICOM file) that I getting from server. I use these files to set canvas image data. Now I want to change window center and window width of images but don't know what and how to ...
0
votes
2answers
57 views
How could I know a tag's specific meaning in DICOM?
I was doing a project on dicom, and I found the DICOM Standard document(http://medical.nema.org/standard.html) is really a mess for programmers.For example when I come across a Tag(0008, 0060), I look ...
1
vote
1answer
103 views
Enhanced SR SOP Class“1.2.840.10008.5.1.4.1.1.88.22” Is useful to draw Region of Interest
SOP Class UID :- "1.2.840.10008.5.1.4.1.1.88.22" of Enhanced SR SOP Class Name
In this SR Modality having various dicom tags from these various tag I want to draw the "Region of Interest"(ROI) on ...
1
vote
1answer
53 views
How to Draw Marker in MRI File With Respect to Contrast Agent
I am really confuse over the draw overlay
on MRI Image means its part is similar to Structure Report(SR) Processing or not
I am trying to read the MRI File in such way that from Contrast Agent. ...
1
vote
1answer
72 views
DCE MRI time axis
What is the time sample interval in DCE MRI data. That means, I have the signal intensities over time (30 time samples) of one pixel and I want to know what is the sample interval.
Is it the TR or ...
0
votes
1answer
59 views
Flex Dcm file loading
Working on a project which requires loading dicom files in flex.
Any ideas about loading a DCM(Dicom) file in a flex application
0
votes
2answers
98 views
Java Servlets and ImageIO error
i'm trying to write a WebApplication which views some DICOM files. My idea was to convert the DICOM files to JPEG on the fly by calling my servlet.
I use dcm4che 2.0.27 to convert the files.
The ...
0
votes
0answers
84 views
How to check if DICOM object is an image (at least in WADO)
Currently im developing a lightweight PACS viewer for the web. This viewer retrieves these images from the WADO.
The user needs to choose an patient/study/serie and eventually an instance. But how ...
0
votes
1answer
183 views
Tranforming raw pixel using rescale slope and rescale intercept in DIcom
I used the solution in this post Window width and center calculation of Dicom Image to transform the raw pixel, it works good most of the images, but i faced problem with some images. That images ...
0
votes
0answers
40 views
Using DicomDroid lib
I'm trying to use DicomDroid lib (http://code.google.com/p/dicom-droid/) in my android application.
During the development I found some things that don't let me to proceed:
1) this lib has no docs at ...
1
vote
1answer
67 views
how to established the link between the CAD SR and Dicom File for draw the CAD SR marker on Dicom File
I have a CAD SR File: SOP instance UID 1.2.840.113986.3.10197.20090225.112659.896
This CAD SR file contains 4 Reference SOP Instance UID of the form:
1.2.840.113681.2205083097.3077.3412506770.58.1
...
0
votes
0answers
121 views
ClearCanvas installation help - building from source
Got the latest ClearCanvas code which is in VS 2010 format, both the ImageViewer and ImageServer projects compiled fine. I am looking to run the WebStation - the sliverlight viewer. ClearCanas ...
-1
votes
2answers
145 views
What is 3D DICOM file and difference 3D and 2D dicom file [closed]
Do you know how to difference between 3D DICOM file and 2D DICOM file? What is 3D DICOM file. Thank you very much
0
votes
1answer
195 views
Displaying 3D medical images using Java 3D
I have 3D medical image (.dcm file) with me. Working with Java 3D API in eclipse. I am unable to code to display 3D image. Please help.
Thanks in advance.
0
votes
5answers
113 views
What do I need to know to write a dcm file explorer?
I'm recently asked to write a simple dcm file explorer (read the .dcm file and display with some zoom in/out functions). I have some .net experience(WPF, WinForm etc) but know little about the dicom. ...
0
votes
2answers
136 views
How to link multiple libraries using CMake
I have some code to do with DCMTK. I can successfully build and run it if I use g++ from the command line. This is the code:
#include "dcmtk/config/osconfig.h"
#include "dcmtk/dcmdata/dctk.h"
int ...
0
votes
1answer
177 views
CT cardic Dicom MPR, asp.net MVC c# upload options
my application is asp.net MVC3, I have developed a dicom viewer using image handler and it works well, now the challenge is CT cardic MPR images, some cases are more than 3000 images, I could not open ...
0
votes
0answers
47 views
Dicom SR additional container creation and inserting its value
I am trying to create Dicom SR using the dcm4che api. I am able to create a report with container and values for "finding". I am inserting the findings value at the tag location "0040A730[3]/0040A730" ...
0
votes
2answers
146 views
Image type in DICOM Standard MONOCHROME1 and MONOCHROME2
I have a question for image type in dicom standard. In the dicom document I found image type has five types which are :
MONOCHROME1
MONOCHROME2 MPEG2 -single component data
YBR_ICT
YBR_RCT
...
1
vote
1answer
231 views
How to Extract Pixel data from DIcom image to view it in a n iPhone
I have been using the following code to read a dicom image using DCMTK frame work to display it in a UIImage view.
NSString *dcmFilename = [[NSBundle mainBundle] pathForResource:@"1" ...


