fossasia / visdom

A flexible tool for creating, organizing, and sharing visualizations of live, rich data. Supports Torch and Numpy.
Apache License 2.0
10.03k stars 1.13k forks source link

Feature request -- Compare images from different environments #487

Open lavoiems opened 6 years ago

lavoiems commented 6 years ago

Is your feature request related to a problem? Please describe. I like the feature that compare the plots from different environments. I'd like to see a similar feature for comparing images.

Describe the solution you'd like Creating a new window that would contains the images from the selected environments. A second window containing the absolute position of each image in the new window would also be needed.

Describe alternatives you've considered Downloading the images and comparing them side by side

JackUrb commented 6 years ago

Seems like something that would be valid to implement if you're (or someone else is) interested. Plot comparisons are created in https://github.com/facebookresearch/visdom/blob/635897f47470961791f907c80742ae4b901ddf6f/py/visdom/server.py#L765 I'm unsure a separate pane with the absolute positions would be needed though, it might be possible to just create some kind of MultiPane that renders two ImagePanes inside. Basic idea would be that if the plot type is an image, the compare_env function would package up the data to display that multipane and then it would be rendered.