]> Creatis software - bbtk.git/commitdiff
Clean comments
authorEduardo Davila <Eduardo.Davila@creatis.insa-lyon.fr>
Mon, 9 Jul 2012 13:03:17 +0000 (13:03 +0000)
committerEduardo Davila <Eduardo.Davila@creatis.insa-lyon.fr>
Mon, 9 Jul 2012 13:03:17 +0000 (13:03 +0000)
packages/vtk/src/bbvtkFlip.cxx
packages/vtk/src/bbvtkRescaleSlopeIntercept.cxx

index 4f9244fe7a101ad0d78cd51f1f4bdc3e6c7db3f9..33d70a709d2b2fed5c79127d9ff0f6c64103d06f 100644 (file)
@@ -2,8 +2,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbvtkFlip.cxx,v $
   Language:  C++
-  Date:      $Date: 2012/04/11 16:27:00 $
-  Version:   $Revision: 1.2 $
+  Date:      $Date: 2012/07/09 13:03:17 $
+  Version:   $Revision: 1.3 $
 =========================================================================*/
 
 /* ---------------------------------------------------------------------
@@ -104,31 +104,7 @@ vtkImageData * Flip::flip(vtkImageData *imageIn)
    int lineSize  = inputdims[0]*scalarSize*nbScalComp;    
    int planeSize = inputdims[1]*lineSize;
    char *pixelsIn = (char *)imageIn->GetScalarPointer();
-   
-/*     
-   outputdims[0] = inputdims[1]; 
-   outputdims[1] = inputdims[0];
-   outputdims[2] = inputdims[2];
- std::cout << " inputdims[0] " << inputdims[0] <<" inputdims[1] " <<inputdims[1] << " inputdims[2] "
-           << inputdims[2] << std::endl;
-*/
-
- /*       
-    vtkImageData *vtkImageOut;
-    vtkImageOut = vtkImageData::New();
-    vtkImageOut->SetDimensions( outputdims );
-    vtkImageOut->SetExtent(0,outputdims[0]-1,0,outputdims[1]-1,0,outputdims[2]-1);
-    vtkImageOut->SetWholeExtent(0,outputdims[0]-1,0,outputdims[1]-1,0,outputdims[2]-1);
-    int nbScalComp = imageIn->GetNumberOfScalarComponents();
-    vtkImageOut->SetNumberOfScalarComponents(nbScalComp);
-    vtkImageOut->SetSpacing( imageIn->GetSpacing() );
-    vtkImageOut->SetScalarType(imageIn->GetScalarType()  );
-    vtkImageOut->AllocateScalars();
-    vtkImageOut->Update();    
-    char *pixelsOut = (char *)vtkImageOut->GetScalarPointer();    
-    unsigned short *output =(unsigned short *)(vtkImageOut->GetScalarPointer());
-   */
-   
+      
    char *temp = (char *)malloc(lineSize);
    char *line1;
    char *line2;
@@ -144,20 +120,6 @@ vtkImageData * Flip::flip(vtkImageData *imageIn)
        }
    }
    
-// This was to transpose the image ...  
-/*
-    for(int k=0; k<inputdims[2]; k++) {  // iterate on planes
-       for(int j=0; j<inputdims[1]; j++) { // iterates on rows
-          for(int i=0; i<inputdims[0]; i++) { // iterates on columns
-             for(int l=0; l<nbScalComp; l++) { // iterates on scalar components
-                vtkImageOut->SetScalarComponentFromDouble(j,i,k,l,imageIn->GetScalarComponentAsDouble(i,j,k,l));
-             }
-         } 
-         
-       }
-    }
-    return  vtkImageOut;
-*/
    free (temp);
    return imageIn;        
 }
index cb1a77050240e041c2764afd6d908b74d0d23f95..3f4494eb978a272ea7e8294d3088b14de565e7ac 100644 (file)
@@ -30,6 +30,9 @@ void RescaleSlopeIntercept::Process()
 //    bbSetOutputOut( bbGetInputIn() );
 //    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
   
+       
+       printf("EED  RescaleSlopeIntercept::Process start\n");          
+       
 
        double range[2];
        double spc[3];
@@ -106,10 +109,14 @@ void RescaleSlopeIntercept::Process()
                mchange->SetExtentTranslation( -ext[0], -ext[2], -ext[4] );
                mchange->SetOutputSpacing (spc);
                mchange->Update();    //important
-               
                bbSetOutputOut( mchange->GetOutput() );
                
-       } // if
+       } else  {
+               bbSetOutputOut( NULL );
+       }               // if bbGetInputIn
+       
+       printf("EED  RescaleSlopeIntercept::Process end\n");            
+       
 }
        
 //=====