comparison OrthancStone/Sources/Scene2D/LookupTableTextureSceneLayer.cpp @ 1910:f81cdf283859

display RT-STRUCT before the referenced slices get loaded
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 01 Feb 2022 10:40:35 +0100
parents 7053b8a0aaec
children ed4831e08961
comparison
equal deleted inserted replaced
1909:782ba9eb6f22 1910:f81cdf283859
146 { 146 {
147 Orthanc::ImageProcessing::GetMinMaxFloatValue(minValue_, maxValue_, GetTexture()); 147 Orthanc::ImageProcessing::GetMinMaxFloatValue(minValue_, maxValue_, GetTexture());
148 assert(minValue_ <= maxValue_); 148 assert(minValue_ <= maxValue_);
149 // TODO: debug to be removed 149 // TODO: debug to be removed
150 if (fabs(maxValue_ - minValue_) < 0.0001) { 150 if (fabs(maxValue_ - minValue_) < 0.0001) {
151 LOG(INFO) << "LookupTableTextureSceneLayer::FitRange(): minValue_ = " << minValue_ << " maxValue_ = " << maxValue_; 151 LOG(TRACE) << "LookupTableTextureSceneLayer::FitRange(): minValue_ = " << minValue_ << " maxValue_ = " << maxValue_;
152 } 152 }
153 IncrementRevision(); 153 IncrementRevision();
154 } 154 }
155 155
156 156