int main(int, char *[])
{
char * buffer = new char[ 256 * 256 *3 ];
char * p = buffer;
for(int row = 0; row < 256; ++row)
{
for(int col = 0; col < 256; ++col)
{
*p++ = 255;
*p++ = 0;
*p++ = 0;
}
}
const char mystr[] = "RGB";
sq->SetLengthToUndefined();
uint16_t row1 = 256;
uint16_t col1 = 256;
sq->AddItem(it);
std::ofstream of;
of.open( "output.dcm", std::ios::out | std::ios::binary );
delete [] buffer;
std::cout << "Not able to write";
return 0;
}
else
std::cout<<"\nabletoread";
std::cerr << "unable to write image information" << std::endl;
delete [] buffer;
return 1;
}
std::vector<unsigned int> extent =
unsigned short xmax = extent[0];
unsigned short ymax = extent[1];
unsigned short theChunkSize = 1;
unsigned short ychunk = extent[1]/theChunkSize;
unsigned short zmax = extent[2];
std::cout << xmax << ymax << zmax;
if (xmax == 0 || ymax == 0)
{
std::cerr << "Image has no size, unable to write zero-sized image." << std::endl;
return 0;
}
int z, y, nexty;
unsigned long prevLen = 0;
for (z = 0; z < zmax; ++z){
for (y = 0; y < ymax; y += ychunk){
nexty = y + ychunk;
if (nexty > ymax) nexty = ymax;
std::cout << "\n" <<len;
char* finalBuffer = new char[len];
memcpy(finalBuffer, &(buffer[prevLen]), len);
std::cout << "\nable to write";
if (!theStreamWriter.
Write(finalBuffer, len)){
std::cerr << "writing failure:" << "output.dcm" << " at y = " << y << " and z= " << z << std::endl;
delete [] buffer;
delete [] finalBuffer;
return 1;
}
delete [] finalBuffer;
prevLen += len;
}
}
delete buffer;
uint16_t firstTag1 = 0xfffe;
uint16_t secondTag1 = 0xe0dd;
uint32_t thirdTag1 = 0x00000000;
const int theBufferSize1 = 2*sizeof(uint16_t)+sizeof(uint32_t);
char* tmpBuffer2 = new char[theBufferSize1];
memcpy(&(tmpBuffer2[0]), &firstTag1, sizeof(uint16_t));
memcpy(&(tmpBuffer2[sizeof(uint16_t)]), &secondTag1, sizeof(uint16_t));
memcpy(&(tmpBuffer2[2*sizeof(uint16_t)]), &thirdTag1, sizeof(uint32_t));
assert( of && !of.eof() && of.good() );
of.write(tmpBuffer2, theBufferSize1);
of.flush();
assert( of );
return 0;
}
Attribute class This class use template metaprograming tricks to let the user know when the template ...
Definition gdcmAttribute.h:86
DataElement GetAsDataElement() const
Definition gdcmAttribute.h:183
Class to represent a Data Element either Implicit or Explicit.
Definition gdcmDataElement.h:59
void SetTag(const Tag &t)
Definition gdcmDataElement.h:71
void SetValue(Value const &vl)
Definition gdcmDataElement.h:100
void SetByteValue(const char *array, VL length)
Definition gdcmDataElement.h:126
void SetVR(VR const &vr)
Definition gdcmDataElement.h:88
Class to represent a Data Set (which contains Data Elements)
Definition gdcmDataSet.h:56
void Insert(const DataElement &de)
Definition gdcmDataSet.h:128
Element class.
Definition gdcmElement.h:70
DataElement GetAsDataElement() const
Definition gdcmElement.h:127
void SetValue(typename VRToType< TVR >::Type v, unsigned int idx=0)
Definition gdcmElement.h:105
a DICOM File
Definition gdcmFile.h:34
const DataSet & GetDataSet() const
Get Data Set.
Definition gdcmFile.h:57
const FileMetaInformation & GetHeader() const
Get File Meta Information.
Definition gdcmFile.h:48
static std::vector< unsigned int > GetDimensionsValue(const File &f)
Class to represent an Item.
Definition gdcmItem.h:46
const DataSet & GetNestedDataSet() const
Definition gdcmItem.h:80
Class to represent a Sequence Of Items.
Definition gdcmSequenceOfItems.h:40
Class for Smart Pointer.
Definition gdcmSmartPointer.h:40
StreamImageReader.
Definition gdcmStreamImageWriter.h:43
void SetFile(const File &inFile)
bool CanWriteFile() const
void DefinePixelExtent(uint16_t inXMin, uint16_t inXMax, uint16_t inYMin, uint16_t inYMax, uint16_t inZMin=0, uint16_t inZMax=1)
uint32_t DefineProperBufferLength()
void SetStream(std::ostream &inStream)
bool Write(void *inWriteBuffer, const std::size_t &inBufferLength)
virtual bool WriteImageInformation()
Class to represent a DICOM Data Element (Attribute) Tag (Group, Element).
Definition gdcmTag.h:39
@ ExplicitVRLittleEndian
Definition gdcmTransferSyntax.h:64
Class for generating unique UID.
Definition gdcmUIDGenerator.h:28
@ UI
Definition gdcmVR.h:87
@ CS
Definition gdcmVR.h:63
@ SQ
Definition gdcmVR.h:81
Writer ala DOM (Document Object Model)
Definition gdcmWriter.h:49
File & GetFile()
Definition gdcmWriter.h:67