2

一連の DICOM 画像を読み込んで、ITK を使用して 3D 画像に変換したいと考えています。ドキュメントの例に従います: " Examples/IO/DicomSeriesReadImageWrite2.cxx" . しかし、私はまだ問題を抱えています。いくつかは解決しましたが、ヒントを聞きたいです!

問題は下線が引かれたコード行にあります。コードはこのすぐ下にあり、それほど長くはありません。コンパイルされ、変数 'seriesItr' の値は = "1.2.392.200036.9116.2.6.1.48.1214834239.1284941923.42443543.0512512" になります。しかし、変数「seriesEnd」はヌル ポインターです。私は何を間違っていますか?高度なご協力ありがとうございます。

// Reading a 2D DICOM Series and Writing a Volume 
  ReaderType::Pointer reader = ReaderType::New();

  ImageIOType::Pointer dicomIO = ImageIOType::New();
  reader->SetImageIO( dicomIO );
  NamesGeneratorType::Pointer nameGenerator = NamesGeneratorType::New();
  nameGenerator->SetUseSeriesDetails( true ); 

  std::string folder;
  folder = "C:\\Documents and Settings\\GTTS\\Mis documentos\\Visual Studio 2008\\Projects\\Reg_mono3D\\Reg_mono3D\\DICOM_SERIES\\T\\";
  nameGenerator->SetDirectory(folder);

  const SeriesIdContainer & seriesUID = nameGenerator->GetSeriesUIDs();
  SeriesIdContainer::const_iterator seriesItr = seriesUID.begin();
  ***SeriesIdContainer::const_iterator seriesEnd = seriesUID.end();***
  while( seriesItr != seriesEnd )
  {
        std::cout << seriesItr->c_str() << std::endl;
        seriesItr++;
  }

  std::string seriesIdentifier;
  seriesIdentifier = seriesUID.begin()->c_str();
  FileNamesContainer fileNames;
  fileNames = nameGenerator->GetFileNames( seriesIdentifier );

  reader->SetFileNames( fileNames );

  try
  {
        reader->Update();
  }
  catch (itk::ExceptionObject &ex)
  {
        cout << ex << std::endl;
  }
4

1 に答える 1

4

画像が100%準拠していない可能性はありますか?そこにある多くのツールキットは、あまり障害に耐えられず、ベンダーの90%が100%準拠していないようです。DCMtkツールdcmconvを使用してイメージを実行し、ファイルを「変換」してみます。dcmconvは100%準拠した方法でコピーをエクスポートするため、現在とまったく同じ設定でファイルを実行することが多いため、引用符で囲んだ変換を使用します。

dcmconvに関する情報は、ここにあります:http ://support.dcmtk.org/docs/dcmconv.html

意思

于 2011-12-18T19:55:54.243 に答える