From 72698df5c9044b7b67fe8fa1d4346e7ebb7d9dd1 Mon Sep 17 00:00:00 2001 From: Eduardo DAVILA Date: Mon, 27 Nov 2017 12:54:50 +0100 Subject: [PATCH] 3#153 creaMaracas Visu Bug New Normal - ColorLayer Box (gray level set) --- .../widgets/ThresholdImageView/ColorLayerImageView.cxx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/ThresholdImageView/ColorLayerImageView.cxx b/lib/maracasVisuLib/src/interface/wxWindows/widgets/ThresholdImageView/ColorLayerImageView.cxx index 299b737..7cb4e90 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/ThresholdImageView/ColorLayerImageView.cxx +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/ThresholdImageView/ColorLayerImageView.cxx @@ -168,6 +168,10 @@ double ColorLayerImageView::GetBaseColors(unsigned int index) //---------------------------------------------------------------------------- void ColorLayerImageView::SetGreyLevelBoundaries(std::vector & grey_level_boundary) { + _grey_level_boundary = grey_level_boundary; + +//EED 2017 / 11 / 27 +/* // The size must be greater than or equal to 2 (at least min and max must exist). if ( grey_level_boundary.size() >= 2) { @@ -177,6 +181,8 @@ void ColorLayerImageView::SetGreyLevelBoundaries(std::vector & grey_leve // Otherwise, an exception should be thrown. else if (grey_level_boundary.size() != 0) std::cout << "CM ColorLayerImageView::SetGreyLevelBoundaries : ERROR!!! The grey level boundaries vector has an inconsistent size. It must be of a size greater than or equal to 2 (at least min and max must exist), but its size is: " << grey_level_boundary.size() << ". Therefore, the histogram will be equally split." << std::endl; +*/ + } //---------------------------------------------------------------------------- @@ -302,6 +308,7 @@ void ColorLayerImageView::SetDefaultBaseColorAndGreyLevelBoundary() //---------------------------------------------------------------------------- void ColorLayerImageView::ConfigLookupTable() // virtual { + // CM 2014 // EED 28/01/2015 // Grey level extrema retrieved from the image grey level extrema. @@ -438,8 +445,6 @@ printf("EED ColorLayerImageView::ConfigLookupTable Make something with transpa // thresholdTable->SetBelowRangeColor(0,0,0,0); thresholdTable->Build( ); - - //EO CM EED } -- 2.45.0