]> Creatis software - creaVtk.git/commitdiff
3511 bbcreaVtkPointPicker bug init point
authorEduardo DAVILA <davila@creatis.insa-lyon.fr>
Thu, 15 Jun 2023 09:31:57 +0000 (11:31 +0200)
committerEduardo DAVILA <davila@creatis.insa-lyon.fr>
Thu, 15 Jun 2023 09:31:57 +0000 (11:31 +0200)
bbtk_creaVtk_PKG/.DS_Store
bbtk_creaVtk_PKG/src/bbcreaVtkPointPicker.cxx
bbtk_creaVtk_PKG/src/bbcreaVtkScalarsToColors.cxx
bbtk_creaVtk_PKG/src/bbcreaVtkScalarsToColors.h

index 041e49fd4f90ee4e9cc1d0577b3467ea8abf6373..16c062dcddc78d583b5c1028b262979d0412882c 100644 (file)
Binary files a/bbtk_creaVtk_PKG/.DS_Store and b/bbtk_creaVtk_PKG/.DS_Store differ
index ba3b39c4007a4b6bde8c94770ccafd1dc496fc8a..9ff93593730885bac36d6130e3f18bc02b7b60f2 100644 (file)
@@ -225,6 +225,9 @@ void PointPicker::Process()
                // ....See vtkCommand EventIds
        } // if bbGetInputRenderer()
 
+    std::vector<double> point;
+    bbSetOutputPoint( point );
+
                
 //  std::vector<double> lstPoint;
 //  lstPoint.push_back(0);
@@ -264,11 +267,11 @@ void PointPicker::bbUserSetDefaultValues()
     lstNormal.push_back(1);
     bbSetOutputNormal( lstNormal );
     
-    std::vector<double> point;
-    point.push_back(20);
-    point.push_back(20);
-    point.push_back(20);
-    bbSetOutputPoint( point );
+//    std::vector<double> point;
+//    point.push_back(-1);
+//    point.push_back(-1);
+//    point.push_back(-1);
+//    bbSetOutputPoint( point );
 }
 
 //===== 
index 17780e12aba3d08fa9263c52e0a951141be5a448..4aceca30aee008ced73ee882ba39ed697c223b28 100644 (file)
@@ -238,11 +238,17 @@ void ScalarsToColors::Process()
                        {
                                colorLookupTable->SetRange( bbGetInputRange()[0],bbGetInputRange()[1]);
 //                             colorLookupTable->SetTableRange( bbGetInputRange()[0],bbGetInputRange()[1]);
-                               colorLookupTable->UseBelowRangeColorOn();
-                               colorLookupTable->UseAboveRangeColorOn();
-                       } else {
+            } else if (bbGetInputWindowColorLevel().size()==2) {
+                double w    = bbGetInputWindowColorLevel()[0] / 2;
+                double c    = bbGetInputWindowColorLevel()[1];
+                colorLookupTable->SetRange( c-w , c+w );
+            }else {
                                colorLookupTable->SetRange(0,255);
                        }
+            
+            colorLookupTable->UseBelowRangeColorOn();
+            colorLookupTable->UseAboveRangeColorOn();
+
                        int NumberOfColors=1000;
                        int NumberOfColorsHalf=NumberOfColors/2;
                        colorLookupTable->SetNumberOfTableValues( NumberOfColors );
@@ -274,7 +280,7 @@ void ScalarsToColors::Process()
                                        colorLookupTable->SetBelowRangeColor(1,1,1,0);  // White transparent 
                                        colorLookupTable->SetAboveRangeColor(1,1,1,0);  // White transparent 
                                } else {
-                                       colorLookupTable->SetBelowRangeColor(1,1,1,1);  // White transparent 
+                    colorLookupTable->SetBelowRangeColor(0,0,0,1);  // White transparent
                                        colorLookupTable->SetAboveRangeColor(1,1,1,1);  // White transparent 
                                }
                                
@@ -299,25 +305,29 @@ void ScalarsToColors::Process()
                if ((bbGetInputType()==1) || (bbGetInputType()==101) )
                {
                        vtkLookupTable *colorLookupTable = vtkLookupTable::New();
-                       if (bbGetInputRange().size()==2)
-                       {
-                               colorLookupTable->SetRange( bbGetInputRange()[0],bbGetInputRange()[1]);
-//                             colorLookupTable->SetTableRange( bbGetInputRange()[0],bbGetInputRange()[1]);   ????????
-//                             colorLookupTable->SetBelowRangeColor(1,1,1,1);  // White transparent 
-//                             colorLookupTable->SetAboveRangeColor(1,1,1,1);  // White transparent 
-                               colorLookupTable->UseBelowRangeColorOn();
-                               colorLookupTable->UseAboveRangeColorOn();
-                               if (bbGetInputBelowAboveRangeTransparence()==true)
-                               {
-                                       colorLookupTable->SetBelowRangeColor(1,1,1,0);  // White transparent 
-                                       colorLookupTable->SetAboveRangeColor(1,1,1,0);  // White transparent 
-                               } else {
-                                       colorLookupTable->SetBelowRangeColor(1,1,1,1);  // White transparent 
-                                       colorLookupTable->SetAboveRangeColor(1,1,1,1);  // White transparent 
-                               }
-                       } else {
-                               colorLookupTable->SetRange(0,255);
-                       }
+            if (bbGetInputRange().size()==2)
+            {
+                colorLookupTable->SetRange( bbGetInputRange()[0],bbGetInputRange()[1]);
+//                colorLookupTable->SetTableRange( bbGetInputRange()[0],bbGetInputRange()[1]);
+            } else if (bbGetInputWindowColorLevel().size()==2) {
+                double w    = bbGetInputWindowColorLevel()[0] / 2;
+                double c    = bbGetInputWindowColorLevel()[1];
+                colorLookupTable->SetRange( c-w , c+w );
+            }else {
+                colorLookupTable->SetRange(0,255);
+            }
+            
+            colorLookupTable->UseBelowRangeColorOn();
+            colorLookupTable->UseAboveRangeColorOn();
+            if (bbGetInputBelowAboveRangeTransparence()==true)
+            {
+                colorLookupTable->SetBelowRangeColor(1,1,1,0);  // White transparent
+                colorLookupTable->SetAboveRangeColor(1,1,1,0);  // White transparent
+            } else {
+                colorLookupTable->SetBelowRangeColor(0,0,0,1);  // White transparent
+                colorLookupTable->SetAboveRangeColor(1,1,1,1);  // White transparent
+            }
+
                        colorLookupTable->SetValueRange(0.0, 1.0); // from black to white
                        colorLookupTable->SetSaturationRange(0.0, 0.0); // no color saturation
                        colorLookupTable->SetRampToLinear();
@@ -351,7 +361,6 @@ void ScalarsToColors::Process()
                        _scalarstocolors = _LutEED;
                } // If Type 3
 
-
 //     } // firsttime
        double rgb[3];
        std::vector<double>colorRGB;
@@ -361,53 +370,48 @@ void ScalarsToColors::Process()
        colorRGB.push_back( rgb[2] );
        bbSetOutputColor( colorRGB );
        bbSetOutputLookupTable( _scalarstocolors );
-
-
 }
+
 //===== 
 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
 //===== 
 void ScalarsToColors::bbUserSetDefaultValues()
 {
-
 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
 //    Here we initialize the input 'In' to 0
    bbSetInputType(0);
-   std::vector<double>range;
-   range.push_back( 0 );
-   range.push_back( 1 );
-       bbSetInputRange(range);
+//   std::vector<double>range;
+//   range.push_back( 0 );
+//   range.push_back( 1 );
+//     bbSetInputRange(range);
    bbSetInputScalarValue(0);
    bbSetInputBelowAboveRangeTransparence(true);
 //   firsttime         = true;
    _scalarstocolors    = NULL;
 }
+
 //===== 
 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
 //===== 
 void ScalarsToColors::bbUserInitializeProcessing()
 {
-
 //  THE INITIALIZATION METHOD BODY :
 //    Here does nothing 
 //    but this is where you should allocate the internal/output pointers 
-//    if any 
-
-  
+//    if any
 }
+
 //===== 
 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
 //===== 
 void ScalarsToColors::bbUserFinalizeProcessing()
 {
-
 //  THE FINALIZATION METHOD BODY :
 //    Here does nothing 
 //    but this is where you should desallocate the internal/output pointers 
 //    if any
-  
 }
-}
-// EO namespace bbcreaVtk
+
+}// EO namespace bbcreaVtk
 
 
index fc7945d81e13f629f347ea768eda21056a9f20ae..1262a48037111ee541fbf21533f321b3f6d34996 100644 (file)
@@ -27,6 +27,7 @@ class bbcreaVtk_EXPORT ScalarsToColors
   BBTK_DECLARE_INPUT(ScalarValue,double);
   BBTK_DECLARE_INPUT(BelowAboveRangeTransparence,bool);
   BBTK_DECLARE_INPUT(Range,std::vector<double> );
+  BBTK_DECLARE_INPUT(WindowColorLevel,std::vector<double> );
   BBTK_DECLARE_OUTPUT(Color, std::vector<double> );
   BBTK_DECLARE_OUTPUT(LookupTable,vtkScalarsToColors*);
   BBTK_PROCESS(Process);
@@ -50,7 +51,8 @@ BBTK_BEGIN_DESCRIBE_BLACK_BOX(ScalarsToColors,bbtk::AtomicBlackBox);
   BBTK_INPUT(ScalarsToColors,Type,"(0 default)  0=JET(transparent for first element and middle range);  100=As 0 without transparace; 1=RangeTable (transparent for first element); 101=As 1 without transparace;  2=DirectionColorRGB;   3=ComponentColorRGB[0-255]",int,"");
   BBTK_INPUT(ScalarsToColors,ScalarValue,"Scalar value -> Color OUT",double,"");
   BBTK_INPUT(ScalarsToColors,BelowAboveRangeTransparence,"(default true) Transparence for Before and After range true/false",bool,"");
-  BBTK_INPUT(ScalarsToColors,Range,"Min Max range",std::vector<double>,"");
+  BBTK_INPUT(ScalarsToColors,Range,"(default empty)  [min,max]    use Range or WindowColorLevel",std::vector<double>,"");
+  BBTK_INPUT(ScalarsToColors,WindowColorLevel,"default empty [window, color]    use Range or WindowColorLevel",std::vector<double>,"");
   BBTK_OUTPUT(ScalarsToColors,Color,"Color",std::vector<double>,"");
   BBTK_OUTPUT(ScalarsToColors,LookupTable,"LookupTable",vtkScalarsToColors*,"");
 BBTK_END_DESCRIBE_BLACK_BOX(ScalarsToColors);