]> Creatis software - creaMaracasVisu.git/commitdiff
no message
authorEduardo Davila <Eduardo.Davila@creatis.insa-lyon.fr>
Thu, 12 May 2011 09:18:52 +0000 (09:18 +0000)
committerEduardo Davila <Eduardo.Davila@creatis.insa-lyon.fr>
Thu, 12 May 2011 09:18:52 +0000 (09:18 +0000)
bbtk/src/bbmaracasvisuAxeVolume.cxx
bbtk/src/bbmaracasvisuViewerNV.cxx

index 17f2381755c03eb295309bc1374dbebf793a6c03..1711efe09d9ef16a19ee44e2c28cf78e64cdcc10 100644 (file)
@@ -28,8 +28,6 @@ void AxeVolume::Process()
     invSpc[1] = 1/spc[1];
     invSpc[2] = 1/spc[2];
 
-printf("EED AxeVolume::Process invSpc %f %f %f\n",invSpc[0],invSpc[1],invSpc[2] );
-
        mimage = vtkImageData::New();
        mimage->SetDimensions(sizeX,sizeY,sizeZ);
        mimage->SetOrigin(0,0,0);
@@ -73,7 +71,6 @@ printf("EED AxeVolume::Process invSpc %f %f %f\n",invSpc[0],invSpc[1],invSpc[2]
                px = bbGetInputlstPointX()[iAxe] * invSpc[0];
                py = bbGetInputlstPointY()[iAxe] * invSpc[1];
                pz = bbGetInputlstPointZ()[iAxe] * invSpc[2];
-                printf("AxeVolume::Process %d ->  %f, %f, %f,%f\n",iAxe, px,py,pz,r);
                px1 = px - r;
                py1 = py - r;
                pz1 = pz - r;
index 719c0df788e96dd209e317ddb65a57630dc69d4f..137b01261ffb9adc3f830664b239df356322e068 100644 (file)
@@ -60,6 +60,9 @@ BBTK_BLACK_BOX_IMPLEMENTATION(ViewerNV,bbtk::WxBlackBox);
 //-------------------------------------------------------------
 void ViewerNV::Process()
 {
+       
+       printf("EED ViewerNV::Process start \n");
+       
        vtkImageData* img = bbGetInputIn();
 /*
        double spc[3];
@@ -146,17 +149,21 @@ void ViewerNV::Process()
                        }
                }
        }//  mwxwidget != NULL
+       
+       printf("EED ViewerNV::Process end\n");
 }
 
 //-------------------------------------------------------------
 void ViewerNV::CreateWidget(wxWindow* parent)
 {
+       printf("EED ViewerNV::CreateWidget start\n");
 
     bbtkDebugMessageInc("Core",9,"ViewerNV::CreateWidget()"<<std::endl);
        mwxwidget = new bbwxMaracas_N_ViewersWidget( this, parent );
        bbtkDebugDecTab("Core",9);
     bbSetOutputWidget( mwxwidget );
 
+       printf("EED ViewerNV::CreateWidget end\n");
 
        //this->bbSignalOutputModification();
        //Process();