microsoft / Recursive-Cascaded-Networks

[ICCV 2019] Recursive Cascaded Networks for Unsupervised Medical Image Registration
https://arxiv.org/abs/1907.12353
MIT License
362 stars 87 forks source link

how to normalize CT scans by adjusting exposure so that the histograms of the images match each other #20

Closed luckyxiaoqi closed 4 years ago

luckyxiaoqi commented 4 years ago

You wrote "normalize them by adjusting exposure so that the histograms of the images match each other" in the "Unsupervised 3D End-to-End Medical Image Registration with Volume Tweening Network". I want to know how to adjust exposure

zsyzzsoft commented 4 years ago

That is the old version. Now we only clip the intensity of the raw images within a certain range (e.g., [-25, 265] for liver) and then linearly rescale to [0, 255].

luckyxiaoqi commented 4 years ago

Thanks for your reply.