KitwareMedical / tensorboard-plugin-3d

Home Page:https://tensorboardplugin3d.readthedocs.io/en/latest/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TensorBoard 3D is loading please wait...

ZhangXiaotong015 opened this issue · comments

Hi,
It's an impressive 3D visualization tool! I install the tensorboard-plugin-3d package and try to load my event but it failed. 'TensorBoard 3D is loading, please wait...' is always showing on the interface. Do you know how to handle this problem?

Thanks.

It seems that 'plot_2d_or_3d_image' does not import from the right module. I use 'from monai.visualize.img2tensorboard import plot_2d_or_3d_image' to replace 'from monai.visualize import plot_2d_or_3d_image', then the 3D volume can be showed on the tensorboard.

But I noticed in the example showed in here the module 'plot_2d_or_3d_image' is imported from 'monai.visualize' rather than from 'monai.visualize.img2tensorboard'.

@asdkd Interesting! It definitely seems that from monai.visualize import plot_2d_or_3d_image should be correct but I will dig into this some more this week and see if we need some updates! Out of curiosity what version of Monai are you using?

@asdkd Interesting! It definitely seems that from monai.visualize import plot_2d_or_3d_image should be correct but I will dig into this some more this week and see if we need some updates! Out of curiosity what version of Monai are you using?
The version of Monai I used is 1.0.1.

@ZhangXiaotong015 I used 'from monai.visualize.img2tensorboard import plot_2d_or_3d_image', and then found it's not useful! Could you give me some suggestions?