UNPKG

@abasb75/dicom-pixel-decoder

Version:

a powerfull javascript dicom pixel data decoder

11 lines (10 loc) 384 B
function getMinMaxAfterScale(min, max, rescaleSlope, rescaleIntercept) { if (typeof rescaleSlope !== "number" || typeof rescaleIntercept !== "number") { return { min: min, max: max }; } return { minAfterScale: min * rescaleSlope + rescaleIntercept, maxAfterScale: max * rescaleSlope + rescaleIntercept, }; } export default getMinMaxAfterScale;