]> Creatis software - bbtk.git/blobdiff - packages/std/src/bbstdVectorFilterDouble.cxx
#3472 merge vtk8itk5wx3-mingw64
[bbtk.git] / packages / std / src / bbstdVectorFilterDouble.cxx
index c9b6fecda62a3e8e653e7e1f422da557d70fed4f..88370e28fa392ebd62d14121e3afddb1f0a6323d 100644 (file)
@@ -28,8 +28,6 @@ void VectorFilterDouble::Process()
 //    * TYPE is the C++ type of the input/output
 //      (the one provided in the attribute 'type' of the tag 'input')
 
-printf("EED VectorFilterDouble::Process  bbGetInputType()=%d\n", bbGetInputType() );
-
        std::vector< std::vector<double> * >  pLstVec;  
        std::vector< std::vector<double> * >  pLstVecOut;  
        std::vector<double> In0 = bbGetInputIn0();
@@ -347,12 +345,11 @@ printf("EED VectorFilterDouble::Process  bbGetInputType()=%d\n", bbGetInputType(
        } // Type 9
 
 
-       if (bbGetInputType()==10)   // Invert vectors
+       if (bbGetInputType()==10)   // Nearest point in vector
        {
                int     sizeLstX        =       In0.size();   // lstX
                int     sizeLstY        =       In1.size();   // lstY
                int     sizeLstZ        =       In2.size();   // lstZ
-               printf("EED Warnning VectorFilterDouble::Process() %d  %d  %d  %d\n", sizeLstX,sizeLstY,sizeLstZ,In3.size() );
                if ( (sizeLstX==sizeLstY) && (sizeLstY==sizeLstZ) && (sizeLstX>0) && (In3.size()==3) )
                {
                        int i;