Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | interface ScalingParameters { /** m in m*p+b which specifies the linear transformation from stored pixels to memory value */ rescaleSlope: number; /** b in m*p+b which specifies the offset of the transformation */ rescaleIntercept: number; /** modality */ modality: string; /** SUV body weight */ suvbw?: number; /** SUV lean body mass */ suvlbm?: number; /** SUV body surface area */ suvbsa?: number; } interface PTScaling { /** suv body weight to suv lean body mass */ suvbwToSuvlbm?: number; /** suv body weight to suv body surface area */ suvbwToSuvbsa?: number; /** SUV body weight */ suvbw?: number; /** SUV lean body mass */ suvlbm?: number; /** SUV body surface area */ suvbsa?: number; } interface Scaling { PT?: PTScaling; } export type { PTScaling, Scaling, ScalingParameters }; |