Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tensorboard image broken: scipy.misc.toimage deprecated #198

Open
ghost opened this issue Dec 4, 2019 · 1 comment
Open

Tensorboard image broken: scipy.misc.toimage deprecated #198

ghost opened this issue Dec 4, 2019 · 1 comment

Comments

@ghost
Copy link

ghost commented Dec 4, 2019

With the latest version of scipy.misc, scipy.misc.toimage is no longer available. To load and save an image as png we now have to use PIL, breaking tensorboard image summary.

Here is how I fixed the bug:
1./ At the end of main.py, log a uint8 image
logger.image_summary(tag, (images * 255).astype(np.uint8), step+1)
2./ In Logger class, package image as bytes with the PIL library (mode="L" read image as B&W uint8 image)
from PIL import Image
Image.fromarray(img, mode='L').save(s, "PNG")

[EDIT] I am not used to contributing to other people code but if you teach me how to do it I can fix the bug myself :)

@Zero-coder
Copy link

Thank you ,it's helpful

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant