]> Creatis software - creaVtk.git/blob - lib/creaVtk/vtkImageDataStrucPoints.cpp
2387 creaVtk Feature New Normal New box, lib, script ImageDataStructuredPoints 2014...
[creaVtk.git] / lib / creaVtk / vtkImageDataStrucPoints.cpp
1 /*
2 # ---------------------------------------------------------------------
3 #
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
5 #                        pour la Sante)
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9 #
10 #  This software is governed by the CeCILL-B license under French law and
11 #  abiding by the rules of distribution of free software. You can  use,
12 #  modify and/ or redistribute the software under the terms of the CeCILL-B
13 #  license as circulated by CEA, CNRS and INRIA at the following URL
14 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
15 #  or in the file LICENSE.txt.
16 #
17 #  As a counterpart to the access to the source code and  rights to copy,
18 #  modify and redistribute granted by the license, users are provided only
19 #  with a limited warranty  and the software's author,  the holder of the
20 #  economic rights,  and the successive licensors  have only  limited
21 #  liability.
22 #
23 #  The fact that you are presently reading this means that you have had
24 #  knowledge of the CeCILL-B license and that you accept its terms.
25 # ------------------------------------------------------------------------
26 */
27
28 #include "vtkImageDataStrucPoints.h"
29
30 vtkImageDataStrucPoints::vtkImageDataStrucPoints()
31 {
32 }
33
34 vtkImageDataStrucPoints::~vtkImageDataStrucPoints()
35 {
36 }
37 void vtkImageDataStrucPoints::joinComponents(vtkImageData* imageX, vtkImageData* imageY, vtkImageData* imageZ)
38 {
39         imageY->Modified();
40         imageY->Update();
41         int ext[6];
42         imageY->GetWholeExtent(ext);
43         int dim[3];
44   double spc[3];;
45   dim[0]=ext[1]-ext[0]+1;
46   dim[1]=ext[3]-ext[2]+1;
47   dim[2]=ext[5]-ext[4]+1;       
48         std::cout<<"dim "<< dim[0] <<" "<< dim[1] <<" "<< dim[2] <<std::endl;
49
50         imageY->GetSpacing(spc);
51
52         vtkDoubleArray *arrayX;
53         vtkDoubleArray *arrayY;
54         vtkDoubleArray *arrayZ;
55
56    unsigned char *ptrUCharX = (unsigned char *)imageX->GetScalarPointer();
57    unsigned char *ptrUCharY = (unsigned char *)imageY->GetScalarPointer();
58    unsigned char *ptrUCharZ = (unsigned char *)imageZ->GetScalarPointer();
59
60          long int sizeimage = dim[0]*dim[1]*dim[2];
61
62          vtkDoubleArray *array =  vtkDoubleArray::New();
63          array->SetNumberOfTuples(sizeimage);
64          array->SetNumberOfComponents(3);
65          array->Allocate(sizeimage*3, 100 ); // ???
66          array->SetName("velocity");
67
68          double vx;
69          double vy;
70          double vz;
71
72   int i;
73         for( i = 0 ; i < sizeimage ; i++ )
74         {
75                         vx = *ptrUCharX;
76                         vy = *ptrUCharY;
77                         vz = *ptrUCharZ;
78                         ptrUCharX++;
79                         ptrUCharY++;
80                         ptrUCharZ++;
81         array->SetTuple3(i,vx, vy , vz );
82         } // for i
83
84
85
86         _structuredPoints = vtkStructuredPoints::New();
87         _structuredPoints->SetDimensions(dim[0], dim[1], dim[2]);
88         _structuredPoints->SetSpacing(spc);
89         _structuredPoints->SetScalarTypeToFloat();
90         _structuredPoints->SetNumberOfScalarComponents(1);
91         _structuredPoints->GetPointData()->SetVectors(array);
92         _structuredPoints->GetPointData()->SetNumberOfTuples(sizeimage);
93
94 }
95
96 vtkStructuredPoints* vtkImageDataStrucPoints::getStructuredPoints()
97 {
98                 return _structuredPoints;
99 }
100