GDCM 3.0.24
FixOrientation.cxx
/*=========================================================================
Program: GDCM (Grassroots DICOM). A DICOM library
Copyright (c) 2006-2011 Mathieu Malaterre
All rights reserved.
See Copyright.txt or http://gdcm.sourceforge.net/Copyright.html 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.
=========================================================================*/
#include "gdcmReader.h"
#include "gdcmWriter.h"
#include "gdcmFile.h"
#include "gdcmAttribute.h"
// Very simple orientation changer, fix invalid dataset
int main(int argc, char* argv[] )
{
// assume AXIAL input for now
if( argc < 3 )
{
std::cerr << argv[0] << " input.dcm output.dcm" << std::endl;
return 1;
}
const char *filename = argv[1];
const char *outfilename = argv[2];
gdcm::Reader reader;
reader.SetFileName( filename );
if (! reader.Read() )
{
return 1;
}
const double axial[] = { 1,0,0, 0,1,0 };
(void)axial;
const double coronal[] = { 0,0,1, 1,0,0 };
(void)coronal;
const double sagittal[] = { 0,1,0, 0,0,1 };
(void)sagittal;
(void)at1;
(void)at2;
gdcm::File & f = reader.GetFile();
at1.SetFromDataSet( ds );
#if 0
at2.SetFromDataSet( ds );
const double * iop = at2.GetValues();
if( !std::equal(iop, iop + 6, axial ) )
{
std::cerr << "Wrong orientation: " << gdcm::Orientation::GetLabel( type ) << std::endl;
return 1;
}
at2.SetValues( sagittal );
#endif
// for sagittal: swap element 0 & 2
const double tmp0 = at1.GetValue(0);
const double tmp2 = at1.GetValue(2);
(void)tmp2;
//at1.SetValue(tmp2, 0);
//at1.SetValue(tmp0, 2);
at1.SetValue( - tmp0 );
gdcm::Writer writer;
writer.SetFile( f );
writer.SetFileName( outfilename );
if ( !writer.Write() )
{
return 1;
}
return 0;
}
Attribute class This class use template metaprograming tricks to let the user know when the template ...
Definition gdcmAttribute.h:86
void SetValue(ArrayType v, unsigned int idx=0)
Definition gdcmAttribute.h:169
const ArrayType * GetValues() const
Definition gdcmAttribute.h:178
ArrayType & GetValue(unsigned int idx=0)
Definition gdcmAttribute.h:154
void SetValues(const ArrayType *array, unsigned int numel=VMType)
Definition gdcmAttribute.h:173
void SetFromDataSet(DataSet const &ds)
Definition gdcmAttribute.h:229
DataElement GetAsDataElement() const
Definition gdcmAttribute.h:183
Class to represent a Data Set (which contains Data Elements)
Definition gdcmDataSet.h:56
void Replace(const DataElement &de)
Replace a dataelement with another one.
Definition gdcmDataSet.h:150
a DICOM File
Definition gdcmFile.h:34
const DataSet & GetDataSet() const
Get Data Set.
Definition gdcmFile.h:57
static OrientationType GetType(const double dircos[6])
static const char * GetLabel(OrientationType type)
Return the label of an Orientation.
OrientationType
Definition gdcmOrientation.h:35
Reader ala DOM (Document Object Model)
Definition gdcmReader.h:54
const File & GetFile() const
Set/Get File.
Definition gdcmReader.h:72
virtual bool Read()
Main function to read a file.
void SetFileName(const char *filename_native)
Writer ala DOM (Document Object Model)
Definition gdcmWriter.h:49
virtual bool Write()
Main function to tell the writer to write.
void SetFile(const File &f)
Set/Get the DICOM file (DataSet + Header)
Definition gdcmWriter.h:66
void SetFileName(const char *filename_native)
Set the filename of DICOM file to write: