1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
/*=========================================================================
Program: Visualization Toolkit
Module: TestDICOMImageReaderFileCollection.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME Test of vtkDICOMImageReader
// .SECTION Description
//
#include "vtkSmartPointer.h"
#include "vtkDICOMImageReader.h"
#include "vtkImageData.h"
#include "vtkImageViewer2.h"
#include "vtkRenderer.h"
#include "vtkRenderWindowInteractor.h"
#include "vtkTestUtilities.h"
int TestDICOMImageReaderFileCollection(int argc, char *argv[])
{
if ( argc <= 1 )
{
cout << "Usage: " << argv[0] << " <dicom folder>" << endl;
return 1;
}
char* dirName = vtkTestUtilities::ExpandDataFileName( argc, argv, "Data/dicom/collection" );
std::string directoryName = dirName;
delete [] dirName;
vtkSmartPointer<vtkDICOMImageReader> DICOMReader =
vtkSmartPointer<vtkDICOMImageReader>::New();
// Read the input files
DICOMReader->SetDirectoryName(directoryName.c_str());
cout << "Directory name: " << DICOMReader->GetDirectoryName() << endl;
DICOMReader->Update();
// Read and display the image properties
const char* fileExtensions = DICOMReader->GetFileExtensions();
cout << "File extensions: " << fileExtensions << endl;
const char* descriptiveName = DICOMReader->GetDescriptiveName();
cout << "Descriptive name: " << descriptiveName << endl;
double* pixelSpacing = DICOMReader->GetPixelSpacing();
cout << "Pixel spacing: " << *pixelSpacing << endl;
int width = DICOMReader->GetWidth();
cout << "Image width: " << width << endl;
int height = DICOMReader->GetHeight();
cout << "Image height: " << height << endl;
float* imagePositionPatient = DICOMReader->GetImagePositionPatient();
cout << "Image position patient: " << *imagePositionPatient << endl;
float* imageOrientationPatient = DICOMReader->GetImageOrientationPatient();
cout << "Image orientation patient: " << *imageOrientationPatient << endl;
int bitsAllocated = DICOMReader->GetBitsAllocated();
cout << "Bits allocated: " << bitsAllocated << endl;
int pixelRepresentation = DICOMReader->GetPixelRepresentation();
cout << "Pixel representation: " << pixelRepresentation << endl;
int numberOfComponents = DICOMReader->GetNumberOfComponents();
cout << "Number of components: " << numberOfComponents << endl;
const char* transferSyntaxUID = DICOMReader->GetTransferSyntaxUID();
cout << "Transfer syntax UID: " << transferSyntaxUID << endl;
float rescaleSlope = DICOMReader->GetRescaleSlope();
cout << "Rescale slope: " << rescaleSlope << endl;
float rescaleOffset = DICOMReader->GetRescaleOffset();
cout << "Rescale offset: " << rescaleOffset << endl;
const char* patientName = DICOMReader->GetPatientName();
cout << "Patient name: " << patientName << endl;
const char* studyUID = DICOMReader->GetStudyUID();
cout << "Study UID: " << studyUID << endl;
const char* studyID = DICOMReader->GetStudyID();
cout << "Study ID: " << studyID << endl;
float gantryAngle = DICOMReader->GetGantryAngle();
cout << "Gantry angle: " << gantryAngle << endl;
// Display the center slice
int sliceNumber =
(DICOMReader->GetOutput()->GetExtent()[5] +
DICOMReader->GetOutput()->GetExtent()[4]) / 2;
// Visualize
vtkSmartPointer<vtkImageViewer2> imageViewer =
vtkSmartPointer<vtkImageViewer2>::New();
imageViewer->SetInputConnection(DICOMReader->GetOutputPort());
vtkSmartPointer<vtkRenderWindowInteractor> renderWindowInteractor =
vtkSmartPointer<vtkRenderWindowInteractor>::New();
imageViewer->SetupInteractor(renderWindowInteractor);
imageViewer->SetSlice(sliceNumber);
imageViewer->Render();
imageViewer->GetRenderer()->ResetCamera();
renderWindowInteractor->Initialize();
imageViewer->Render();
renderWindowInteractor->Start();
return 0;
}
|