]> Creatis software - bbtk.git/commitdiff
no message
authorEduardo Davila <Eduardo.Davila@creatis.insa-lyon.fr>
Tue, 21 Jun 2011 08:53:42 +0000 (08:53 +0000)
committerEduardo Davila <Eduardo.Davila@creatis.insa-lyon.fr>
Tue, 21 Jun 2011 08:53:42 +0000 (08:53 +0000)
packages/vtk/src/bbvtkUnaryOperations.cxx
packages/vtk/src/bbvtkUnaryOperations.h

index bcf168d23229253a06a3630507cfa8c7347cb891..f9e1589a813e1cf1c19829ed546b47a8c78f09ad 100644 (file)
@@ -76,6 +76,9 @@ void UnaryOperations::Process()
 
                                ope->SetOperationToLog();
                break;
+
+                       
+/* EED 21Juin 2011 Borrame
                case 10:
                        substractWithMinimum();
                        bbSetOutputOut(constante);
@@ -86,6 +89,8 @@ void UnaryOperations::Process()
                        bbSetOutputOut(constante);
                        return;
                break;
+*/  
+                       
                default:
                        std::cout << "Invalid Operation" << std::endl;
                        return;
index fddd7582e51af4daf115957084f2f843fae935ee..f1693defde58d7daf45d8e7b0b46c621d860ccd3 100644 (file)
@@ -32,7 +32,7 @@ class bbvtk_EXPORT UnaryOperations
 
   void crearPredeterminado();
   void substractWithMinimum();
-  void MultiplyBy();
+//  void MultiplyBy();
 
   bbtkStaticLecture lector;
 
@@ -47,7 +47,7 @@ BBTK_BEGIN_DESCRIBE_BLACK_BOX(UnaryOperations,bbtk::AtomicBlackBox);
   BBTK_CATEGORY("filtre");
   BBTK_INPUT(UnaryOperations,In1,"Image to be operated",vtkImageData*,"");
   BBTK_INPUT(UnaryOperations,InConstant,"Constant that will be used in the operations.",double,"0 default");
-  BBTK_INPUT(UnaryOperations,Operation,"0:Add (Default), 1:subtract, 2:multiply, 3:divide, 4:invert, 5:sin, 6:cos, 7:exp, 8:log, 9:abs",int,"Addition default");
+  BBTK_INPUT(UnaryOperations,Operation,"0:Add (Default), 1:subtract, 2:multiply, 3:divide, 4:invert, 5:sin, 6:cos, 7:exp, 8:log, 9:abs????",int,"Addition default");
   BBTK_OUTPUT(UnaryOperations,Out,"",vtkImageData*,"");
 BBTK_END_DESCRIBE_BLACK_BOX(UnaryOperations);
 }