X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FmaracasVisuLib%2Fsrc%2Finterface%2FwxWindows%2Fwidgets%2FThresholdImageView%2FColorLayerImageView.cxx;h=a512a272e1a30804c1a5ebd9c169e706628f1f87;hb=aa1986d6732437e9f55291e5cbe309aea9c7d3b8;hp=28c473df5cb0503b1ba702de14e34228a4e429d9;hpb=ef92674006375c4fe7b842ce834590c5b6d9683f;p=creaMaracasVisu.git diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/ThresholdImageView/ColorLayerImageView.cxx b/lib/maracasVisuLib/src/interface/wxWindows/widgets/ThresholdImageView/ColorLayerImageView.cxx index 28c473d..a512a27 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/ThresholdImageView/ColorLayerImageView.cxx +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/ThresholdImageView/ColorLayerImageView.cxx @@ -265,8 +265,13 @@ void ColorLayerImageView::ConfigLookupTable() // virtual { // CM // Grey level extrema retrieved from the image grey level extrema. - GetImage()->GetScalarRange(_range); +/* +printf("ERROR: EED ColorLayerImageView::ConfigLookupTable ------_range----------------\n"); + _range[0]=0; + _range[1]=4000; +*/ + GetImage()->GetScalarRange(_range); // ------------------ Setting Default Values // Checks the size consistency of vectors _base_color and _grey_level_boundary. @@ -289,8 +294,11 @@ void ColorLayerImageView::ConfigLookupTable() // virtual vtkLookupTable* thresholdTable = GetThresholdTable(); // CM Number of table values consistent with the effective number of values (see loop below). - thresholdTable->SetNumberOfTableValues(std::max( GetGreyLevelBoundaries( GetBaseColorNb() ), ceil(_range[1]) ) - std::min( GetGreyLevelBoundaries(0), floor(_range[0]) ) + 1); - thresholdTable->SetTableRange(_range); + double thresholdTable_range[2]; + thresholdTable_range[1]= std::max( GetGreyLevelBoundaries( GetBaseColorNb() ), ceil(_range[1]) ); + thresholdTable_range[0]= std::min( GetGreyLevelBoundaries(0), floor(_range[0]) ); + thresholdTable->SetNumberOfTableValues(thresholdTable_range[1] - thresholdTable_range[0] + 1); + thresholdTable->SetTableRange(thresholdTable_range); thresholdTable->SetAlphaRange(0, 1); thresholdTable->SetValueRange(0, 1); thresholdTable->SetSaturationRange(0, 0);