fix(tmtv): there should be no CT range for max suv settings (#3232)

This commit is contained in:
Alireza 2023-03-10 13:07:56 -05:00 committed by GitHub
parent 5670a4d8d1
commit 3f20b41c17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 6 deletions

View File

@ -9,10 +9,10 @@ import ROIThresholdConfiguration, {
ROI_STAT,
} from './ROIThresholdConfiguration';
const LOWER_CT_THRESHOLD_DEFAULT = -1000;
const UPPER_CT_THRESHOLD_DEFAULT = 500;
const LOWER_PT_THRESHOLD_DEFAULT = 5;
const UPPER_PT_THRESHOLD_DEFAULT = 50;
const LOWER_CT_THRESHOLD_DEFAULT = -1024;
const UPPER_CT_THRESHOLD_DEFAULT = 1024;
const LOWER_PT_THRESHOLD_DEFAULT = 2.5;
const UPPER_PT_THRESHOLD_DEFAULT = 100;
const WEIGHT_DEFAULT = 0.41; // a default weight for suv max often used in the literature
const DEFAULT_STRATEGY = ROI_STAT;

View File

@ -50,10 +50,9 @@ function getThresholdValues(
);
const ptValue = getRoiStats(referencedVolumes[0], annotations);
const ctValue = getRoiStats(referencedVolumes[1], annotations);
return {
ctLower: weight * ctValue,
ctLower: -Infinity,
ctUpper: +Infinity,
ptLower: weight * ptValue,
ptUpper: +Infinity,