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=76851357f141e3fd083e013e14563e4af36666b2;hpb=2c09a61fc7d7695eebf8ca886fb8cd727afccc09;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 7685135..a512a27 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/ThresholdImageView/ColorLayerImageView.cxx +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/ThresholdImageView/ColorLayerImageView.cxx @@ -266,13 +266,12 @@ void ColorLayerImageView::ConfigLookupTable() // virtual // CM // Grey level extrema retrieved from the image grey level extrema. - +/* printf("ERROR: EED ColorLayerImageView::ConfigLookupTable ------_range----------------\n"); _range[0]=0; _range[1]=4000; -// GetImage()->GetScalarRange(_range); - - +*/ + GetImage()->GetScalarRange(_range); // ------------------ Setting Default Values // Checks the size consistency of vectors _base_color and _grey_level_boundary. @@ -295,8 +294,11 @@ printf("ERROR: EED ColorLayerImageView::ConfigLookupTable ------_range-------- 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);