]> Creatis software - creaVtk.git/blob - bbtk_creaVtk_PKG/src/bbcreaVtkImageDataStructuredPoints.cxx
2387 creaVtk Feature New Normal New box, lib, script ImageDataStructuredPoints 2014...
[creaVtk.git] / bbtk_creaVtk_PKG / src / bbcreaVtkImageDataStructuredPoints.cxx
1 //===== 
2 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
3 //===== 
4 #include "bbcreaVtkImageDataStructuredPoints.h"
5 #include "bbcreaVtkPackage.h"
6 namespace bbcreaVtk
7 {
8
9 BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaVtk,ImageDataStructuredPoints)
10 BBTK_BLACK_BOX_IMPLEMENTATION(ImageDataStructuredPoints,bbtk::AtomicBlackBox);
11 //===== 
12 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
13 //===== 
14 void ImageDataStructuredPoints::Process()
15 {
16                 vtkImageData* imageX = bbGetInputX();
17                 vtkImageData* imageY = bbGetInputY();
18                 vtkImageData* imageZ = bbGetInputZ(); 
19                 
20                 vtkImageDataStrucPoints idsp;
21
22                 idsp.joinComponents(imageX, imageY, imageZ);    
23                 bbSetOutputImageEnsemble( idsp.getStructuredPoints() );
24       
25 }
26 //===== 
27 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
28 //===== 
29 void ImageDataStructuredPoints::bbUserSetDefaultValues()
30 {
31   
32 }
33 //===== 
34 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
35 //===== 
36 void ImageDataStructuredPoints::bbUserInitializeProcessing()
37 {
38   
39 }
40 //===== 
41 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
42 //===== 
43 void ImageDataStructuredPoints::bbUserFinalizeProcessing()
44 {
45
46 }
47 }
48 // EO namespace bbcreaVtk
49
50