Skip to main content
Interwork Corporation
IDR Solutions Product Support Portal
モードの切替 ダーク/ライト/自動 モードの切替 ダーク/ライト/自動 モードの切替 ダーク/ライト/自動

Java DICOM Reader

JDeli Javaイメージライブラリには、DICOM画像をJavaに読み込むためのDICOM Readerが含まれています。DICOM Decoderは100% Javaで記述されており、依存関係なしでDICOMサポートを提供します。

主な特徴:

  • 100% Javaソリューション。dllやネイティブコードへの依存なし
  • 圧縮形式: 非圧縮、jpeg2000、jpeg、jpeg lossless
  • フレーム: 単一フレームまたは複数フレーム

クイックスタート:

JDeliはファイルタイプを自動的に検出し、DICOM File Readerを使用します

BufferedImage image = JDeli.read(dicomImageFile);

または

DicomDecoder decoder = new DicomDecoder();
BufferedImage image = decoder.read(dicomData);

完全なJavadocを参照

複数フレームのDICOMファイルの読み込み

これにはDicomDecoder クラスが必要です

File file = new File("/path/to/file");
DicomDecoder dec = new DicomDecoder();
int totalFrames = dec.getFrameCount(file);
for (int i = 0; i <= totalFrames; i++) {
   BufferedImage image = dec.read(i , file); // i is the frame number
   // Insert BufferedImage handling code here
}