]> Creatis software - clitk.git/blobdiff - vv/vvToolBinarize.cxx
- small correction about Render (a bit less unuseful Render)
[clitk.git] / vv / vvToolBinarize.cxx
index b521a0205469ed7d92ac40d23553047afb589da7..ae067180a5dcf85c2a5cacca54d23e821c1683bb 100644 (file)
@@ -1,3 +1,21 @@
+/*=========================================================================
+  Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
+
+  Authors belong to: 
+  - University of LYON              http://www.universite-lyon.fr/
+  - Léon Bérard cancer center       http://oncora1.lyon.fnclcc.fr
+  - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
+
+  This software is distributed WITHOUT ANY WARRANTY; without even
+  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+  PURPOSE.  See the copyright notices for more information.
+
+  It is distributed under dual licence
+
+  - BSD        See included LICENSE.txt file
+  - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
+======================================================================-====*/
+
 #include "vvToolBinarize.h"
 #include "vvSlicerManager.h"
 #include "vvSlicer.h"
@@ -8,6 +26,7 @@
 #include <vtkImageActor.h>
 #include <vtkCamera.h>
 #include <vtkImageClip.h>
+#include <vtkRenderWindow.h>
 
 //------------------------------------------------------------------------------
 // Create the tool and automagically (I like this word) insert it in
@@ -20,7 +39,7 @@ ADD_TOOL(vvToolBinarize);
 void vvToolBinarize::Initialize() {
   SetToolName("Binarize");
   SetToolMenuName("Binarize");
-  SetToolIconFilename(":/new/prefix1/icons/binarize.png");
+  SetToolIconFilename(":/common/icons/binarize.png");
   SetToolTip("Image interactive binarization with thresholds.");
 }
 //------------------------------------------------------------------------------
@@ -182,15 +201,28 @@ void vvToolBinarize::InputIsSelected(vvSlicerManager * m) {
   connect(mCurrentSlicerManager,SIGNAL(UpdateSlice(int,int)),this,SLOT(UpdateSlice(int, int)));
   connect(mCurrentSlicerManager,SIGNAL(UpdateTSlice(int,int)),this,SLOT(UpdateSlice(int, int)));
 
+  //  connect(mCurrentSlicerManager, SIGNAL(LeftButtonReleaseSignal(int)), SLOT(LeftButtonReleaseEvent(int)));
 }
 //------------------------------------------------------------------------------
 
 
+//------------------------------------------------------------------------------
+// void vvToolBinarize::LeftButtonReleaseEvent(int slicer) {
+//   DD("LeftButtonReleaseEvent");
+//   for(int i=0; i<mCurrentSlicerManager->NumberOfSlicers(); i++) {
+//     if (i == slicer);
+//     mCurrentSlicerManager->GetSlicer(i)->GetRenderWindow()->Render();
+//   }
+// }
+//------------------------------------------------------------------------------
+
+
 //------------------------------------------------------------------------------
 void vvToolBinarize::UpdateSlice(int slicer,int slices) {
   if (!mInteractiveDisplayIsEnabled) return;
   if (!mCurrentSlicerManager) close();
   for(int i=0;i<mCurrentSlicerManager->NumberOfSlicers(); i++) {
+    //    DD(i);
     mImageContour[i]->update(mThresholdSlider1->GetValue());
     if (mRadioButtonLowerThan->isChecked()) 
       mImageContourLower[i]->update(mThresholdSlider2->GetValue());
@@ -200,6 +232,7 @@ void vvToolBinarize::UpdateSlice(int slicer,int slices) {
 }
 //------------------------------------------------------------------------------
 
+
 //------------------------------------------------------------------------------
 void vvToolBinarize::GetArgsInfoFromGUI() {
 
@@ -293,7 +326,7 @@ void vvToolBinarize::valueChangedT2(double v) {
     for(int i=0;i<mCurrentSlicerManager->NumberOfSlicers(); i++) {
       mImageContourLower[i]->update(v);
     }
-    mCurrentSlicerManager->Render();
+    // mCurrentSlicerManager->Render();
   }
 }
 //------------------------------------------------------------------------------
@@ -309,6 +342,6 @@ void vvToolBinarize::valueChangedT1(double v) {
   for(int i=0;i<mCurrentSlicerManager->NumberOfSlicers(); i++) {
     mImageContour[i]->update(v);
   }
-  mCurrentSlicerManager->Render();
+  // mCurrentSlicerManager->Render();
 }
 //------------------------------------------------------------------------------