PixelMed - DICOM Image Processing

I am very new to DICOM image processing and have just stumbled upon PixelMed .

I am having a problem using this library. I am just trying to read a DICOM file and display it with a few lines of code using javadoc .

Please let me know if you can link to some tutorials and examples of using this library.

+5
source share
1 answer

Javadoc has a code snippet for the SingleImagePanel class that explains how to do this. I repeat here for convenience

JFrame p = new JFrame();
p.add(new SingleImagePanel(new SourceImage(filename)));
p.setBackground(Color.BLACK);
p.setSize(512,512);
p.setVisible(true);

PixelMed , , , DCM4CHE ImageJ. .

  • PixelMed - DICOM
  • ImageJ -
  • DCM4CHE -

, ImageJ.

+9

All Articles