]> Creatis software - creaVtk.git/commitdiff
#2671 creaVtk Feature New Normal - VectorsExtraction
authorespinosa <Monica.Espinosa@creatis.insa-lyon.fr>
Mon, 13 Jul 2015 15:52:46 +0000 (17:52 +0200)
committerespinosa <Monica.Espinosa@creatis.insa-lyon.fr>
Mon, 13 Jul 2015 15:52:46 +0000 (17:52 +0200)
bbtk_creaVtk_PKG/src/bbcreaVtkGenerateArrowSource.cxx [new file with mode: 0644]
bbtk_creaVtk_PKG/src/bbcreaVtkGenerateArrowSource.h [new file with mode: 0644]
bbtk_creaVtk_PKG/src/bbcreaVtkVectorsExtraction.cxx
bbtk_creaVtk_PKG/src/bbcreaVtkVectorsExtraction.h

diff --git a/bbtk_creaVtk_PKG/src/bbcreaVtkGenerateArrowSource.cxx b/bbtk_creaVtk_PKG/src/bbcreaVtkGenerateArrowSource.cxx
new file mode 100644 (file)
index 0000000..2d592e2
--- /dev/null
@@ -0,0 +1,80 @@
+//===== 
+// 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)
+//===== 
+#include "bbcreaVtkGenerateArrowSource.h"
+#include "bbcreaVtkPackage.h"
+namespace bbcreaVtk
+{
+
+BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaVtk,GenerateArrowSource)
+BBTK_BLACK_BOX_IMPLEMENTATION(GenerateArrowSource,bbtk::AtomicBlackBox);
+//===== 
+// 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)
+//===== 
+void GenerateArrowSource::Process()
+{
+
+// THE MAIN PROCESSING METHOD BODY
+//   Here we simply set the input 'In' value to the output 'Out'
+//   And print out the output value
+// INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
+//    void bbSet{Input|Output}NAME(const TYPE&)
+//    const TYPE& bbGet{Input|Output}NAME() const 
+//    Where :
+//    * NAME is the name of the input/output
+//      (the one provided in the attribute 'name' of the tag 'input')
+//    * TYPE is the C++ type of the input/output
+//      (the one provided in the attribute 'type' of the tag 'input')
+   
+       vtkArrowSource     *arrowSource = vtkArrowSource::New();
+
+       arrowSource->SetTipResolution(3);
+       //arrowSource->SetTipRadius(1.0);
+       //arrowSource->SetTipLength(1.0);
+       arrowSource->SetShaftRadius(0.04);
+       arrowSource->Update();
+
+       bbSetOutputArrowSource(arrowSource->GetOutput());
+
+
+}
+//===== 
+// 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)
+//===== 
+void GenerateArrowSource::bbUserSetDefaultValues()
+{
+
+//  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
+//    Here we initialize the input 'In' to 0
+  // bbSetInputIn(0);
+  
+}
+//===== 
+// 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)
+//===== 
+void GenerateArrowSource::bbUserInitializeProcessing()
+{
+
+//  THE INITIALIZATION METHOD BODY :
+//    Here does nothing 
+//    but this is where you should allocate the internal/output pointers 
+//    if any 
+
+  
+}
+//===== 
+// 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)
+//===== 
+void GenerateArrowSource::bbUserFinalizeProcessing()
+{
+
+//  THE FINALIZATION METHOD BODY :
+//    Here does nothing 
+//    but this is where you should desallocate the internal/output pointers 
+//    if any
+  
+}
+}
+// EO namespace bbcreaVtk
+
+
diff --git a/bbtk_creaVtk_PKG/src/bbcreaVtkGenerateArrowSource.h b/bbtk_creaVtk_PKG/src/bbcreaVtkGenerateArrowSource.h
new file mode 100644 (file)
index 0000000..9ecd02a
--- /dev/null
@@ -0,0 +1,49 @@
+//===== 
+// 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)
+//===== 
+#ifndef __bbcreaVtkGenerateArrowSource_h_INCLUDED__
+#define __bbcreaVtkGenerateArrowSource_h_INCLUDED__
+#include "bbcreaVtk_EXPORT.h"
+#include "bbtkAtomicBlackBox.h"
+#include "iostream"
+
+#include "vtkArrowSource.h"
+#include "vtkPolyData.h"
+#include "vtkActor.h"
+
+namespace bbcreaVtk
+{
+
+class bbcreaVtk_EXPORT GenerateArrowSource
+ : 
+   public bbtk::AtomicBlackBox
+{
+  BBTK_BLACK_BOX_INTERFACE(GenerateArrowSource,bbtk::AtomicBlackBox);
+//===== 
+// 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)
+//===== 
+  BBTK_DECLARE_INPUT(Point,std::vector<double>);
+  BBTK_DECLARE_OUTPUT(ArrowSource,vtkPolyData*);
+  BBTK_PROCESS(Process);
+  void Process();
+//===== 
+// 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)
+//===== 
+};
+
+BBTK_BEGIN_DESCRIBE_BLACK_BOX(GenerateArrowSource,bbtk::AtomicBlackBox);
+BBTK_NAME("GenerateArrowSource");
+BBTK_AUTHOR("Monica ESPINOSA");
+BBTK_DESCRIPTION("No Description.");
+BBTK_CATEGORY("empty");
+BBTK_INPUT(GenerateArrowSource,Point,"Coordinate of Point",std::vector<double>,"");
+BBTK_OUTPUT(GenerateArrowSource,ArrowSource,"Arrow Representation",vtkPolyData*,"");
+BBTK_END_DESCRIBE_BLACK_BOX(GenerateArrowSource);
+//===== 
+// 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)
+//===== 
+}
+// EO namespace bbcreaVtk
+
+#endif // __bbcreaVtkGenerateArrowSource_h_INCLUDED__
+
index f26075e66e2bc69f0f0034a946485606b7004ddc..e753ae38515c463e790784035831ee3a2a574c84 100644 (file)
@@ -5,6 +5,7 @@
 #include "bbcreaVtkPackage.h"
 #include "vtkDoubleArray.h"
 
+
 namespace bbcreaVtk
 {
 
@@ -31,24 +32,46 @@ void VectorsExtraction::Process()
 
     if(bbGetInputVectorsFieldImage() != NULL )
        {
-               vtkImageData* m_VectorImage = bbGetInputVectorsFieldImage();
+               vtkImageData         *m_VectorImage = bbGetInputVectorsFieldImage();
+               vtkIdType             m_idType;
+      vtkDoubleArray       *velocity      = vtkDoubleArray::New();
+
+      std::vector<double> coord           = bbGetInputCoordinates();
+      std::vector<double> vec;
+
+      double ang1 = 0;//Angle 1
+      double ang2 = 0;//ANgle 2
+
+     // double  *v = static_cast<double *> (m_VectorImage->GetScalarPointer(coord[0],coord[1],coord[2]));
 
-               std::vector<double> coord = bbGetInputCoordinates();
 
-               vtkDoubleArray* velocity = vtkDoubleArray::New();
+      //Find coordinate into the image      
+      m_idType = m_VectorImage->FindPoint(coord[0],coord[1],coord[2]);
+      std::cout << m_idType;
+
+      //Recuperate vector of vectorFieldImage
                velocity = vtkDoubleArray::SafeDownCast(m_VectorImage->GetPointData()->GetArray("velocity"));
+      velocity->Print(std::cout);
+
+      std::cout<< "# components velocity: " << velocity->GetNumberOfComponents()<<std::endl;
+      std::cout<< "# tuples velocity: " << velocity->GetNumberOfTuples()<<std::endl;
+
+      vec[0] = velocity->GetComponent(m_idType,0);
+      vec[1] = velocity->GetComponent(m_idType,1);
+      vec[2] = velocity->GetComponent(m_idType,2);
+
+      std::cout << "velocity :" << vec[0] << "," <<vec[1] << ","<< vec[2] << std::endl;
 
-               std::cout<< "# components velocity" << velocity->GetNumberOfComponents()<<std::endl;
 
-               double ang1 = 0;
-               double ang2 = 0;
+      //Miss calcule of angles -----
 
-               ang1 = 1;
-               ang2 = 2;
+      ang1 = vec[0];
+               ang2 = vec[1];
                m_VectorImage->Print(std::cout);
 
                bbSetOutputAngle1(ang1);
                bbSetOutputAngle2(ang2);
+      bbSetOutputVector(vec);
 
        }// if image != NULL
     
index 246e09b00ca2927eb0618807398eb0137d534852..621ef3af68a07f76b987f8bdb93d70483b15d9bb 100644 (file)
@@ -41,6 +41,7 @@ BBTK_DESCRIPTION("No Description.");
 BBTK_CATEGORY("empty");
 BBTK_INPUT(VectorsExtraction,Coordinates,"Coordinates (x,y,z)",std::vector<double>,"");
 BBTK_INPUT(VectorsExtraction,VectorsFieldImage,"Image of Vectors Field",vtkImageData*,"");
+BBTK_OUTPUT(VectorsExtraction,Vector,"",std::vector<double>,"");
 BBTK_OUTPUT(VectorsExtraction,Angle1,"Angle 1 (Helix Angle)",double,"");
 BBTK_OUTPUT(VectorsExtraction,Angle2,"Angle 2 (Transversal Angle)",double,"");
 BBTK_END_DESCRIBE_BLACK_BOX(VectorsExtraction);