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

Java DICOM リーダー

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

主要な情報:

  • 100% Java ソリューション。DLL やネイティブコードへの依存なし
  • 圧縮: 非圧縮、jpeg2000、jpeg、jpeg ロスレス
  • フレーム: 単一フレームまたはマルチフレーム

クイックスタート:

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

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
}