Blame view

legacy/rts_itkVolume.h 20.3 KB
f1402849   dmayerich   renewed commit
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
  #ifndef RTS_ITKVOLUME_H

  #define RTS_ITKVOLUME_H

  

  #include <WTypes.h>

  #include "itkImage.h"

  #include "itkImageFileReader.h"

  #include "itkImageFileWriter.h"

  #include "itkRawImageIO.h"

  #include "itkImageRegionIterator.h"

  #include <string>

  #include "rtsFilename.h"

  #include "rtsDTGrid3D.h"

  using namespace std;

  

  #include "itkRescaleIntensityImageFilter.h"

  

  #include "rts_itkImage.h"

  

  void rtsProgressBar(int percent);

  

  template <class T> class rts_itkVolume

  {

  public:

  	typedef int uint;

  	typedef itk::Image<T, 3> ITKVolumeType;	

  	typedef typename ITKVolumeType::Pointer PointerType;

  	typedef itk::Image<T, 2> ITKSliceType;

  	

  	//typedef itk::Image<typename T, 3> ITKVolumeType;

  private:

  	//pointer to the data

  	PointerType imageData;

  

  	char* UnicodeToANSI(wchar_t* unicodestr)

  	{

  		int a = wcslen(unicodestr)+1;

  		char *ansistr = new char[a];

  		::WideCharToMultiByte(CP_ACP, 

  								0, 

  								unicodestr, 

  								-1, 

  								ansistr, 

  								a, 

  								NULL, 

  								NULL);

  		return ansistr;

  

  	}

  

  	BSTR ANSIToUnicode(const char* ansistr)

  	{

  		/*On a side note:  This BSTR crap isn't the way to go.

  		Try to use wchar_t (Unicode) where possible.  Already changed it in

  		the above function because it was causing a bug.*/

  

  		int a = strlen(ansistr);

  		BSTR unicodestr = SysAllocStringLen(NULL, a);

  		::MultiByteToWideChar(CP_ACP, 0, ansistr, a, unicodestr, a);

  		return unicodestr;

  	}

  

  public:

  	//construct an implicit function with a size of 1

  	rts_itkVolume();			///<Create an empty implicit function

  	//construct an implicit function of the specified resolution

  	rts_itkVolume(uint res_x, uint res_y, uint res_z);	///<Create an implicit function with the specified resolution

  	void Init(uint res_x, uint res_y, uint res_z);

  	void SetSpacing(float voxel_x, float voxel_y, float voxel_z);

  	void Clear();

  

  	

  	//loading/saving data to disk

  	void LoadRAW(uint header_size, uint data_x, uint data_y, uint data_z, string filename);	///<Loads RAW data from a file with the specified header size and data size.

  	void SaveRAW(string filename);							///<Save the data as RAW data to disk.

  	void LoadVOL(string filename);							///<Load a VOL file from disk.

  	void SaveVOL(string filename);							///<Save a VOL file to disk.

  	void LoadRAV(string filename);							///<Load a VOL file from disk.

  	void SaveRAV(string filename);							///<Save a VOL file to disk.

  	void LoadStack(string directory, string filename_mask, int max_files = -1);

  	void LoadSlice(string filename, int slice);

  

  	void InsertSlice(uint z_position, typename ITKSliceType::Pointer slice);

  

  	

  	//data access methods

  	T operator ()(uint x, uint y, uint z);

  	PointerType GetITKPointer(){return imageData;}

  	T* GetBits(){return imageData->GetBufferPointer();}

  	T GetMin();

  	T GetMax();

  

  	void SetITKPointer(PointerType pointer){imageData = pointer;}

  	uint DimX(){return imageData->GetLargestPossibleRegion().GetSize()[0];}

  	uint DimY(){return imageData->GetLargestPossibleRegion().GetSize()[1];}

  	uint DimZ(){return imageData->GetLargestPossibleRegion().GetSize()[2];}

  

  	float VoxelSizeX(){return imageData->GetSpacing()[0];}

  	float VoxelSizeY(){return imageData->GetSpacing()[1];}

  	float VoxelSizeZ(){return imageData->GetSpacing()[2];}

  	void SetPixel(uint x, uint y, uint z, T value);

  	void SetSlice(rts_itkImage<T> image, int slice);

  	T GetPixel(uint x, uint y, uint z);

  	rts_itkImage<T> GetSlice(int slice);

  	rts_itkVolume<T> SubVolume(uint px, uint py, uint pz, uint sx, uint sy, uint sz);

  

  	//mathematica operations

  	T operator=(T rhs);

  	rts_itkVolume<T> operator-(T rhs);

  	rts_itkVolume<T> operator+(T rhs);

  	rts_itkVolume<T> operator-(rts_itkVolume<T> rhs);

  

  	void Print(ostream &os);

  

  	//simple data processing

  	void Rescale(T new_min, T new_max);

  	void Binary(T threshold, T true_value);		///<Turns the image into a binary image based on a threshold value T.  All values below T are set to 0, all values above are set to true_value.

  

  	void InsertDTGrid(rtsDTGrid3D<T>* grid, bool debug = false);

  };

  

  template <class T>

  rts_itkVolume<T> rts_itkVolume<T>::SubVolume(uint px, uint py, uint pz, uint sx, uint sy, uint sz)

  {

  	/*This function returns the sub-volume specified by a corner point and size*/

  

  	//first make sure that the sub-volume is contained within the image

  	if(px < 0) {sx += px; px = 0;}

  	if(py < 0) {sy += py; py = 0;}

  	if(pz < 0) {sz += pz; pz = 0;}

  	if(px >= DimX()) px = DimX() - 1;

  	if(py >= DimY()) py = DimY() - 1;

  	if(pz >= DimZ()) pz = DimZ() - 1;

  	if(px + sx > DimX()) sx = DimX() - px - 1;

  	if(py + sy > DimY()) sy = DimY() - py - 1;

  	if(pz + sz > DimZ()) sz = DimZ() - pz - 1;

  

  	//cout<<px<<","<<py<<","<<pz<<","<<sx<<","<<sy<<","<<sz<<endl;

  

  	//create the resulting volume

  	rts_itkVolume destination(sx, sy, sz);

  

  	//get an iterator for the destination volume

  	itk::ImageRegionIterator<ITKVolumeType> d(destination.imageData, destination.imageData->GetLargestPossibleRegion());

  

  	//get an iterator for the source region

  	ITKVolumeType::RegionType region;

  	ITKVolumeType::IndexType index;

  	ITKVolumeType::SizeType size;

  	index[0] = px; index[1] = py; index[2] = pz;

  	size[0] = sx; size[1] = sy; size[2] = sz;

  	region.SetIndex(index);

  	region.SetSize(size);

  	itk::ImageRegionIterator<ITKVolumeType> s(imageData, region);

  

  	//copy the data from source region to destination volume

  	for(s.GoToBegin(), d.GoToBegin();

  		!s.IsAtEnd();

  		s++, d++)

  		d.Set(s.Get());

  

  	return destination;

  

  }

  

  template <class T>

  T rts_itkVolume<T>::operator=(T rhs)

  {

  	/*itk::ImageRegionIterator<ITKVolumeType> i(imageData, imageData->GetLargestPossibleRegion());

  	

  	for(i.GoToBegin(); !i.IsAtEnd(); i++)

  		i.Set(rhs);

  */

  	imageData->FillBuffer(rhs);

  	return rhs;

  }

  template <class T>

  rts_itkVolume<T> rts_itkVolume<T>::operator-(T rhs)

  {

  	rts_itkVolume<T> result(DimX(), DimY(), DimZ());

  

  	itk::ImageRegionIterator<ITKVolumeType> w(result.imageData, result.imageData->GetLargestPossibleRegion());

  	itk::ImageRegionIterator<ITKVolumeType> r(imageData, imageData->GetLargestPossibleRegion());

  

  	for(r.GoToBegin(), w.GoToBegin(); !r.IsAtEnd(); r++, w++)

  		w.Set(r.Get() - rhs);

  

  	return result;

  }

  

  template <class T>

  rts_itkVolume<T> rts_itkVolume<T>::operator+(T rhs)

  {

  	rts_itkVolume<T> result(DimX(), DimY(), DimZ());

  

  	itk::ImageRegionIterator<ITKVolumeType> w(result.imageData, result.imageData->GetLargestPossibleRegion());

  	itk::ImageRegionIterator<ITKVolumeType> r(imageData, imageData->GetLargestPossibleRegion());

  

  	for(r.GoToBegin(), w.GoToBegin(); !r.IsAtEnd(); r++, w++)

  		w.Set(r.Get() + rhs);

  

  	return result;

  }

  

  template <class T>

  rts_itkVolume<T> rts_itkVolume<T>::operator-(rts_itkVolume<T> rhs)

  {

  	rts_itkVolume<T> result(DimX(), DimY(), DimZ());

  

  	itk::ImageRegionIterator<ITKVolumeType> w(result.imageData, result.imageData->GetLargestPossibleRegion());

  	itk::ImageRegionIterator<ITKVolumeType> r(rhs.imageData, rhs.imageData->GetLargestPossibleRegion());

  	itk::ImageRegionIterator<ITKVolumeType> l(imageData, imageData->GetLargestPossibleRegion());

  

  	for(r.GoToBegin(), l.GoToBegin(), w.GoToBegin(); 

  		!r.IsAtEnd(); 

  		r++, l++, w++)

  		w.Set(l.Get() - r.Get());

  

  	return result;

  }

  

  template <class T>

  void rts_itkVolume<T>::Print(ostream &os)

  {

  	ITKVolumeType::SizeType size;

  	size = imageData->GetLargestPossibleRegion().GetSize();

  

  	int x, y, z;

  	for(z=0; z<size[2]; z++)

  	{

  		os<<"z = "<<z<<":"<<endl;

  		for(y=0; y<size[1]; y++)

  		{

  			for(x=0; x<size[0]; x++)

  				os<<GetPixel(x, y, z)<<" ";

  			os<<endl;

  		}

  	}

  }

  

  template <class T>

  rts_itkVolume<T>::rts_itkVolume()

  {

  	imageData = ITKVolumeType::New();

  }

  

  template <class T>

  rts_itkVolume<T>::rts_itkVolume(uint res_x, uint res_y, uint res_z)

  {

  	imageData = ITKVolumeType::New();

  

  	itk::Image<T, 3>::RegionType region;

  	itk::Image<T, 3>::SizeType size;

  	size[0] = res_x;

  	size[1] = res_y;

  	size[2] = res_z;

  

  	region.SetSize(size);

  	imageData->SetRegions(region);

  	

  	try

  	{

  		imageData->Allocate();

  	}

  	catch(itk::ExceptionObject & exp)

  	{

  		std::cout<<exp<<std::endl;

  	}

  		

  }

  

  template <class T>

  void rts_itkVolume<T>::Init(uint res_x, uint res_y, uint res_z)

  {

  	itk::Image<T, 3>::RegionType region;

  	itk::Image<T, 3>::SizeType size;

  	size[0] = res_x;

  	size[1] = res_y;

  	size[2] = res_z;

  

  	region.SetSize(size);

  	imageData->SetRegions(region);

  

  	

  	try

  	{

  		imageData->Allocate();

  	}

  	catch(itk::ExceptionObject & exp)

  	{

  		std::cout<<exp<<std::endl;

  	}

  }

  

  template <class T>

  void rts_itkVolume<T>::SetSpacing(float voxel_x, float voxel_y, float voxel_z)

  {

  	float spacing[3];

  	spacing[0] = voxel_x; spacing[1]= voxel_y; spacing[2] = voxel_z;

  	imageData->SetSpacing(spacing);

  }

  

  

  template <class T>

  inline T rts_itkVolume<T>::GetPixel(uint x, uint y, uint z)

  {

  	T result;

  	if(x < 0 || x >= DimX() || y < 0 || y >= DimY() || z < 0 || z >= DimZ())

  	{

  		memset(&result, 0, sizeof(T));

  		return result;

  	}

  

  	itk::Image<T, 3>::IndexType index;

  	index[0] = x; index[1] = y; index[2] = z;

  	return imageData->GetPixel(index);

  }

  

  template <class T>

  inline T rts_itkVolume<T>::GetMin()

  {

  	int ix, iy, iz;

  	T currentMin = GetPixel(0, 0, 0);

  	T n;

  	for(ix=0; ix<DimX(); ix++)

  		for(iy=0; iy<DimY(); iy++)

  			for(iz=0; iz<DimZ(); iz++)

  			{

  				n = GetPixel(ix, iy, iz);

  				if(n < currentMin)

  					currentMin = n;

  			}

  	return currentMin;

  }

  

  template <class T>

  inline T rts_itkVolume<T>::GetMax()

  {

  	int ix, iy, iz;

  	T currentMax = GetPixel(0, 0, 0);

  	T n;

  	for(ix=0; ix<DimX(); ix++)

  		for(iy=0; iy<DimY(); iy++)

  			for(iz=0; iz<DimZ(); iz++)

  			{

  				n = GetPixel(ix, iy, iz);

  				if(n > currentMax)

  					currentMax = n;

  			}

  	return currentMax;

  }

  

  template <class T>

  inline T rts_itkVolume<T>::operator ()(uint x, uint y, uint z)

  {

  	return GetPixel(x, y, z);

  }

  

  

  

  template <class T>

  void rts_itkVolume<T>::LoadRAW(uint header_size, uint size_x,

  							   uint size_y, uint size_z, string filename)

  {

  	ITKVolumeType::RegionType region;

  	ITKVolumeType::SizeType size;

  	size[0] = size_x;

  	size[1] = size_y;

  	size[2] = size_z;

  	region.SetSize(size);

  	imageData->SetRegions(region);

  

  	try

  	{

  		imageData->Allocate();

  	}

  	catch(itk::ExceptionObject & exp)

  	{

  		std::cout<<exp<<std::endl;

  	}

  

  	

  	//cout<<imageData<<endl;

  

  	ifstream infile(filename.c_str(), ios::out | ios::binary);	//create the files stream

  	if(!infile)

  		return;

  	//first read the header

  	char* header = new char[header_size];

  	infile.read((char*)header, header_size);

  

  	//now read the actual data

  	infile.read((char*)imageData->GetBufferPointer(), DimX()*DimY()*DimZ()*sizeof(T));

  	

  	infile.close();

  }

  

  template <class T>

  void rts_itkVolume<T>::LoadRAV(string filename)

  {

  	

  	//open the file

  	ifstream infile(filename.c_str(), ios::out | ios::binary);	//create the files stream

  	if(!infile)

  		return;

  

  	//first read the header

  	int dimx, dimy, dimz, bytesize;

  	infile.read((char*)&dimx, sizeof(int));

  	infile.read((char*)&dimy, sizeof(int));

  	infile.read((char*)&dimz, sizeof(int));

  	infile.read((char*)&bytesize, sizeof(int));

  

  	//allocate space for the image

  	ITKVolumeType::RegionType region;

  	ITKVolumeType::SizeType size;

  	size[0] = dimx;

  	size[1] = dimy;

  	size[2] = dimz;

  	region.SetSize(size);

  	imageData->SetRegions(region);

  	try

  	{

  		imageData->Allocate();

  	}

  	catch(itk::ExceptionObject & exp)

  	{

  		std::cout<<exp<<std::endl;

  	}

  	

  

  	//now read the actual data

  	infile.read((char*)imageData->GetBufferPointer(), DimX()*DimY()*DimZ()*sizeof(T));

  	

  	infile.close();	

  }

  

  template <class T>

  void rts_itkVolume<T>::LoadVOL(string filename)

  {

  	

  	//open the file

  	ifstream infile(filename.c_str(), ios::out | ios::binary);	//create the files stream

  	if(!infile)

  		return;

  

  	//first read the header

  	int dimx, dimy, dimz, bytesize;

  	infile.read((char*)&dimx, sizeof(int));

  	infile.read((char*)&dimy, sizeof(int));

  	infile.read((char*)&dimz, sizeof(int));

  

  	//allocate space for the image

  	ITKVolumeType::RegionType region;

  	ITKVolumeType::SizeType size;

  	size[0] = dimx;

  	size[1] = dimy;

  	size[2] = dimz;

  	region.SetSize(size);

  	imageData->SetRegions(region);

  	try

  	{

  		imageData->Allocate();

  	}

  	catch(itk::ExceptionObject & exp)

  	{

  		std::cout<<exp<<std::endl;

  	}

  	

  

  	//now read the actual data

  	infile.read((char*)imageData->GetBufferPointer(), DimX()*DimY()*DimZ()*sizeof(T));

  	

  	infile.close();	

  }

  

  template <class T>

  void rts_itkVolume<T>::LoadStack(string directory, string filename_mask, int max_files = -1)

  {

  	/*Load a list of file names based on the user-specified mask*/

  	//create the complete mask

  	if(directory[directory.size() - 1] != '/')

  		directory += '/';

  

  	string full_mask = directory;	

  	full_mask += filename_mask;

  	

  	//create a temporary vector to store the file names

  	vector<rtsFilename> fileList;

  	//create a handle for the search

  	HANDLE search_handle;

  	WIN32_FIND_DATA found_data;

  

  	//start the search

  	BSTR unicodestr = ANSIToUnicode(full_mask.c_str());

  	search_handle = FindFirstFile(unicodestr, &found_data);

  	::SysFreeString(unicodestr);

  

  	//if there are no files, return

  	if(search_handle == INVALID_HANDLE_VALUE)

  		return;

  

  	string new_file;

  	char* ansistr = UnicodeToANSI(found_data.cFileName);

  	//char* ansistr = (char*)found_data.cFileName;

  	//save the first filename

  	new_file = directory;

  	new_file += ansistr;

  	fileList.push_back(new_file);

  	delete[] ansistr;

  		

  	//now loop through the rest of the files

  	while(FindNextFile(search_handle, &found_data))

  	{

  		char* ansistr = UnicodeToANSI(found_data.cFileName);

  		new_file = directory;

  		new_file += ansistr;

  		//cout<<new_file<<endl;

  		fileList.push_back(new_file);

  		delete[] ansistr;

  	}

  

  

  

  	/*Load the first file in order to get volume information*/

  	typedef itk::ImageFileReader<ITKSliceType> ReaderType;

  	ReaderType::Pointer reader = ReaderType::New();

  	reader->SetFileName(fileList[0].getString());

  	ITKSliceType::Pointer image = reader->GetOutput();

  	

  	try

  	{

  		reader->Update();

  	}

  	catch(itk::ExceptionObject & exp)

  	{

  		std::cout<<exp<<std::endl;

  	}

  

  	/*Insert each image into the volume*/

  	int i;

  	cout<<"Files found: "<<fileList.size()<<endl;

  	if(max_files == -1)

  		max_files = fileList.size();

  	else

  		max_files = min<int>(fileList.size(), max_files);

  	cout<<"Loading: "<<max_files<<endl;

  	//set the max number of files based on user input and number of files found

  

  	/*Set up the volume based on information from the first file*/

  	ITKSliceType::SizeType size = image->GetLargestPossibleRegion().GetSize();	//get the slice size

  	ITKVolumeType::SizeType volSize;	//compute the volume size

  	volSize[0] = size[0];

  	volSize[1] = size[1];

  	volSize[2] = max_files;

  

  	imageData = ITKVolumeType::New();	//create the volume

  	ITKVolumeType::RegionType region;

  	region.SetSize(volSize);

  	imageData->SetRegions(region);

  	imageData->Allocate();				//allocate space

  

  

  

  	for(i=0; i<max_files; i++)

  	{

  		reader = ReaderType::New();

  		reader->SetFileName(fileList[i].getString());

  		ITKSliceType::Pointer slice = reader->GetOutput();

  		reader->Update();

  		InsertSlice(i, slice);

  		//cout<<i+1<<"/"<<fileList.size()<<endl;

  		rtsProgressBar((float)(i+1)/(float)max_files*100);

  	}	

  }

  

  template <class T>

  void rts_itkVolume<T>::LoadSlice(string filename, int slice)

  {

  	//load the specified image

  	typedef itk::ImageFileReader<ITKSliceType> ReaderType;

  	ReaderType::Pointer reader = ReaderType::New();

  	reader->SetFileName(filename.c_str());

  	ITKSliceType::Pointer image = reader->GetOutput();

  	

  	try

  	{

  		reader->Update();

  	}

  	catch(itk::ExceptionObject & exp)

  	{

  		std::cout<<exp<<std::endl;

  	}

  

  	//insert the slice into the volume

  	InsertSlice(slice, image);

  

  }

  

  template <class T>

  rts_itkImage<T> rts_itkVolume<T>::GetSlice(int slice)

  {

  	//create a new image

  	rts_itkImage<T> outSlice(DimX(), DimY());

  

  	int x, y;

  	for(x=0; x<DimX(); x++)

  		for(y=0; y<DimY(); y++)

  		{

  			outSlice.SetPixel(x, y, GetPixel(x, y, slice));

  		}

  

  	return outSlice;

  }

  

  template <class T>

  void rts_itkVolume<T>::SetSlice(rts_itkImage<T> image, int slice)

  {

  	int x, y;

  	for(x=0; x<DimX(); x++)

  		for(y=0; y<DimY(); y++)

  		{

  			SetPixel(x, y, slice, image.GetPixel(x, y));

  		}

  }

  

  template <class T>

  void rts_itkVolume<T>::SaveRAV(string filename)

  {

  	ofstream outfile(filename.c_str(), ios::out | ios::binary);	//create the files stream

  	if(!outfile)

  		return;

  

  	int dimx = DimX();

  	int dimy = DimY();

  	int dimz = DimZ();

  	int bytesize = sizeof(T);

  

  	outfile.write((char*)&dimx, sizeof(int));

  	outfile.write((char*)&dimy, sizeof(int));

  	outfile.write((char*)&dimz, sizeof(int));

  	outfile.write((char*)&bytesize, sizeof(int));

  

  	outfile.write((char*)imageData->GetBufferPointer(), DimX()*DimY()*DimZ()*sizeof(T));

  	outfile.close();

  	

  }

  

  template <class T>

  void rts_itkVolume<T>::SaveVOL(string filename)

  {

  	ofstream outfile(filename.c_str(), ios::out | ios::binary);	//create the files stream

  	if(!outfile)

  		return;

  

  	int dimx = DimX();

  	int dimy = DimY();

  	int dimz = DimZ();

  

  	outfile.write((char*)&dimx, sizeof(int));

  	outfile.write((char*)&dimy, sizeof(int));

  	outfile.write((char*)&dimz, sizeof(int));

  

  	outfile.write((char*)imageData->GetBufferPointer(), DimX()*DimY()*DimZ()*sizeof(T));

  	outfile.close();

  	

  }

  

  template <class T>

  void rts_itkVolume<T>::InsertSlice(uint z_position, typename ITKSliceType::Pointer slice)

  {

  	itk::Image<T>::SizeType size = slice->GetLargestPossibleRegion().GetSize();

  	itk::Image<T>::IndexType index;

  	int x, y;

  	for(x=0; x<size[0]; x++)

  		for(y=0; y<size[1]; y++)

  		{

  			index[0] = x; index[1] = y;

  			SetPixel(x, y, z_position, slice->GetPixel(index));

  		}

  

  

  

  }

  

  template <class T>

  void rts_itkVolume<T>::SaveRAW(string filename)

  {

  	ofstream outfile(filename.c_str(), ios::out | ios::binary);	//create the files stream

  	if(!outfile)

  		return;

  

  	outfile.write((char*)imageData->GetBufferPointer(), DimX()*DimY()*DimZ()*sizeof(T));

  	outfile.close();

  }

  

  template <class T>

  void rts_itkVolume<T>::SetPixel(uint x, uint y, uint z, T value)

  {

  	ITKVolumeType::IndexType index;

  	index[0] = x;

  	index[1] = y;

  	index[2] = z;

  	imageData->SetPixel(index, value);

  }

  

  template <class T>

  void rts_itkVolume<T>::Rescale(T new_min, T new_max)

  {

  	typedef itk::RescaleIntensityImageFilter<ITKVolumeType, ITKVolumeType> RescaleFilterType;

  	RescaleFilterType::Pointer rescaleFilter = RescaleFilterType::New();

  	rescaleFilter->SetOutputMinimum(new_min);

  	rescaleFilter->SetOutputMaximum(new_max);

  	rescaleFilter->SetInput(imageData);

  	rescaleFilter->Update();

  

  	imageData = rescaleFilter->GetOutput();

  }

  

  template <class T>

  void rts_itkVolume<T>::Binary(T threshold, T true_value)

  {

  	/**

  	This function converts an implicit function into a binary or characteristic function describing the solid represented by the level

  	set at isovalue "threshold".  All values below threshold are set to zero while all values above threshold are set to the specified

  	"true_value".  In order to use this function, the data type T must be able to be set to 0.

  	**/

  	int max_index = DimX() * DimY() * DimZ();	//find the size of the data array

  	int i;

  	T* ptrBits = imageData->GetBufferPointer();

  	for(i=0; i<max_index; i++)

  		if(ptrBits[i] >= threshold)

  			ptrBits[i] = true_value;

  		else

  			ptrBits[i] = 0;

  }

  

  

  template<typename T>

  void rts_itkVolume<T>::InsertDTGrid(rtsDTGrid3D<T>* grid, bool debug = false)

  {

  	//find the extents of the DT Grid

  	int min_x, min_y, min_z, max_x, max_y, max_z;

  	grid->getBounds(min_x, min_y, min_z, max_x, max_y, max_z);

  

  	//allocate the appropriate amount of space

  	ITKVolumeType::RegionType region;

  	ITKVolumeType::SizeType size;

  	size[0] = (max_x - min_x) + 1;

  	size[1] = (max_y - min_y) + 1;

  	size[2] = (max_z - min_z) + 1;

  	region.SetSize(size);

  	imageData->SetRegions(region);

  

  	try

  	{

  		imageData->Allocate();

  	}

  	catch(itk::ExceptionObject & exp)

  	{

  		std::cout<<exp<<std::endl;

  	}

  

  	//fill the image with the background color

  	imageData->FillBuffer(grid->background);

  

  	//copy values from the DT Grid to the image

  	ITKVolumeType::IndexType index;		//create an image index

  	rtsDTGrid3D<T>::iterator i;			//create an iterator

  

  	for(i = grid->begin(); i!= grid->after(); i++)

  	{

  		index[0] = i.X1() - min_x;

  		index[1] = i.X2() - min_y;

  		index[2] = i.X3() - min_z;

  		imageData->SetPixel(index, i.Value());

  

  		//cout<<index[0]<<","<<index[1]<<": "<<i.Value()<<endl;

  		

  	}

  }

  #endif