]> Creatis software - openheart.git/blob - Common/vtkOptimizedImageData.cxx
commit all the files for the first time
[openheart.git] / Common / vtkOptimizedImageData.cxx
1 /**
2 * Progam made by Olivier Bernard, associate professor
3 * at Institut National des Sciences Appliquees (INSA) Lyon,
4 * CREATIS-LRMN Laboratory,
5 * 69621 Villeurbanne, France,
6 * 31th of march 2011
7 */
8
9 #include "vtkOptimizedImageData.h"
10
11 using namespace std;
12
13
14 template<class T>
15 void vtkOptimizedImageData<T>::PrintInfo()
16 {
17     cout << "Image pointer: " << data << endl;
18     cout << "Image dimension: [" << dimX << "," << dimY << "," << dimZ << "]" << endl;
19 }
20