Questions tagged [pixelmed]

A Java library for DICOM (medical imaging)

Pixelmed is a stand-alone DICOM toolkit that implements code for reading and creating DICOM data, DICOM network and file support, a database of DICOM objects, support for display of directories, images, reports and spectra, and DICOM object validation.

The toolkit is open source under BSD License terms.

The jar files, and compressed tar files of the source code and documentation are available here. The javadoc can also be viewed on-line.

http://www.pixelmed.com/

8 questions
1
vote
1 answer

DICOM Header parsing using pixelMed

Am trying to read DICOM Header using pixelMed Library. Here's the code snippet. try { DicomInputStream dis = new DicomInputStream (new ByteArrayInputStream(dicomHeaderBytes)); AttributeList attributeList = new…
Abhi
  • 149
  • 1
  • 4
1
vote
1 answer

Android - display DICOM image with PixelMed Java DICOM Toolkit

Do you know how can I display a DICOM image using PixelMed™ Java DICOM Toolkit on Android? If it is not possible which library should I use to do that?
Kris
  • 1,538
  • 2
  • 16
  • 27
0
votes
1 answer

How to get private vendor attribute tag in C_FIND from pixelmed?

i'm trying to read a private vendor tag from a dicom server. The only tags I'm able to read successfully are the standard DICOM tagFromNames the tag is 2001,100b, and in my example set of files they definitely have that entry in their header here is…
0
votes
0 answers

Failed resolution of: Ljavax/imageio/stream/FileImageInputStream when using Java library

I'm trying to make an app which creates a DICOM file. There is a java library called PixelMed. I tried to use it in my Android project but when accessing methods from the library I get Failed resolution of:…
Piotr
  • 71
  • 12
0
votes
1 answer

pixelmed : Cannot read dicom file

I am trying to follow the tutorial at https://saravanansubramanian.com/Saravanan/Articles_On_Software/Entries/2014/10/6_DICOM_Basics_-_Extracting_Image_Pixel_Data.html to read dicom files. Here is some code i run private static AttributeList list =…
AbtPst
  • 7,778
  • 17
  • 91
  • 172
0
votes
1 answer

Need guidance for DICOM compression using Pixelmed library

I am new to DICOM, I have already done compression of DICOM images using GDCM library. But as it creates dependency on Dll files, I am looking for alternatives ways to do it. I have came across PixelMed library Ref. PixelMed Library Documentation…
romil
  • 21
  • 2
0
votes
1 answer

How to access dicom attributes in nested sequences using pixelmed (java)?

I need to access all GantryAngle values within each ControlPointSequence attribute within the BeamSequence attribute. Here is a quick visualization of the nesting Beam Sequence ... Control Point Sequence Gantry Angle ... …
user2943464
  • 57
  • 1
  • 8
0
votes
1 answer

Read and Write on DICOM attribute with pixelmed

I'm trying to read data attribute from its tag in Java with the library pixelmed. the code that I had is : public static void main(String args[]) throws IOException, DicomException { DicomInputStream my_image = new DicomInputStream(new…