]> Creatis software - bbtk.git/commitdiff
#3512 clean bbs2 python version
authoreduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Wed, 20 Mar 2024 15:32:27 +0000 (16:32 +0100)
committereduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Wed, 20 Mar 2024 15:32:27 +0000 (16:32 +0100)
packages/vtk/src/bbvtkImageGaussianSmooth.xml
packages/vtk/src/bbvtkImageVtkProperties.h
packages/vtk/src/bbvtkRescaleSlopeIntercept.cxx
packages/vtk/src/bbvtkRescaleSlopeIntercept.h
packages/vtk/src/bbvtkTransform.cxx
packages/vtk/src/bbvtkTransform.h

index 780c20ad01ecdd77079f1700f2b3897e71baad14..b1c6c49ae77e822f951bd5e9eaba48e17e07f1e8 100644 (file)
@@ -3,7 +3,7 @@
 <blackbox name="ImageGaussianSmooth" type="VTK_ImageAlgorithm">
 
 <author>laurent.guigues at creatis.insa-lyon.fr</author>
-<description><PRE>Performs a gaussian convolution of the input image (bbfication of vtkImageGaussianSmooth)</PRE></description>
+<description><PRE>(C++,Python) Performs a gaussian convolution of the input image (bbfication of vtkImageGaussianSmooth)</PRE></description>
 <category>image;filter</category>
 
 <include>vtkImageGaussianSmooth.h</include> 
index 8945e1def827bd823b5393226fed465c8d403348..e22e13af3f852ea7d6174e565c6d0899aa79f72d 100644 (file)
@@ -67,7 +67,7 @@ class bbvtk_EXPORT ImageVtkProperties
 BBTK_BEGIN_DESCRIBE_BLACK_BOX(ImageVtkProperties,bbtk::AtomicBlackBox);
  BBTK_NAME("ImageVtkProperties");
  BBTK_AUTHOR("Info-Dev Creatis");
- BBTK_DESCRIPTION("Image information Dim, Spc, Type, MinMax");
+ BBTK_DESCRIPTION("(C++,Python) Image information Dim, Spc, Type, MinMax");
  BBTK_CATEGORY("filter");
  BBTK_INPUT(ImageVtkProperties,In,"Input image (vtk)",vtkImageData*,"");
  BBTK_OUTPUT(ImageVtkProperties,Origin,"Origin", std::vector<double>  ,"");
index a1d5805b56c26eb450e3d1beb8333119a54590d2..4117fdfd60750c9e56acc9ff36f745ae2d7c9de0 100644 (file)
@@ -57,11 +57,11 @@ void RescaleSlopeIntercept::Process()
 //    bbSetOutputOut( bbGetInputIn() );
 //    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
   
-       double range[2];
-       double spc[3];
-       int ext[6];
-       double A=bbGetInputA();
-       double B=bbGetInputB();
+       double  range[2];
+       double  spc[3];
+       int     ext[6];
+       double  A=bbGetInputA();
+       double  B=bbGetInputB();
        
        if (bbGetInputIn()!=0)
        {
@@ -135,9 +135,9 @@ void RescaleSlopeIntercept::Process()
 
                mchange->SetExtentTranslation( -ext[0], -ext[2], -ext[4] );
                mchange->SetOutputSpacing (spc);
-               filter1->Update();    //important
-               filter2->Update();    //important
-               mchange->Update();    //important
+               filter1->Update();    // important
+               filter2->Update();    // important
+               mchange->Update();    // important
                bbSetOutputOut( mchange->GetOutput() );
        } else  {
                bbSetOutputOut( NULL );
index 72b9e9104cc9fc68573ad40cb5ed8e7f5f673483..48f638e4bdc54a776c23e873ce637b20adcefc29 100644 (file)
@@ -71,16 +71,16 @@ class bbvtk_EXPORT RescaleSlopeIntercept
 };
 
 BBTK_BEGIN_DESCRIBE_BLACK_BOX(RescaleSlopeIntercept,bbtk::AtomicBlackBox);
-BBTK_NAME("RescaleSlopeIntercept");
-BBTK_AUTHOR("eduardo.davila at creatis.insa-lyon.fr");
-BBTK_DESCRIPTION("Rescale Slope Intercept  (see Type input descriptio)");
-BBTK_CATEGORY("filter");
-BBTK_INPUT(RescaleSlopeIntercept,In,"Image input",vtkImageData*,"");
-BBTK_INPUT(RescaleSlopeIntercept,Type,"type of operation: 0 (default) SlopeIntercept np=p*A+B, 1 Invert, 2 Redimension A=newMin B=newMax, 3 InvertRedimension A=newMin B=newMax",int,"");
-BBTK_INPUT(RescaleSlopeIntercept,A,"(1 default) see Type description",double,"");
-BBTK_INPUT(RescaleSlopeIntercept,B,"(0 default) see Type description",double,"");
-BBTK_INPUT(RescaleSlopeIntercept,OutputFormat,"Image output format:  SAME (default), VTK_BIT, VTK_CHAR, VTK_SIGNED_CHAR, VTK_UNSIGNED_CHAR, VTK_SHORT, VTK_UNSIGNED_SHORT, VTK_INT, VTK_UNSIGNED_INT, VTK_LONG, VTK_UNSIGNED_LONG, VTK_FLOAT, VTK_DOUBLE",std::string,"");
-BBTK_OUTPUT(RescaleSlopeIntercept,Out,"Image output",vtkImageData*,"");
+  BBTK_NAME("RescaleSlopeIntercept");
+  BBTK_AUTHOR("eduardo.davila at creatis.insa-lyon.fr");
+  BBTK_DESCRIPTION("(C++,Python)Rescale Slope Intercept  (see Type input descriptio)");
+  BBTK_CATEGORY("filter");
+  BBTK_INPUT(RescaleSlopeIntercept,In,"Image input",vtkImageData*,"");
+  BBTK_INPUT(RescaleSlopeIntercept,Type,"type of operation: 0 (default) SlopeIntercept np=p*A+B, 1 Invert, 2 Redimension A=newMin B=newMax, 3 InvertRedimension A=newMin B=newMax",int,"");
+  BBTK_INPUT(RescaleSlopeIntercept,A,"(1 default) see Type description",double,"");
+  BBTK_INPUT(RescaleSlopeIntercept,B,"(0 default) see Type description",double,"");
+  BBTK_INPUT(RescaleSlopeIntercept,OutputFormat,"Image output format:  SAME (default), VTK_BIT, VTK_CHAR, VTK_SIGNED_CHAR, VTK_UNSIGNED_CHAR, VTK_SHORT, VTK_UNSIGNED_SHORT, VTK_INT, VTK_UNSIGNED_INT, VTK_LONG, VTK_UNSIGNED_LONG, VTK_FLOAT, VTK_DOUBLE",std::string,"");
+  BBTK_OUTPUT(RescaleSlopeIntercept,Out,"Image output",vtkImageData*,"");
 BBTK_END_DESCRIBE_BLACK_BOX(RescaleSlopeIntercept);
 //===== 
 // Don't edit this file. This file is generated from xml description.. 
index fd4b98e45a078337c81273444e90bc1979122bc8..8b71e0052137ffced07620883c868fcabab315e4 100644 (file)
@@ -84,7 +84,6 @@ namespace bbvtk
                }
        }
 
-
        // --------------------------------------------------------------       
   void Transform::Process()
   {
index ebe2e7515864b0f07ab637320515940a15e702d9..46e1c766c6c83da018be478fd8bf05f3bfa6bca8 100644 (file)
@@ -63,7 +63,7 @@ namespace bbvtk
 BBTK_BEGIN_DESCRIBE_BLACK_BOX(Transform,bbtk::AtomicBlackBox);
   BBTK_NAME("Transform");
   BBTK_AUTHOR("InfoTeam CREATIS-LRMN");
-  BBTK_DESCRIPTION("vtkTransform");
+  BBTK_DESCRIPTION("(C++,Python) vtkTransform");
   BBTK_CATEGORY("math");
 
   BBTK_INPUT(Transform,Inverse,"(default false)  true/false",bool,"");