cwmok / DIRAC

This is the official Pytorch implementation of "Unsupervised Deformable Image Registration with Absent Correspondences in Pre-operative and Post-Recurrence Brain Tumor MRI Scans" (MICCAI 2022), written by Tony C. W. Mok and Albert C. S. Chung.
MIT License
36 stars 1 forks source link

issue about δbf #16

Closed 18370029656 closed 8 months ago

18370029656 commented 8 months ago

Hello, I'm sorry to bother you. I would like to ask you how to view the δbf effect plot in your paper? Can you share the code to save or view the δbf?

image
cwmok commented 8 months ago

Hi @18370029656,

I use seaborn to plot this figure.

` import seaborn as sns

ax=sns.heatmap(diff_map[:, :, t_x].T, xticklabels=False, yticklabels=False)

`